Maps are appendable too (#2716)

* Maps are appendable too

* Update srml/support/src/storage/hashed/generator.rs

Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com>

* Update srml/support/src/storage/mod.rs

Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com>

* Fix docs

* Make Appendable public

* Bump runtime version
This commit is contained in:
Gavin Wood
2019-05-29 15:15:10 +02:00
committed by GitHub
parent 810d2712da
commit fccc55160a
7 changed files with 94 additions and 5 deletions
+3 -1
View File
@@ -57,7 +57,9 @@ pub mod unsigned;
mod double_map;
pub mod traits;
pub use self::storage::{StorageList, StorageValue, StorageMap, EnumerableStorageMap, StorageDoubleMap};
pub use self::storage::{
StorageList, StorageValue, StorageMap, EnumerableStorageMap, StorageDoubleMap, AppendableStorageMap
};
pub use self::hashable::Hashable;
pub use self::dispatch::{Parameter, Dispatchable, Callable, IsSubType};
pub use self::double_map::StorageDoubleMapWithHasher;