Skip to content

Commit 57887be

Browse files
committed
fix: hash all tooling
1 parent 93fad1f commit 57887be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export class NoirCache {
8282
}
8383

8484
async function getToolingHash(config: HardhatConfig) {
85-
return await sha256([config.noir.version, config.noir.bbVersion].join());
85+
return await sha256(JSON.stringify(config.noir));
8686
}
8787

8888
// TODO: i could not make it work. But should be using io-ts because hardhat already uses it and zod is a very heavy lib

0 commit comments

Comments
 (0)