Skip to content

Commit

Permalink
update store test source
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregor G committed Apr 19, 2024
1 parent 83a514a commit a0ed6b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fvm/evm/testutils/contracts/test.sol
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ contract Storage {

function verifyArchCallToRandomSource(uint64 height) public view returns (uint64) {
(bool ok, bytes memory data) = cadenceArch.staticcall(abi.encodeWithSignature("getRandomSource(uint64)", height));
//require(ok, "unsuccessful call to arch ");
require(ok, "unsuccessful call to arch ");
uint64 output = abi.decode(data, (uint64));
return output;
}
Expand Down

0 comments on commit a0ed6b5

Please sign in to comment.