Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
improve spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
rachel-bousfield committed Jan 30, 2024
1 parent 39ab455 commit 900e094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mocks/Program.sol
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ contract ProgramTest {
result = assert256(result, "rust codehash", uint256(program.codehash));
result = assert256(result, "arb codehash ", uint256(arbPrecompile.codehash));
result = assert256(result, "eth codehash ", uint256(ethPrecompile.codehash));

bytes memory code = new bytes(program.code.length);
for (uint256 i = 0; i < program.code.length; i++) {
code[i] = result[i];
Expand All @@ -82,7 +83,6 @@ contract ProgramTest {
}

result = rest;

return result;
}

Expand Down

0 comments on commit 900e094

Please sign in to comment.