Skip to content

Commit

Permalink
[node] fix build after upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Jun 26, 2024
1 parent 8b46775 commit ae63e46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/src/chain_spec.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use encointer_node_notee_runtime::{
AccountId, BalanceType, CeremonyPhaseType, RuntimeGenesisConfig, Signature, WASM_BINARY,
AccountId, BalanceType, CeremonyPhaseType, Signature, WASM_BINARY,
};
use sc_service::{ChainType, Properties};
use sp_consensus_aura::sr25519::AuthorityId as AuraId;
Expand All @@ -10,7 +10,7 @@ use sp_runtime::traits::{IdentifyAccount, Verify};
// const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/";

/// Specialized `ChainSpec`. This is a specialization of the general Substrate ChainSpec type.
pub type ChainSpec = sc_service::GenericChainSpec<RuntimeGenesisConfig>;
pub type ChainSpec = sc_service::GenericChainSpec;

/// Generate a crypto pair from seed.
pub fn get_from_seed<TPublic: Public>(seed: &str) -> <TPublic::Pair as Pair>::Public {
Expand Down

0 comments on commit ae63e46

Please sign in to comment.