Skip to content

Commit ea431ec

Browse files
committed
Remove reference to MemoryStorage
1 parent 7c943f7 commit ea431ec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/pages/cw-multi-test/storage.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ tags: ["multitest", "storage"]
33
---
44

55
[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
76
[Storage]: https://docs.rs/cosmwasm-std/latest/cosmwasm_std/trait.Storage.html
87
[App]: https://docs.rs/cw-multi-test/latest/cw_multi_test/struct.App.html
98
[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}`
6968
| [`range_keys{:rust}`][range_keys] | Iterates over a set of **keys**, either forwards or backwards. |
7069
| [`range_values{:rust}`][range_values] | Iterates over a set of **values**, either forwards or backwards. |
7170

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.
7473

7574
```rust showLineNumbers copy
7675
#[derive(Default)]

0 commit comments

Comments
 (0)