Skip to content

Commit

Permalink
fix(token-escrow): fix doc typos
Browse files Browse the repository at this point in the history
  • Loading branch information
n1c01a5 authored Jan 23, 2019
1 parent d1b7b8b commit a2049ac
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ contract MultipleArbitrableTokenTransaction {
if (transaction.sellerFee < arbitrationCost) {
transaction.status = Status.WaitingSeller;
emit HasToPayFee(_transactionID, Party.Seller);
} else { // The buyer has also paid the fee. We create the dispute
} else { // The buyer has also paid the fee. We create the dispute.
raiseDispute(_transactionID, arbitrationCost);
}
}
Expand All @@ -256,7 +256,7 @@ contract MultipleArbitrableTokenTransaction {
if (transaction.buyerFee < arbitrationCost) {
transaction.status = Status.WaitingBuyer;
emit HasToPayFee(_transactionID, Party.Buyer);
} else { // The seller has also paid the fee. We create the dispute
} else { // The seller has also paid the fee. We create the dispute.
raiseDispute(_transactionID, arbitrationCost);
}
}
Expand Down Expand Up @@ -386,4 +386,4 @@ contract MultipleArbitrableTokenTransaction {
transactionIDs[count++] = j;
}
}
}
}

0 comments on commit a2049ac

Please sign in to comment.