Skip to content

Commit

Permalink
add todo
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Nov 14, 2023
1 parent 17f559e commit 2f61eb9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ runs = 1000
[profile.ci]
fuzz_runs = 100000
solc = "./bin/solc-static-linux"
cancun = true

# See more config options https://github.com/foundry-rs/foundry/tree/master/config
1 change: 1 addition & 0 deletions src/libraries/Lockers.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pragma solidity ^0.8.20;

/// @notice This is a temporary library that allows us to use transient storage (tstore/tload)
/// for the lockers array and nonzero delta count.
/// TODO: This library can be deleted when we have the transient keyword support in solidity.
library Lockers {
// The starting slot for an array of lockers, stored transiently.
uint256 constant LOCKERS_SLOT = uint256(keccak256("Lockers")) - 1;
Expand Down

0 comments on commit 2f61eb9

Please sign in to comment.