Skip to content

Commit a17e5b0

Browse files
authored
Fix typo (#417)
1 parent a3199b7 commit a17e5b0

File tree

1 file changed

+2
-2
lines changed
  • third_party/pyth/multisig-wh-message-builder/src

1 file changed

+2
-2
lines changed

third_party/pyth/multisig-wh-message-builder/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import bs58 from "bs58";
2121
import { program } from "commander";
2222
import * as fs from "fs";
2323
import { LedgerNodeWallet } from "./wallet";
24-
import loadash from "lodash";
24+
import lodash from "lodash";
2525

2626
setDefaultWasm("node");
2727

@@ -652,7 +652,7 @@ function verifyOnChainInstruction(
652652
);
653653
}
654654

655-
if (!loadash.isEqual(instruction.keys, onChainInstruction.keys)) {
655+
if (!lodash.isEqual(instruction.keys, onChainInstruction.keys)) {
656656
throw new Error(
657657
`Instruction accounts mismatch. Expected ${instruction.keys}, found ${onChainInstruction.keys}`
658658
);

0 commit comments

Comments
 (0)