Add an INDEX to the Instance trait (#8555)

* Add an index to the Instance trait

* Update frame/support/procedural/src/storage/instance_trait.rs
This commit is contained in:
Shawn Tabrizi
2021-04-07 14:58:23 +02:00
committed by GitHub
parent 1cb3590f49
commit d8c1a1d12b
5 changed files with 23 additions and 8 deletions
@@ -26,6 +26,8 @@
pub trait Instance: 'static {
/// Unique module prefix. E.g. "InstanceNMyModule" or "MyModule"
const PREFIX: &'static str;
/// Unique numerical identifier for an instance.
const INDEX: u8;
}
/// An instance of a storage in a pallet.