File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ tags: ["multitest", "storage"]
3
3
---
4
4
5
5
[ MockStorage ] : https://docs.rs/cosmwasm-std/latest/cosmwasm_std/testing/struct.MockStorage.html
6
- [ MemoryStorage ] : https://docs.rs/cosmwasm-std/latest/cosmwasm_std/struct.MemoryStorage.html
7
6
[ Storage ] : https://docs.rs/cosmwasm-std/latest/cosmwasm_std/trait.Storage.html
8
7
[ App ] : https://docs.rs/cw-multi-test/latest/cw_multi_test/struct.App.html
9
8
[ get ] : https://docs.rs/cosmwasm-std/latest/cosmwasm_std/trait.Storage.html#tymethod.get
@@ -69,8 +68,8 @@ storage by implementing the [Storage] trait. Only the `get{:rust}`, `set{:rust}`
69
68
| [ ` range_keys{:rust} ` ] [ range_keys ] | Iterates over a set of ** keys** , either forwards or backwards. |
70
69
| [ ` range_values{:rust} ` ] [ range_values ] | Iterates over a set of ** values** , either forwards or backwards. |
71
70
72
- For inspiration on implementing custom storage, you can refer to [ MemoryStorage ] in the CosmWasm
73
- library. The following code stub could be a good starting point.
71
+ For inspiration on implementing custom storage, you can refer to [ ` MockStorage{:rust} ` ] [ MockStorage ]
72
+ in the CosmWasm library. The following code stub could be a good starting point.
74
73
75
74
``` rust showLineNumbers copy
76
75
#[derive(Default )]
You can’t perform that action at this time.
0 commit comments