We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba6e4d9 commit f69de78Copy full SHA for f69de78
contracts/sfc/SFCLib.sol
@@ -458,7 +458,7 @@ contract SFCLib is SFCBase {
458
if (penalty != 0) {
459
penalties.push(Penalty(penalty, ld.endTime));
460
require(penalties.length <= 30, "too many ongoing relocks");
461
- require(amount > ld.lockedStake / 100 || penalties.length <= 3 || endTime >= ld.endTime + 14 * 24 * 60 * 60, "too frequent relocks (github.com/Fantom-foundation/opera-sfc/wiki/Lockup-calls-reference#re-lock-stake)");
+ require(amount > ld.lockedStake / 100 || penalties.length <= 3 || endTime >= ld.endTime + 14 * 24 * 60 * 60, "too frequent relocks");
462
}
463
464
0 commit comments