Minor fixes to solana-tokens (#10057)

automerge
This commit is contained in:
Greg Fitzgerald
2020-05-14 22:23:35 -06:00
committed by GitHub
parent eb1acaf927
commit adcd2f14a5
2 changed files with 8 additions and 3 deletions

View File

@@ -267,7 +267,7 @@ fn parse_balances_args(matches: &ArgMatches<'_>) -> BalancesArgs {
fn parse_transaction_log_args(matches: &ArgMatches<'_>) -> TransactionLogArgs {
TransactionLogArgs {
transaction_db: value_t_or_exit!(matches, "transaction_db", String),
transaction_db: create_db_path(value_t!(matches, "campaign_name", String).ok()),
output_path: value_t_or_exit!(matches, "output_path", String),
}
}