fix purge-chain cli option (#1164)

This commit is contained in:
Svyatoslav Nikolsky
2018-11-26 12:58:09 +03:00
committed by Gav Wood
parent 2e41e9e870
commit 675c3b0500
+1 -1
View File
@@ -358,7 +358,7 @@ where
return Ok(Action::ExecutedInternally);
}
if let Some(matches) = matches.subcommand_matches("purge_chain") {
if let Some(matches) = matches.subcommand_matches("purge-chain") {
purge_chain::<F>(matches, spec)?;
return Ok(Action::ExecutedInternally);
}