Skip to content

Commit 85cdf8d

Browse files
committed
Fix unit in minipool penalty guardrail
1 parent 96b6b60 commit 85cdf8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/contract/dao/protocol/settings/RocketDAOProtocolSettingsMinipool.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ contract RocketDAOProtocolSettingsMinipool is RocketDAOProtocolSettings, RocketD
3939
require(_value >= (rocketDAONodeTrustedSettingsMinipool.getScrubPeriod() + 1 hours), "Launch timeout must be greater than scrub period");
4040
require(_value >= 12 hours, "Launch timeout must be greater than 12 hours");
4141
} else if(settingKey == keccak256(abi.encodePacked("minipool.maximum.penalty.count"))) {
42-
require(_value >= 1000 ether && _value <= 5000 ether, "Value must be >= 1000 ETH & <= 5000 ETH");
42+
require(_value >= 1000 && _value <= 5000, "Value must be >= 1000 & <= 5000");
4343
}
4444
}
4545
// Update setting now

0 commit comments

Comments
 (0)