diff --git a/Cargo.toml b/Cargo.toml index a0af232227..9dbbefebc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-subxt" -version = "0.3.0" +version = "0.4.0" authors = ["Parity Technologies "] edition = "2018" diff --git a/src/frame/system.rs b/src/frame/system.rs index 68a02b570a..976238b52f 100644 --- a/src/frame/system.rs +++ b/src/frame/system.rs @@ -71,7 +71,8 @@ pub trait System: 'static + Eq + Clone + Debug { + Default + Bounded + Copy - + std::hash::Hash; + + std::hash::Hash + + std::str::FromStr; /// The output of the `Hashing` function. type Hash: Parameter