Skip to content

Commit a188e8f

Browse files
authored
fix: verify should always build in no-lib mode (#304)
1 parent 98568a5 commit a188e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/verify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export const verify: Runner = async (_args: Args, ui: UIProvider, context: Runne
223223
throw new Error('Cannot use custom network');
224224
}
225225

226-
const result = await doCompile(selectedContract);
226+
const result = await doCompile(selectedContract, { buildLibrary: false });
227227
const resHash = result.code.hash();
228228

229229
ui.write(`Compiled code hash hex: ${resHash.toString('hex')}`);

0 commit comments

Comments
 (0)