Skip to content

Commit

Permalink
fix: compile
Browse files Browse the repository at this point in the history
  • Loading branch information
0xClandestine committed Oct 30, 2024
1 parent 733b472 commit ce51b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/integration/IntegrationBase.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ abstract contract IntegrationBase is IntegrationDeployer {

/// @dev Looks up the staker's beacon chain scaling factor
function _getBeaconChainScalingFactor(User staker) internal view returns (uint64) {
(,bool isBeaconChainScalingFactorSet, uint64 beaconChainScalingFactor)= delegationManager.stakerScalingFactor(address(staker), BEACONCHAIN_ETH_STRAT);
(, uint64 beaconChainScalingFactor, bool isBeaconChainScalingFactorSet)= delegationManager.stakerScalingFactor(address(staker), BEACONCHAIN_ETH_STRAT);
return isBeaconChainScalingFactorSet ? beaconChainScalingFactor : WAD;
}

Expand Down

0 comments on commit ce51b02

Please sign in to comment.