We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93fad1f commit 57887beCopy full SHA for 57887be
src/cache.ts
@@ -82,7 +82,7 @@ export class NoirCache {
82
}
83
84
async function getToolingHash(config: HardhatConfig) {
85
- return await sha256([config.noir.version, config.noir.bbVersion].join());
+ return await sha256(JSON.stringify(config.noir));
86
87
88
// 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