Skip to content

Commit 0a1da04

Browse files
committed
Payment event in executeTransaction updated
1 parent 796ff18 commit 0a1da04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/standard/arbitration/MultipleArbitrableTokenTransactionWithFee.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
236236
require(transaction.token.transfer(transaction.receiver, amount - feeAmount), "The `transfer` function must not fail.");
237237
require(transaction.token.balanceOf(address(this)) == tokenBalance - amount, "Tried to transfer tokens more than allowed.");
238238

239-
emit Payment(_transactionID, amount - feeAmount, msg.sender);
239+
emit Payment(_transactionID, amount - feeAmount, transaction.sender);
240240
emit FeeRecipientPaymentInToken(_transactionID, feeAmount, transaction.token);
241241
}
242242

0 commit comments

Comments
 (0)