Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/HubPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ contract HubPool is HubPoolInterface, Testable, Lockable, MultiCaller, Ownable {
noActiveRequests
nonReentrant
{
// Bond should not be great than final fee otherwise every proposal will get cancelled in a dispute.
// Bond should not equal final fee otherwise every proposal will get cancelled in a dispute.
// In practice we expect that bond amounts are set >> final fees so this shouldn't be an inconvenience.
// The only way for the bond amount to be equal to the final fee is if the newBondAmount == 0.
require(newBondAmount != 0, "bond equal to final fee");
Expand Down