Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yiweichi committed Nov 28, 2024
1 parent 6493488 commit 8ddf5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deterministic/DeployScroll.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ contract DeployScroll is DeterministicDeployment {
if (l1MessengerBalance < amountToLock) {
uint256 amountToSend = amountToLock - l1MessengerBalance;
(bool sent, bytes memory data) = payable(L1_SCROLL_MESSENGER_PROXY_ADDR).call{value: amountToSend}("");
require(sent, "[ERROR] failed to loken tokens on layer 1");
require(sent, "[ERROR] failed to lock tokens on layer 1");
}
} else {
uint256 l1GasTokenGatewayBalance = IERC20Metadata(L1_GAS_TOKEN_ADDR).balanceOf(
Expand Down

0 comments on commit 8ddf5c5

Please sign in to comment.