File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/pages/storey/containers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ assert_eq!(access.entry("alice").get().unwrap(), Some(Uint128::new(1000)));
37
37
- _ line 6:_ Here we construct the ` Map ` facade. The constructor takes a key, which is the prefix of
38
38
the keys in the underlying storage backend.
39
39
- _ line 7:_ The [ ` access ` ] method returns a [ ` MapAccess ` ] entity, which allows manipulating the map.
40
- - _ line 9:_ Here we try to access the balance of ` alice ` . Since she doesn't have one yet, it
41
- returns ` None ` . The [ ` entry ` ] method returns an [ ` ItemAccess ` ] entity, which allows manipulating
42
- the item stored under the key ` alice ` .
40
+ - _ line 9:_ Here we try to access the balance of ` alice ` . Since she doesn't have one yet, it returns
41
+ ` None ` . The [ ` entry ` ] method returns an [ ` ItemAccess ` ] entity, which allows manipulating the item
42
+ stored under the key ` alice ` .
43
43
- _ line 11:_ Here we set Alice's balance to ` 1000 ` .
44
44
- _ line 13:_ We check that the balance is now ` 1000 ` .
45
45
You can’t perform that action at this time.
0 commit comments