From a0ed6b5b0b5196f7191adb93feaa1fc6face5f85 Mon Sep 17 00:00:00 2001 From: Gregor G Date: Fri, 19 Apr 2024 17:44:44 +0200 Subject: [PATCH] update store test source --- fvm/evm/testutils/contracts/test.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fvm/evm/testutils/contracts/test.sol b/fvm/evm/testutils/contracts/test.sol index 8d2c3a4bef8..5e202cfc5c7 100644 --- a/fvm/evm/testutils/contracts/test.sol +++ b/fvm/evm/testutils/contracts/test.sol @@ -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; }