Skip to content

Commit

Permalink
Update itests/contracts/TransientStorageTest.sol
Browse files Browse the repository at this point in the history
Co-authored-by: Rod Vagg <rod@vagg.org>
  • Loading branch information
snissn and rvagg authored Jan 30, 2025
1 parent 8a09a70 commit 17cc760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itests/contracts/TransientStorageTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ contract TransientStorageTest {
require(retrievedValue == value, "Nested contract interfered with this contract's storage");

// Verify nested contract's data independently
uint256 nestedValue = nested.readTransientData(4);
uint256 nestedValue = nested.readTransientData(slot);
require(nestedValue == 123, "Nested contract data incorrect");
return true;
}
Expand Down

0 comments on commit 17cc760

Please sign in to comment.