Skip to content

Commit

Permalink
Comment updated from % to share
Browse files Browse the repository at this point in the history
  • Loading branch information
remedcu committed Jun 29, 2020
1 parent 5c22408 commit 6aef8e3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
Status status;
}

address public feeRecipient; // Address which receives a % of receiver payment.
uint public feeRecipientBasisPoint; // The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
address public feeRecipient; // Address which receives a share of receiver payment.
uint public feeRecipientBasisPoint; // The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
Transaction[] public transactions;
Arbitrator public arbitrator; // Address of the arbitrator contract.
bytes public arbitratorExtraData; // Extra data to set up the arbitration.
Expand Down Expand Up @@ -109,8 +109,8 @@ contract MultipleArbitrableTokenTransactionWithFee is IArbitrable {
/** @dev Constructor.
* @param _arbitrator The arbitrator of the contract.
* @param _arbitratorExtraData Extra data for the arbitrator.
* @param _feeRecipient Address which receives a % of receiver payment.
* @param _feeRecipientBasisPoint The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeRecipient Address which receives a share of receiver payment.
* @param _feeRecipientBasisPoint The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeTimeout Arbitration fee timeout for the parties.
*/
constructor (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ contract MultipleArbitrableTransactionWithFee is IArbitrable {
Status status;
}

address public feeRecipient; // Address which receives a % of receiver payment.
uint public feeRecipientBasisPoint; // The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
address public feeRecipient; // Address which receives a share of receiver payment.
uint public feeRecipientBasisPoint; // The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
Transaction[] public transactions;
bytes public arbitratorExtraData; // Extra data to set up the arbitration.
Arbitrator public arbitrator; // Address of the arbitrator contract.
Expand Down Expand Up @@ -99,8 +99,8 @@ contract MultipleArbitrableTransactionWithFee is IArbitrable {
/** @dev Constructor.
* @param _arbitrator The arbitrator of the contract.
* @param _arbitratorExtraData Extra data for the arbitrator.
* @param _feeRecipient Address which receives a % of receiver payment.
* @param _feeRecipientBasisPoint The % of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeRecipient Address which receives a share of receiver payment.
* @param _feeRecipientBasisPoint The share of fee to be received by the feeRecipient, down to 2 decimal places as 550 = 5.5%.
* @param _feeTimeout Arbitration fee timeout for the parties.
*/
constructor (
Expand Down

0 comments on commit 6aef8e3

Please sign in to comment.