Skip to content

Commit e1157bf

Browse files
authored
Merge pull request #325 from remedcu/master
Updated: RAB Pragma of Linguo & Escrow | Comment updated in Escrow with Fee
2 parents c953d46 + 2ca565a commit e1157bf

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

contracts/standard/arbitration/Linguo.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @authors: [@unknownunknown1]
3-
* @reviewers: [@ferittuncer*, @clesaege*, @satello*, @hbarcelos, @mtsalenc]
3+
* @reviewers: [@ferittuncer*, @clesaege*, @satello*, @hbarcelos, @mtsalenc, @remedcu]
44
* @auditors: []
55
* @bounties: []
66
* @deployments: []

contracts/standard/arbitration/LinguoToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @authors: [@unknownunknown1]
3-
* @reviewers: []
3+
* @reviewers: [@remedcu]
44
* @auditors: []
55
* @bounties: []
66
* @deployments: []

contracts/standard/arbitration/MultipleArbitrableTokenTransaction.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* @authors: [@n1c01a5, @hellwolf, @satello]
3-
* @reviewers: [@ferittuncer, @unknownunknown1, @mtsalenc, @clesaege]
3+
* @reviewers: [@ferittuncer, @unknownunknown1, @mtsalenc, @clesaege, @remedcu]
44
* @auditors: []
55
* @bounties: []
6-
* @deployments: []
6+
* @deployments: [ https://etherscan.io/address/0xc25a0b9681abf6f090aed71a8c08fb564b41dab6 ]
77
* @tools: [MythX]
88
*/
99

contracts/standard/arbitration/MultipleArbitrableTokenTransactionWithFee.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 (

contracts/standard/arbitration/MultipleArbitrableTransaction.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* @authors: [@eburgos, @n1c01a5]
3-
* @reviewers: [@unknownunknown1, @clesaege*, @ferittuncer]
3+
* @reviewers: [@unknownunknown1, @clesaege*, @ferittuncer, @remedcu]
44
* @auditors: []
55
* @bounties: []
6-
* @deployments: []
6+
* @deployments: [ https://etherscan.io/address/0x0d67440946949FE293B45c52eFD8A9b3d51e2522 ]
77
* @tools: [MythX]
88
*/
99

contracts/standard/arbitration/MultipleArbitrableTransactionWithFee.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 (

contracts/standard/proxy/RealitioArbitratorProxy.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* https://contributing.kleros.io/smart-contract-workflow
33
* @reviewers: [@clesaege, @unknownunknown1]
4-
* @auditors: []
4+
* @auditors: [@remedcu]
55
* @bounties: []
6-
* @deployments: []
6+
* @deployments: [ https://etherscan.io/address/0xd47f72a2d1d0e91b0ec5e5f5d02b2dc26d00a14d ]
77
* @tools: [MythX]
88
*/
99

0 commit comments

Comments
 (0)