Skip to content

Commit 32b9412

Browse files
committed
Sender and Receiver Arbitration Fee Declaration Comment Updated
1 parent df1a8fd commit 32b9412

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contracts/standard/arbitration/MultipleArbitrableTokenTransactionWithFee.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
4040
ERC20 token;
4141
uint timeoutPayment; // Time in seconds after which the transaction can be automatically executed if not disputed.
4242
uint disputeId; // If dispute exists, the ID of the dispute.
43-
uint senderFee; // Total fees paid by the sender.
44-
uint receiverFee; // Total fees paid by the receiver.
43+
uint senderFee; // Total arbitration fees paid by the sender.
44+
uint receiverFee; // Total arbitration fees paid by the receiver.
4545
uint lastInteraction; // Last interaction for the dispute procedure.
4646
Status status;
4747
}

contracts/standard/arbitration/MultipleArbitrableTransactionWithFee.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ contract MultipleArbitrableTransactionWithFee is IArbitrable {
3131
uint amount;
3232
uint timeoutPayment; // Time in seconds after which the transaction can be automatically executed if not disputed.
3333
uint disputeId; // If dispute exists, the ID of the dispute.
34-
uint senderFee; // Total fees paid by the sender.
35-
uint receiverFee; // Total fees paid by the receiver.
34+
uint senderFee; // Total arbitration fees paid by the sender.
35+
uint receiverFee; // Total arbitration fees paid by the receiver.
3636
uint lastInteraction; // Last interaction for the dispute procedure.
3737
Status status;
3838
}

0 commit comments

Comments
 (0)