Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ You can install it by running:
curl -fsSL https://deno.land/install.sh | sh
```

## ink! notes

If you are unable to compile ink contracts and encounter the following issue:

```
error: panic_immediate_abort is now a real panic strategy!
```

please try using Rust toolchain version 1.91.1, as newer toolchains may trigger this issue due to changes in panic strategy handling.

# Building contracts

We can now compile the contracts located in the `contracts/` directory:
Expand Down
2 changes: 1 addition & 1 deletion utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export async function createEnv({
transactionHash: Hex,
) {
return client.request({
method: 'substrate_postDispatchWeight' as never,
method: 'polkadot_postDispatchWeight' as never,
params: [
transactionHash,
],
Expand Down