File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,16 @@ You can install it by running:
99curl -fsSL https://deno.land/install.sh | sh
1010```
1111
12+ ## ink! notes
13+
14+ If you are unable to compile ink contracts and encounter the following issue:
15+
16+ ```
17+ error: panic_immediate_abort is now a real panic strategy!
18+ ```
19+
20+ please try using Rust toolchain version 1.91.1, as newer toolchains may trigger this issue due to changes in panic strategy handling.
21+
1222# Building contracts
1323
1424We can now compile the contracts located in the ` contracts/ ` directory:
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ export async function createEnv({
171171 transactionHash : Hex ,
172172 ) {
173173 return client . request ( {
174- method : 'substrate_postDispatchWeight ' as never ,
174+ method : 'polkadot_postDispatchWeight ' as never ,
175175 params : [
176176 transactionHash ,
177177 ] ,
You can’t perform that action at this time.
0 commit comments