Skip to content

Commit

Permalink
refactor(dpp): using deprecated param to init wasm module (#2399)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov authored Dec 18, 2024
1 parent c5f5878 commit 01a5b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wasm-dpp/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const loadDppModule = async () => {
let wasmUrl = URL.createObjectURL(blob);
await init(wasmUrl);
} else {
dpp_module.initSync(bytes);
dpp_module.initSync({ module: bytes });
}
}

0 comments on commit 01a5b7a

Please sign in to comment.