Skip to content

Commit 3ccea43

Browse files
committed
missing trait in docs
1 parent 2d5eac7 commit 3ccea43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

steps/33/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ For this we will use a trait with a bunch of associated types:
7979

8080
```rust
8181
pub trait Config {
82-
type AccountId: Ord;
82+
type AccountId: Ord + Clone;
8383
type BlockNumber: Zero + One + AddAssign + Copy;
8484
type Nonce: Zero + One + Copy;
8585
// and more if needed

0 commit comments

Comments
 (0)