File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This guide explains what is needed to upgrade contracts when migrating over
4
4
major releases of ` cosmwasm ` . Note that you can also view the
5
5
[ complete CHANGELOG] ( ./CHANGELOG.md ) to understand the differences.
6
6
7
- ## 1.5.x -> 2.0.0
7
+ ## 1.5.x -> 2.0.x
8
8
9
9
- Update ` cosmwasm-* ` dependencies in Cargo.toml (skip the ones you don't use):
10
10
@@ -262,6 +262,10 @@ major releases of `cosmwasm`. Note that you can also view the
262
262
in 2.0. To keep the CosmWasm 1.x behaviour, just set payload to
263
263
` Binary::default() ` .
264
264
265
+ - In test code, replace calls to ` mock_info ` with ` message_info ` . This takes a
266
+ ` &Addr ` as the first argument which you get by using owned ` Addr ` in the test
267
+ bodies.
268
+
265
269
## 1.4.x -> 1.5.0
266
270
267
271
- Update ` cosmwasm-* ` dependencies in Cargo.toml (skip the ones you don't use):
You can’t perform that action at this time.
0 commit comments