Skip to content

Commit

Permalink
fix(escrow-token): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
n1c01a5 authored Feb 13, 2019
1 parent 2548e70 commit eef1c01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ contract MultipleArbitrableTokenTransaction {
require(_amount <= transaction.amount, "The amount paid has to be less or equal than the transaction.");

transaction.amount -= _amount;
require(token.transfer(transaction.sender, _amount) != false, "The `transfer` function must not failed.");
require(token.transfer(transaction.sender, _amount) != false, "The `transfer` function must not fail.");
}

/** @dev Reimburse receiver. To be called if the good or service can't be fully provided. UNTRUSTED.
Expand Down

0 comments on commit eef1c01

Please sign in to comment.