Skip to content

Commit

Permalink
fix: rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
0xClandestine committed Sep 20, 2024
1 parent d8baa3c commit bf6db0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/deploy/mainnet/v0.4.2-mainnet-pepe.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ contract MainnetPEPEDeploy is ExistingDeploymentParser {
vm.stopPrank();
}

function _testDeploy() internal {
function _testDeploy() internal view {
require(eigenPodImplementation.activeValidatorCount() == 0, "unable to fetch activeValidatorCount");
}
}
2 changes: 1 addition & 1 deletion src/test/unit/StrategyBaseUnit.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ contract StrategyBaseUnitTests is Test {
}

// uint240 input to prevent overflow
function testIntegrityOfSharesToUnderlyingWithZeroTotalShares(uint240 amountSharesToQuery) public {
function testIntegrityOfSharesToUnderlyingWithZeroTotalShares(uint240 amountSharesToQuery) public view {
uint256 underlyingFromShares = strategy.sharesToUnderlying(amountSharesToQuery);
require(underlyingFromShares == amountSharesToQuery, "underlyingFromShares != amountSharesToQuery");

Expand Down

0 comments on commit bf6db0f

Please sign in to comment.