Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CVLByExample/TransientStorage/Hooks/runTransientStorage.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
],
"verify": "MockMutexer:./Mutexer.spec",
"solc": "solc8.24",
"solc_evm_version": "cancun"
"solc_evm_version": "cancun",
"prover_args": ["-enableStorageSplitting false"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ pragma solidity 0.8.24;
import {CallBacker} from './CallBacker.sol';

contract Vault {
bytes32 slot = keccak256("transient");
bytes32 lock = keccak256("lock");
bytes32 constant slot = keccak256("transient");
bytes32 constant lock = keccak256("lock");
int256 storageValue;

function tload(bytes32 key) internal returns (int) {
Expand Down