Commit 8cd0b75 1 parent 858f989 commit 8cd0b75 Copy full SHA for 8cd0b75
File tree 3 files changed +4
-4
lines changed
tuxedo-parachain-runtime/src
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ use crate::{
18
18
19
19
fn load_spec ( id : & str ) -> std:: result:: Result < Box < dyn ChainSpec > , String > {
20
20
Ok ( match id {
21
- "dev" => Box :: new ( chain_spec:: development_config ( ) ) ,
22
- "template-rococo" => Box :: new ( chain_spec:: local_testnet_config ( ) ) ,
23
- "" | "local" => Box :: new ( chain_spec:: local_testnet_config ( ) ) ,
21
+ "dev" => Box :: new ( chain_spec:: development_config ( ) ? ) ,
22
+ "template-rococo" => Box :: new ( chain_spec:: local_testnet_config ( ) ? ) ,
23
+ "" | "local" => Box :: new ( chain_spec:: local_testnet_config ( ) ? ) ,
24
24
path => Box :: new ( chain_spec:: ChainSpec :: from_json_file (
25
25
std:: path:: PathBuf :: from ( path) ,
26
26
) ?) ,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ pub use super::WASM_BINARY;
5
5
6
6
use super :: { ParachainConstraintChecker , Transaction } ;
7
7
use hex_literal:: hex;
8
+ use sp_std:: { vec, vec:: Vec } ;
8
9
use inner_runtime:: { money:: Coin , OuterConstraintChecker as InnerConstraintChecker } ;
9
10
use tuxedo_parachain_core:: tuxedo_core:: {
10
11
verifier:: { Sr25519Signature , ThresholdMultiSignature } ,
Original file line number Diff line number Diff line change 6
6
#[ cfg( feature = "std" ) ]
7
7
include ! ( concat!( env!( "OUT_DIR" ) , "/wasm_binary.rs" ) ) ;
8
8
9
- #[ cfg( feature = "std" ) ]
10
9
pub mod genesis;
11
10
12
11
use parity_scale_codec:: { Decode , Encode } ;
You can’t perform that action at this time.
0 commit comments