diff --git a/contracts/BaseRewardEscrowV2.sol b/contracts/BaseRewardEscrowV2.sol index 016def97d9..3336774e2e 100644 --- a/contracts/BaseRewardEscrowV2.sol +++ b/contracts/BaseRewardEscrowV2.sol @@ -315,7 +315,7 @@ contract BaseRewardEscrowV2 is Owned, IRewardEscrowV2, LimitedSetup(8 weeks), Mi /** * @notice Create an escrow entry to lock SNX for a given duration in seconds * @dev This call expects that the depositor (msg.sender) has already approved the Reward escrow contract - to spend the the amount being escrowed. + to spend the amount being escrowed. */ function createEscrowEntry( address beneficiary, diff --git a/contracts/CollateralManager.sol b/contracts/CollateralManager.sol index cb3d969f82..823099cf5d 100644 --- a/contracts/CollateralManager.sol +++ b/contracts/CollateralManager.sol @@ -403,7 +403,7 @@ contract CollateralManager is ICollateralManager, Owned, Pausable, MixinResolver for (uint i = 0; i < synthNamesInResolver.length; i++) { if (_synths.contains(synthNamesInResolver[i])) { - // Remove it from the the address set lib. + // Remove it from the address set lib. _synths.remove(synthNamesInResolver[i]); _currencyKeys.remove(synthKeys[i]); delete synthsByKey[synthKeys[i]]; @@ -462,7 +462,7 @@ contract CollateralManager is ICollateralManager, Owned, Pausable, MixinResolver function removeShortableSynths(bytes32[] calldata synths) external onlyOwner { for (uint i = 0; i < synths.length; i++) { if (_shortableSynths.contains(synths[i])) { - // Remove it from the the address set lib. + // Remove it from the address set lib. _shortableSynths.remove(synths[i]); bytes32 synthKey = _synth(synths[i]).currencyKey(); diff --git a/contracts/RewardEscrowV2Frozen/BaseRewardEscrowV2Frozen.sol b/contracts/RewardEscrowV2Frozen/BaseRewardEscrowV2Frozen.sol index b6d6ffa2b5..16d9ccc2d8 100644 --- a/contracts/RewardEscrowV2Frozen/BaseRewardEscrowV2Frozen.sol +++ b/contracts/RewardEscrowV2Frozen/BaseRewardEscrowV2Frozen.sol @@ -239,7 +239,7 @@ contract BaseRewardEscrowV2Frozen is Owned, IRewardEscrowV2Frozen, LimitedSetup( /** * @notice Create an escrow entry to lock SNX for a given duration in seconds * @dev This call expects that the depositor (msg.sender) has already approved the Reward escrow contract - to spend the the amount being escrowed. + to spend the amount being escrowed. */ function createEscrowEntry( address beneficiary, diff --git a/test/contracts/Issuer.js b/test/contracts/Issuer.js index d20cac1510..e1be1dfb7e 100644 --- a/test/contracts/Issuer.js +++ b/test/contracts/Issuer.js @@ -412,7 +412,7 @@ contract('Issuer (via Synthetix)', async accounts => { await sETHContract.issue(account1, toUnit('1')); // 100 sUSD worth - // and since we are are bypassing the usual issuance flow here, we must cache the debt snapshot + // and since we are bypassing the usual issuance flow here, we must cache the debt snapshot assert.bnEqual(await synthetix.totalIssuedSynths(sUSD), toUnit('0')); await updateDebtMonitors(); }); @@ -491,7 +491,7 @@ contract('Issuer (via Synthetix)', async accounts => { await sUSDContract.issue(account3, toUnit('10')); await sUSDContract.issue(account1, toUnit('1')); - // and since we are are bypassing the usual issuance flow here, we must cache the debt snapshot + // and since we are bypassing the usual issuance flow here, we must cache the debt snapshot assert.bnEqual(await synthetix.totalIssuedSynths(sUSD), toUnit('0')); await updateDebtMonitors(); }); @@ -527,7 +527,7 @@ contract('Issuer (via Synthetix)', async accounts => { await sETHContract.issue(account1, toUnit('1')); // 100 sUSD worth - // and since we are are bypassing the usual issuance flow here, we must cache the debt snapshot + // and since we are bypassing the usual issuance flow here, we must cache the debt snapshot assert.bnEqual(await synthetix.totalIssuedSynths(sUSD), toUnit('0')); await updateDebtMonitors(); });