Skip to content

Commit

Permalink
Release testnet v1.0.5 (#666)
Browse files Browse the repository at this point in the history
* release v0.6.7

* release v1.0.5

* update filters

* clippy
  • Loading branch information
1xstj authored May 31, 2024
1 parent 57400a8 commit 48b3e2c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.0.3"
version = "1.0.5"
authors = ["Webb Technologies Inc."]
edition = "2021"
license = "Unlicense"
Expand Down
2 changes: 1 addition & 1 deletion runtime/mainnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
11 changes: 1 addition & 10 deletions runtime/testnet/src/filters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,6 @@ impl Contains<RuntimeCall> for TestnetCallFilter {
return false;
}

match call {
// Filter democracy proposals creation
RuntimeCall::Democracy(_) |
// disallow council
RuntimeCall::Council(_) => false,

// al other calls are allowed
_ => true

}
true
}
}
2 changes: 1 addition & 1 deletion runtime/testnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 48b3e2c

Please sign in to comment.