Skip to content

Commit

Permalink
everything checks
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshOrndorff committed Apr 16, 2024
1 parent 858f989 commit 8cd0b75
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions parachain-node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ use crate::{

fn load_spec(id: &str) -> std::result::Result<Box<dyn ChainSpec>, String> {
Ok(match id {
"dev" => Box::new(chain_spec::development_config()),
"template-rococo" => Box::new(chain_spec::local_testnet_config()),
"" | "local" => Box::new(chain_spec::local_testnet_config()),
"dev" => Box::new(chain_spec::development_config()?),
"template-rococo" => Box::new(chain_spec::local_testnet_config()?),
"" | "local" => Box::new(chain_spec::local_testnet_config()?),
path => Box::new(chain_spec::ChainSpec::from_json_file(
std::path::PathBuf::from(path),
)?),
Expand Down
1 change: 1 addition & 0 deletions tuxedo-parachain-runtime/src/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pub use super::WASM_BINARY;

use super::{ParachainConstraintChecker, Transaction};
use hex_literal::hex;
use sp_std::{vec, vec::Vec};
use inner_runtime::{money::Coin, OuterConstraintChecker as InnerConstraintChecker};
use tuxedo_parachain_core::tuxedo_core::{
verifier::{Sr25519Signature, ThresholdMultiSignature},
Expand Down
1 change: 0 additions & 1 deletion tuxedo-parachain-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

#[cfg(feature = "std")]
pub mod genesis;

use parity_scale_codec::{Decode, Encode};
Expand Down

0 comments on commit 8cd0b75

Please sign in to comment.