diff --git a/third_party/pyth/multisig-wh-message-builder/src/index.ts b/third_party/pyth/multisig-wh-message-builder/src/index.ts index 96b951e4..40149fd8 100644 --- a/third_party/pyth/multisig-wh-message-builder/src/index.ts +++ b/third_party/pyth/multisig-wh-message-builder/src/index.ts @@ -21,7 +21,7 @@ import bs58 from "bs58"; import { program } from "commander"; import * as fs from "fs"; import { LedgerNodeWallet } from "./wallet"; -import loadash from "lodash"; +import lodash from "lodash"; setDefaultWasm("node"); @@ -652,7 +652,7 @@ function verifyOnChainInstruction( ); } - if (!loadash.isEqual(instruction.keys, onChainInstruction.keys)) { + if (!lodash.isEqual(instruction.keys, onChainInstruction.keys)) { throw new Error( `Instruction accounts mismatch. Expected ${instruction.keys}, found ${onChainInstruction.keys}` );