Skip to content

Commit 5f65277

Browse files
committed
typo fix
1 parent 177e907 commit 5f65277

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/core/test/hardhat/cross-chain-oracle/chain-adapters/Arbitrum_ChildMessenger.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const priceIdentifier = padRight(utf8ToHex("TEST_IDENTIFIER"), 64);
2121
const ancillaryData = utf8ToHex("some-address-field:0x1234");
2222
const defaultTimestamp = 100;
2323

24-
// Helper methods that we will use to call cross-domain permissioned methods on the Messenger. These are neccesary
24+
// Helper methods that we will use to call cross-domain permissioned methods on the Messenger. These are necessary
2525
// because addresses are aliased in any contract that extends AVM_CrossDomainEnabled
2626
function applyL1ToL2Alias(l1Address) {
2727
const offset = toBN("0x1111000000000000000000000000000000001111");

packages/core/test/hardhat/data-verification-mechanism/VotingV2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3585,7 +3585,7 @@ describe("VotingV2", function () {
35853585
assert.equal((await voting.methods.voterStakes(account1).call()).stake, toWei("32000000").add(toWei("108800")));
35863586
assert.equal((await voting.methods.voterStakes(account1).call()).unappliedSlash, toWei("108625.92"));
35873587

3588-
// Now, update to request 3 (the final request. we should see 2x the unapplied slasing now applied to the ballance.
3588+
// Now, update to request 3 (the final request. we should see 2x the unapplied slasing now applied to the balance.
35893589
await voting.methods.updateTrackersRange(account1, 1).send({ from: account1 });
35903590
assert.equal((await voting.methods.voterStakes(account1).call()).nextIndexToProcess, 3);
35913591
let expectedStake = toWei("32000000").add(toWei("108800")).add(toWei("108625.92")).add(toWei("108625.92"));

packages/core/test/hardhat/proxy-scripts/atomic-liquidator/ReserveCurrencyLiquidator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ describe("ReserveTokenLiquidator", function () {
496496
const convertCollateral = Convert(9);
497497
const convertSynthetic = Convert(9);
498498

499-
// create a new router and pair to re-initalize from fresh.
499+
// create a new router and pair to re-initialize from fresh.
500500
factory = (await createContractObjectFromJson(UniswapV2Factory, web3).new(deployer, { from: deployer })).contract;
501501
router = (
502502
await createContractObjectFromJson(UniswapV2Router02, web3).new(

0 commit comments

Comments
 (0)