Skip to content

Commit

Permalink
refactor: remove now useless workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
QGarchery committed Dec 5, 2024
1 parent df17d59 commit ac6cfd2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
7 changes: 0 additions & 7 deletions certora/helpers/MockDllFifo.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@ contract MockDllFifo {

uint256 public maxIterations;

uint256 internal dummy_state_variable;

function dummy_state_modifying_function() public {
// to fix a CVL error when only one function is accessible
dummy_state_variable = 1;
}

function getValueOf(address _id) public view returns (uint256) {
return dll.getValueOf(_id);
}
Expand Down
7 changes: 0 additions & 7 deletions certora/helpers/MockDllSimple.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ contract MockDllSimple {

DoubleLinkedList.List public dll;

uint256 internal dummy_state_variable;

function dummy_state_modifying_function() public {
// to fix a CVL error when only one function is accessible
dummy_state_variable = 1;
}

function getValueOf(address _id) public view returns (uint256) {
return dll.getValueOf(_id);
}
Expand Down

0 comments on commit ac6cfd2

Please sign in to comment.