Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed Nov 29, 2021
1 parent 98237de commit 50301a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/tests/ts-tests/tests/suits/basic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ let tokenAndTransport = [

/**
* Basic test suite covers the, well, basic server functionality: availability of API, ability to execute transactions
* and priority opertations, etc.
* and priority operations, etc.
*
* Since we have two main APIs (REST and RPC) and processing of ERC20 tokens and ETH differs, we run the same set of basic
* tests multiple times to cover APIs and tokens combinations.
Expand Down
2 changes: 1 addition & 1 deletion core/tests/ts-tests/tests/suits/no2fa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ describe(`No2FA tests`, () => {
// Here the transfer without Ethereum signature, but with wrong l2 private key
await expect(tester.testTransfer(hilda, frida, token, TX_AMOUNT)).to.be.rejected;

// No let's go back to the correct l2 private key
// Now let's go back to the correct l2 private key
hildaWithEthSigner.signer = Signer.fromPrivateKey(zkPrivateKey);
await (
await hildaWithEthSigner.setSigningKey({
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/zk/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export async function load() {

// This suppresses the warning that looks like: "Warning: Accessing non-existent property 'INVALID_ALT_NUMBER'...".
// This warning is spawned from the `antlr4`, which is a dep of old `solidity-parser` library.
// Old version of `solidity-parser` is still videly used, and currently we can't get rid of it fully.
// Old version of `solidity-parser` is still widely used, and currently we can't get rid of it fully.
process.env.NODE_OPTIONS = '--no-warnings';
}

Expand Down

0 comments on commit 50301a0

Please sign in to comment.