Skip to content

Commit

Permalink
fix(auto-appealable-arbitrator): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
0xferit authored Mar 25, 2019
1 parent 23f0e55 commit 12f56e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ contract AutoAppealableArbitrator is Arbitrator {
* @param _appealCost The cost of appeal.
* @param _timeToAppeal The time to appeal the ruling.
*/
function giveAppelableRuling(uint _disputeID, uint _ruling, uint _appealCost, uint _timeToAppeal) external onlyOwner {
function giveAppealableRuling(uint _disputeID, uint _ruling, uint _appealCost, uint _timeToAppeal) external onlyOwner {
Dispute storage dispute = disputes[_disputeID];
require(_ruling <= dispute.choices, "Invalid ruling.");
require(dispute.status == DisputeStatus.Waiting, "The dispute must be waiting for arbitration.");
Expand Down

0 comments on commit 12f56e0

Please sign in to comment.