diff --git a/Cargo.lock b/Cargo.lock index f37e9757a5..e130132e51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -142,7 +142,7 @@ dependencies = [ [[package]] name = "aleph-node" -version = "0.7.0" +version = "0.7.1" dependencies = [ "aleph-runtime", "clap", diff --git a/bin/node/Cargo.toml b/bin/node/Cargo.toml index c742f1f029..4d09657cea 100644 --- a/bin/node/Cargo.toml +++ b/bin/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aleph-node" -version = "0.7.0" +version = "0.7.1" authors = ["Cardinal Cryptography"] description = "Aleph node binary" edition = "2021" diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index 93493d5d9e..8d93edd797 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -15,10 +15,7 @@ use sp_std::vec::Vec; pub const KEY_TYPE: KeyTypeId = KeyTypeId(*b"alp0"); -// Same as GRANDPA_ENGINE_ID because as of right now substrate sends only -// grandpa justifications over the network. -// TODO: change this once https://github.com/paritytech/substrate/issues/8172 will be resolved. -pub const ALEPH_ENGINE_ID: ConsensusEngineId = *b"FRNK"; +pub const ALEPH_ENGINE_ID: ConsensusEngineId = *b"ALPH"; mod app { use sp_application_crypto::{app_crypto, ed25519};