Skip to content

Commit

Permalink
Merge pull request #257 from AurevoirXavier/icefrog
Browse files Browse the repository at this point in the history
IceFrog Runtime Upgrade
  • Loading branch information
hackfisher authored Feb 7, 2020
2 parents b0bd3af + 59f8d48 commit 3e7ae4e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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 node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-cli"
version = "0.4.6"
version = "0.4.7"
authors = ["Darwinia Network <[email protected]>"]
description = "Darwinia node implementation in Rust."
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("node"),
impl_name: create_runtime_str!("darwinia-node"),
authoring_version: 3,
spec_version: 83,
impl_version: 83,
spec_version: 84,
impl_version: 84,
apis: RUNTIME_API_VERSIONS,
};

Expand Down
2 changes: 1 addition & 1 deletion srml/staking/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ decl_module! {
#[weight = SimpleDispatchInfo::FreeOperational]
fn force_new_era(origin) {
ensure_root(origin)?;
ForceEra::put(Forcing::ForceNone);
ForceEra::put(Forcing::ForceNew);
}

/// Set the validators who cannot be slashed (if any).
Expand Down

0 comments on commit 3e7ae4e

Please sign in to comment.