From 8da8d68d42553c4b5917fb0b635af03423c3f982 Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Tue, 13 May 2025 19:22:29 +0300 Subject: [PATCH 1/3] Update provider.sol --- test/compilationTests/corion/provider.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/compilationTests/corion/provider.sol b/test/compilationTests/corion/provider.sol index 524390b2ed3a..435ddcc30247 100644 --- a/test/compilationTests/corion/provider.sol +++ b/test/compilationTests/corion/provider.sol @@ -185,7 +185,7 @@ contract provider is module, safeMath, announcementTypes { } function setRightForInterest(uint256 oldValue, uint256 newValue, bool priv) internal { /* - It checks if the provider has enough connected captital to be able to get from the token emission. + It checks if the provider has enough connected capital to be able to get from the token emission. In case the provider is not able to get the share from the token emission then the connected capital will not count to the value of the globalFunds, to the current schelling round. @oldValue old From f9120c4e9c1c99e9831e497289f22014487c8815 Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Tue, 13 May 2025 19:23:42 +0300 Subject: [PATCH 2/3] Update schelling.sol --- test/compilationTests/corion/schelling.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/compilationTests/corion/schelling.sol b/test/compilationTests/corion/schelling.sol index 96b530d26e83..9c57fe16f8e7 100644 --- a/test/compilationTests/corion/schelling.sol +++ b/test/compilationTests/corion/schelling.sol @@ -256,7 +256,7 @@ contract schelling is module, announcementTypes, schellingVars { @_moduleHandler Address of ModuleHandler. @_db Address of the database. @_forReplace This address will be replaced with the old one or not. - @_icoExpansionAddress This address can turn schelling runds during ICO. + @_icoExpansionAddress This address can turn schelling funds during ICO. */ db = schellingDB(_db); super.registerModuleHandler(_moduleHandler); From d435c461714cbecd2bfa367b3dfde48cae960fd4 Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Tue, 13 May 2025 19:30:57 +0300 Subject: [PATCH 3/3] Update StackLayoutGenerator.cpp --- libyul/backends/evm/StackLayoutGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libyul/backends/evm/StackLayoutGenerator.cpp b/libyul/backends/evm/StackLayoutGenerator.cpp index 69045998c859..95af0cfc9ca6 100644 --- a/libyul/backends/evm/StackLayoutGenerator.cpp +++ b/libyul/backends/evm/StackLayoutGenerator.cpp @@ -308,7 +308,7 @@ Stack StackLayoutGenerator::propagateStackThroughOperation(Stack _exitStack, CFG // generated on the fly), s.t. shuffling the `stack + _operation.output` to _exitLayout is cheap. Stack stack = createIdealLayout(_operation.output, _exitStack, generateSlotOnTheFly, reachableStackDepth()); - // Make sure the resulting previous slots do not overlap with any assignmed variables. + // Make sure the resulting previous slots do not overlap with any assignment variables. if (auto const* assignment = std::get_if(&_operation.operation)) for (auto& stackSlot: stack) if (auto const* varSlot = std::get_if(&stackSlot))