Skip to content

Commit

Permalink
Enable balance transfers (#386)
Browse files Browse the repository at this point in the history
* Enable balance transfers

* Bump version
  • Loading branch information
akru authored Aug 27, 2021
1 parent 480a0c4 commit 53fb4fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/collator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astar-collator"
version = "2.4.0"
version = "2.4.1"
authors = ["Stake Technologies <devops@stake.co.jp>"]
description = "Astar collator implementation in Rust."
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/shiden/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shiden-runtime"
version = "2.4.0"
version = "2.4.1"
authors = ["Stake Technologies <devops@stake.co.jp>"]
edition = "2018"
build = "build.rs"
Expand Down
3 changes: 1 addition & 2 deletions runtime/shiden/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("shiden"),
impl_name: create_runtime_str!("shiden"),
authoring_version: 1,
spec_version: 7,
spec_version: 8,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -146,7 +146,6 @@ impl Contains<Call> for BaseFilter {
fn contains(call: &Call) -> bool {
match call {
// These modules are not allowed to be called by transactions:
Call::Balances(_) => false,
// To leave collator just shutdown it, next session funds will be released
Call::CollatorSelection(pallet_collator_selection::Call::leave_intent(..)) => false,
// Other modules should works:
Expand Down

0 comments on commit 53fb4fb

Please sign in to comment.