Skip to content

Commit 5f677e1

Browse files
committed
chore: updated myself as a reviewer on RAB pragma
1 parent 6150800 commit 5f677e1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

contracts/kleros/xKlerosLiquid.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ contract xKlerosLiquid is Initializable, TokenController, Arbitrator {
176176

177177
// Dispute
178178
// Use a mapping instead of an array so that upgrading (appending variables to) the Dispute struct is possible without big layout changes.
179-
mapping(uint => Dispute) public disputes; // The disputes.
179+
mapping(uint => Dispute) public disputes; // The disputes.
180180
uint public totalDisputes;
181181

182182
// Juror
@@ -395,9 +395,9 @@ contract xKlerosLiquid is Initializable, TokenController, Arbitrator {
395395
if (phase == Phase.staking) {
396396
require(now - lastPhaseChange >= minStakingTime, "The minimum staking time has not passed yet.");
397397
require(disputesWithoutJurors > 0, "There are no disputes that need jurors.");
398-
/** collectRoundLength is added so that the last validator to reveal cannot know
398+
/** collectRoundLength is added so that the last validator to reveal cannot know
399399
* during the staking phase which random seed is going to be used in the drawing phase.
400-
*/
400+
*/
401401
RNBlock = RNGenerator.nextCommitPhaseStartBlock() + RNGenerator.collectRoundLength();
402402
phase = Phase.generating;
403403
} else if (phase == Phase.generating) {

contracts/tokens/WrappedPinakion.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* https://contributing.kleros.io/smart-contract-workflow
33
* @authors: [@fnanni-0]
4-
* @reviewers: [@unknownunknown1, @MerlinEgalite, @hbarcelos*, @shalzz*]
4+
* @reviewers: [@unknownunknown1, @MerlinEgalite, @hbarcelos, @shalzz*]
55
* @auditors: []
66
* @bounties: []
77
* @deployments: []
@@ -119,7 +119,7 @@ contract WrappedPinakion is Initializable {
119119
* someone invoking `relayTokensAndCall()` on the Foreign bridge contract.
120120
* @param _token The token address the _amount belongs to.
121121
* @param _amount The amount of wrapped PNK to mint.
122-
* @param _data Calldata containing the address of the recipient.
122+
* @param _data Calldata containing the address of the recipient.
123123
* Notice that the address has to be padded to the right 32 bytes.
124124
*/
125125
function onTokenBridged(

0 commit comments

Comments
 (0)