Skip to content

Commit

Permalink
Fix serialization migration docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Nov 7, 2023
1 parent a28d53a commit 9f8a08e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,10 @@ major releases of `cosmwasm`. Note that you can also view the
+ a: Uint128,
+ b: Int128,
}
-const map: Map<u128, MyStorage> = Map::new("map");
+const map: Map<Uint128, MyStorage> = Map::new("map");
const map: Map<u128, MyStorage> = Map::new("map");

-const item: Item<u128> = Item::new("item");
+const item: Item<Uint128> = Item::new("item");
```

## 1.4.x -> 1.5.0
Expand Down

0 comments on commit 9f8a08e

Please sign in to comment.