Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoximenes committed Dec 18, 2024
1 parent 1bc9141 commit f4014ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mocks/ArbOS11To32UpgradeTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import "../precompiles/ArbSys.sol";
contract ArbOS11To32UpgradeTest {
function mcopy() external returns (bytes32 x) {
assembly {
mstore(0x20, 0x9) // Store 0x9 at word 1 in memory
mcopy(0, 0x20, 0x20) // Copies 0x9 to word 0 in memory
x := mload(0) // Returns 32 bytes "0x9"
mstore(0x20, 0x9) // Store 0x9 at word 1 in memory
mcopy(0, 0x20, 0x20) // Copies 0x9 to word 0 in memory
x := mload(0) // Returns 32 bytes "0x9"
}
require(ArbSys(address(0x64)).arbOSVersion() == 55 + 32, "EXPECTED_ARBOS_32");
}
Expand Down

0 comments on commit f4014ae

Please sign in to comment.