Skip to content

Commit

Permalink
fix: order of wasm and storage overrides (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
wischli committed Nov 1, 2023
1 parent 9b6f207 commit b3ae6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/chopsticks/src/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ export const setupContext = async (argv: Config, overrideParent = false) => {

// override wasm before importing storage, in case new pallets have been
// added that have storage imports
await overrideStorage(chain, argv['import-storage'], at)
await overrideWasm(chain, argv['wasm-override'], at)
await overrideStorage(chain, argv['import-storage'], at)

return { chain }
}

0 comments on commit b3ae6f3

Please sign in to comment.