Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexNi245 committed Jul 27, 2023
1 parent 1234ad1 commit 50918b8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions test/contracts/BedrockCcipVerifier.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ describe("Bedrock CcipVerifier", () => {
});
describe("Metadata", () => {
it("returns metadata", async () => {
const convertCoinTypeToEVMChainId = (coinType: number) => {
return (0x7fffffff & coinType) >> 0
}
const convertCoinTypeToEVMChainId = (_coinType: number) => {
return (0x7fffffff & _coinType) >> 0;
};
const bedrockCcipVerifier = await new BedrockCcipVerifier__factory()
.connect(owner)
.deploy(owner.address, "http://localhost:8080/graphql", bedrockProofVerifier.address, resolver.address);
Expand Down
6 changes: 3 additions & 3 deletions test/contracts/CcipResolver.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ describe("CCIpResolver Test", () => {
});
describe("Metadata", () => {
it("returns metadata", async () => {
const convertCoinTypeToEVMChainId = (coinType: number) => {
return (0x7fffffff & coinType) >> 0
}
const convertCoinTypeToEVMChainId = (_coinType: number) => {
return (0x7fffffff & _coinType) >> 0;
};

await ccipResolver
.connect(alice)
Expand Down
6 changes: 3 additions & 3 deletions test/contracts/SignatureCcipVerifier.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,9 @@ describe("Signature Ccip Verifier", () => {
});
describe("Metadata", () => {
it("returns metadata", async () => {
const convertCoinTypeToEVMChainId = (coinType: number) => {
return (0x7fffffff & coinType) >> 0
}
const convertCoinTypeToEVMChainId = (_coinType: number) => {
return (0x7fffffff & _coinType) >> 0;
};
const signatureCcipVerifier = await new SignatureCcipVerifier__factory()
.connect(owner)
.deploy(owner.address, "http://localhost:8080/graphql", "Signature Ccip Resolver", resolver.address, [signer1.address]);
Expand Down
1 change: 1 addition & 0 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"max-classes-per-file": false,
"no-empty": false,
"no-console": false,
"no-bitwise": false,
"only-arrow-functions": false,
"variable-name": [true, "check-format", "allow-leading-underscore", "allow-pascal-case"],
"ordered-imports": [
Expand Down

0 comments on commit 50918b8

Please sign in to comment.