-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #207 from lidofinance/feat/review-fixes
- Loading branch information
Showing
37 changed files
with
68 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// SPDX-FileCopyrightText: 2024 Lido <[email protected]> | ||
// SPDX-License-Identifier: GPL-3.0 | ||
// SPDX-License-Identifier: UNLICENSED | ||
// for testing purposes only | ||
|
||
/* See contracts/COMPILERS.md */ | ||
pragma solidity 0.8.9; | ||
|
@@ -71,7 +71,7 @@ contract SepoliaDepositAdapter is IDepositContract, Ownable, Versioned { | |
function recoverEth() external onlyOwner { | ||
uint256 balance = address(this).balance; | ||
// solhint-disable-next-line avoid-low-level-calls | ||
(bool success, ) = owner().call{value: balance}(""); | ||
(bool success,) = owner().call{value: balance}(""); | ||
if (!success) { | ||
revert EthRecoverFailed(); | ||
} | ||
|
@@ -95,7 +95,7 @@ contract SepoliaDepositAdapter is IDepositContract, Ownable, Versioned { | |
) external payable override { | ||
originalContract.deposit{value: msg.value}(pubkey, withdrawal_credentials, signature, deposit_data_root); | ||
// solhint-disable-next-line avoid-low-level-calls | ||
(bool success, ) = owner().call{value: msg.value}(""); | ||
(bool success,) = owner().call{value: msg.value}(""); | ||
if (!success) { | ||
revert DepositFailed(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"steps": [ | ||
"scratch/steps/00-populate-deploy-artifact-from-env", | ||
"scratch/steps/01-deploy-deposit-contract", | ||
"scratch/steps/02-deploy-aragon-env", | ||
"scratch/steps/03-deploy-template-and-app-bases", | ||
"scratch/steps/04-register-ens-domain", | ||
"scratch/steps/05-deploy-apm", | ||
"scratch/steps/06-create-app-repos", | ||
"scratch/steps/07-deploy-dao", | ||
"scratch/steps/08-issue-tokens", | ||
"scratch/steps/09-deploy-non-aragon-contracts", | ||
"scratch/steps/10-gate-seal", | ||
"scratch/steps/11-finalize-dao", | ||
"scratch/steps/12-initialize-non-aragon-contracts", | ||
"scratch/steps/13-grant-roles", | ||
"scratch/steps/14-plug-curated-staking-module", | ||
"scratch/steps/15-transfer-roles" | ||
"scratch/steps/0000-populate-deploy-artifact-from-env", | ||
"scratch/steps/0010-deploy-deposit-contract", | ||
"scratch/steps/0020-deploy-aragon-env", | ||
"scratch/steps/0030-deploy-template-and-app-bases", | ||
"scratch/steps/0040-register-ens-domain", | ||
"scratch/steps/0050-deploy-apm", | ||
"scratch/steps/0060-create-app-repos", | ||
"scratch/steps/0070-deploy-dao", | ||
"scratch/steps/0080-issue-tokens", | ||
"scratch/steps/0090-deploy-non-aragon-contracts", | ||
"scratch/steps/0100-gate-seal", | ||
"scratch/steps/0110-finalize-dao", | ||
"scratch/steps/0120-initialize-non-aragon-contracts", | ||
"scratch/steps/0130-grant-roles", | ||
"scratch/steps/0140-plug-curated-staking-module", | ||
"scratch/steps/0150-transfer-roles" | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"steps": ["upgrade/steps/00-deploy-locator"] | ||
"steps": ["upgrade/steps/0000-deploy-locator"] | ||
} |
File renamed without changes.