Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
cecton committed Jan 18, 2020
1 parent 7dfecb1 commit 56111b0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true
[*]
indent_style=tab
indent_size=tab
tab_width=4
end_of_line=lf
charset=utf-8
trim_trailing_whitespace=true
max_line_length=100
insert_final_newline=true

[*.yml]
indent_style=space
indent_size=2
tab_width=8
end_of_line=lf
7 changes: 5 additions & 2 deletions test/parachain/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,11 @@ where
load_spec_polkadot,
config.in_chain_config_dir("polkadot"),
)
.map_err(|e| e.to_string())?
.expect("not a run command?");
.map_err(|e| e.to_string())?
.expect(
"can only fail when this is a CustomCommand. Running parse_and_prepare with \
NoCustom can never return a CustomCommand; therefore this will never fail; qed"
);
polkadot_config.network.boot_nodes = config.network.boot_nodes.clone();

match config.roles {
Expand Down

0 comments on commit 56111b0

Please sign in to comment.