Skip to content

Commit

Permalink
fix: warning about state mutability
Browse files Browse the repository at this point in the history
  • Loading branch information
danielattilasimon committed Apr 26, 2024
1 parent 302fa41 commit 377e2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/test/SPInvariants.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract SPInvariantsTest is Test {
assert(actors.length == actorLabels.length);
}

function invariant_allFundsClaimable() external {
function invariant_allFundsClaimable() external view {
uint256 stabilityPoolEth = stabilityPool.getETHBalance();
uint256 stabilityPoolBold = stabilityPool.getTotalBoldDeposits();
uint256 claimableEth = 0;
Expand Down

0 comments on commit 377e2d4

Please sign in to comment.