diff --git a/Cargo.toml b/Cargo.toml index ad12d0808..58c34580c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "1.0.3" +version = "1.0.5" authors = ["Webb Technologies Inc."] edition = "2021" license = "Unlicense" diff --git a/runtime/mainnet/src/lib.rs b/runtime/mainnet/src/lib.rs index 4cdd7a14b..358ba65f3 100644 --- a/runtime/mainnet/src/lib.rs +++ b/runtime/mainnet/src/lib.rs @@ -171,7 +171,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle"), impl_name: create_runtime_str!("tangle"), authoring_version: 1, - spec_version: 1003, // v1.0.3 + spec_version: 1005, // v1.0.5 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, diff --git a/runtime/testnet/src/filters.rs b/runtime/testnet/src/filters.rs index 3e868cd2a..028238d34 100644 --- a/runtime/testnet/src/filters.rs +++ b/runtime/testnet/src/filters.rs @@ -32,15 +32,6 @@ impl Contains for TestnetCallFilter { return false; } - match call { - // Filter democracy proposals creation - RuntimeCall::Democracy(_) | - // disallow council - RuntimeCall::Council(_) => false, - - // al other calls are allowed - _ => true - - } + true } } diff --git a/runtime/testnet/src/lib.rs b/runtime/testnet/src/lib.rs index cdbef16f5..4214b166a 100644 --- a/runtime/testnet/src/lib.rs +++ b/runtime/testnet/src/lib.rs @@ -191,7 +191,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle-testnet"), impl_name: create_runtime_str!("tangle-testnet"), authoring_version: 1, - spec_version: 1003, // v1.0.3 + spec_version: 1005, // v1.0.5 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,