File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
contracts/standard/arbitration Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
4646 Status status;
4747 }
4848
49- address public feeRecipient; // Address which receives a % of receiver payment.
50- uint public feeRecipientBasisPoint; // The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
49+ address public feeRecipient; // Address which receives a share of receiver payment.
50+ uint public feeRecipientBasisPoint; // The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
5151 Transaction[] public transactions;
5252 Arbitrator public arbitrator; // Address of the arbitrator contract.
5353 bytes public arbitratorExtraData; // Extra data to set up the arbitration.
@@ -109,8 +109,8 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
109109 /** @dev Constructor.
110110 * @param _arbitrator The arbitrator of the contract.
111111 * @param _arbitratorExtraData Extra data for the arbitrator.
112- * @param _feeRecipient Address which receives a % of receiver payment.
113- * @param _feeRecipientBasisPoint The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
112+ * @param _feeRecipient Address which receives a share of receiver payment.
113+ * @param _feeRecipientBasisPoint The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
114114 * @param _feeTimeout Arbitration fee timeout for the parties.
115115 */
116116 constructor (
Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ contract MultipleArbitrableTransactionWithFee is IArbitrable {
3737 Status status;
3838 }
3939
40- address public feeRecipient; // Address which receives a % of receiver payment.
41- uint public feeRecipientBasisPoint; // The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
40+ address public feeRecipient; // Address which receives a share of receiver payment.
41+ uint public feeRecipientBasisPoint; // The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
4242 Transaction[] public transactions;
4343 bytes public arbitratorExtraData; // Extra data to set up the arbitration.
4444 Arbitrator public arbitrator; // Address of the arbitrator contract.
@@ -99,8 +99,8 @@ contract MultipleArbitrableTransactionWithFee is IArbitrable {
9999 /** @dev Constructor.
100100 * @param _arbitrator The arbitrator of the contract.
101101 * @param _arbitratorExtraData Extra data for the arbitrator.
102- * @param _feeRecipient Address which receives a % of receiver payment.
103- * @param _feeRecipientBasisPoint The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
102+ * @param _feeRecipient Address which receives a share of receiver payment.
103+ * @param _feeRecipientBasisPoint The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
104104 * @param _feeTimeout Arbitration fee timeout for the parties.
105105 */
106106 constructor (
You can’t perform that action at this time.
0 commit comments