We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d11ff9b commit 69b1b4bCopy full SHA for 69b1b4b
contracts/src/0.8/RealitioHomeProxyGnosis.sol
@@ -219,6 +219,8 @@ contract RealitioHomeProxyGnosis is IHomeArbitrationProxy {
219
Request storage request = requests[_questionID][requester];
220
require(request.status == Status.Ruled, "Arbitrator has not ruled yet");
221
222
+ request.status = Status.Finished;
223
+
224
realitio.assignWinnerAndSubmitAnswerByArbitrator(
225
_questionID,
226
request.arbitratorAnswer,
@@ -228,8 +230,6 @@ contract RealitioHomeProxyGnosis is IHomeArbitrationProxy {
228
230
_lastAnswerer
229
231
);
232
- request.status = Status.Finished;
-
233
emit ArbitrationFinished(_questionID);
234
}
235
0 commit comments