We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3199b7 commit a17e5b0Copy full SHA for a17e5b0
third_party/pyth/multisig-wh-message-builder/src/index.ts
@@ -21,7 +21,7 @@ import bs58 from "bs58";
21
import { program } from "commander";
22
import * as fs from "fs";
23
import { LedgerNodeWallet } from "./wallet";
24
-import loadash from "lodash";
+import lodash from "lodash";
25
26
setDefaultWasm("node");
27
@@ -652,7 +652,7 @@ function verifyOnChainInstruction(
652
);
653
}
654
655
- if (!loadash.isEqual(instruction.keys, onChainInstruction.keys)) {
+ if (!lodash.isEqual(instruction.keys, onChainInstruction.keys)) {
656
throw new Error(
657
`Instruction accounts mismatch. Expected ${instruction.keys}, found ${onChainInstruction.keys}`
658
0 commit comments