You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the mainnet branch, the new version of the function _verifyContractsInitialized receives a parameters that wasn't receiving in previous versions.
function _verifyContractsInitialized(bool /** isInitialDeployment **/)
The file script/deploy/holesky/upgrade_preprod_rewardsCoordinator.s.sol has a call to that function without the parameter in the line 40, so the compilation of this file is giving an error: _verifyContractsInitialized();
To Reproduce
Steps to reproduce the behavior:
In the mainnet branch, in the root of the repo, run the command: forge build
You will get:
[⠒] Compiling...
[⠔] Compiling 1 files with Solc 0.8.12
[⠒] Solc 0.8.12 finished in 313.27ms
Error:
Compiler run failed:
Error (6160): Wrong argument count for function call: 0 arguments given but expected 1.
--> script/deploy/holesky/upgrade_preprod_rewardsCoordinator.s.sol:40:9:
|
40 | _verifyContractsInitialized();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
Enter important environment info needed to reproduce the bug.
[e.g. chrome, safari]
[e.g. version]
Don't Forget To
Assign this to a project (our default is eigenlayer)
Add priority + size estimate
Set status to New
The text was updated successfully, but these errors were encountered:
In the
mainnet
branch, the new version of the function_verifyContractsInitialized
receives a parameters that wasn't receiving in previous versions.The file
script/deploy/holesky/upgrade_preprod_rewardsCoordinator.s.sol
has a call to that function without the parameter in the line 40, so the compilation of this file is giving an error:_verifyContractsInitialized();
To Reproduce
Steps to reproduce the behavior:
forge build
You will get:
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
Enter important environment info needed to reproduce the bug.
Don't Forget To
The text was updated successfully, but these errors were encountered: