Skip to content

Commit

Permalink
feat(realitio-arbitrator-proxy): use wasted second
Browse files Browse the repository at this point in the history
  • Loading branch information
epiqueras committed Mar 22, 2019
1 parent c0daaeb commit 23f0e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/standard/proxy/RealitioArbitratorProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ contract RealitioArbitratorProxy is Arbitrable {
lastAnswer = revealedAnswer;
isAnswered = true;
} else {
require(revealTS < uint32(now), "Arbitration cannot be done until the last answerer has had time to reveal its commitment.");
require(revealTS <= uint32(now), "Arbitration cannot be done until the last answerer has had time to reveal its commitment.");
isAnswered = false;
}
} else {
Expand Down

0 comments on commit 23f0e55

Please sign in to comment.