Skip to content

Commit

Permalink
fix bug in only_unratified modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilva committed Mar 15, 2018
1 parent f4cee4b commit 200fcfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Operations.sol
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ contract Operations is OperationsFace {
}

modifier only_unratified {
require(fork[proposedFork].ratified);
require(!fork[proposedFork].ratified);
_;
}

Expand Down

0 comments on commit 200fcfc

Please sign in to comment.