Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shawntabrizi/polkadot-sdk-errors-tutorial

An interactive tutorial teaching you how to solve the most common errors when working with the Polkadot SDK.
https://github.com/shawntabrizi/polkadot-sdk-errors-tutorial

Last synced: 4 days ago
JSON representation

An interactive tutorial teaching you how to solve the most common errors when working with the Polkadot SDK.

Awesome Lists containing this project

README

        

# polkadot-sdk-errors-tutorial
An interactive tutorial teaching you how to solve the most common errors when working with the Polkadot SDK.

## Ideas

- [ ] Missing `std` feature / `default-features=false` in Cargo.toml
- [ ] One small typo inside deep macro scaffolding, causing unreadable errors.
- [ ] Trying to use a function without importing the trait in scope.
- [ ] Rust error says to import from a strange crate, like the ones coming from the macros.
- [ ] Duplicate associated type name within a supertrait.
- [ ] Trying to do math operations on two different generic types.
- [ ] Forgetting to use a result, and NOT doing `let _ =` as the compiler suggests.