From fda2e14b99bba7e8ff4cf0f7434e1f5e8b130205 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Mon, 1 Feb 2016 17:39:04 -0500 Subject: [PATCH] Change datadir short option to -b. Fixes #339. --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index b61388205..20c31d8a7 100644 --- a/config.go +++ b/config.go @@ -62,7 +62,7 @@ type config struct { ShowVersion bool `short:"V" long:"version" description:"Display version information and exit"` Create bool `long:"create" description:"Create the wallet if it does not exist"` CreateTemp bool `long:"createtemp" description:"Create a temporary simulation wallet (pass=password) in the data directory indicated; must call with --datadir"` - DataDir string `short:"D" long:"datadir" description:"Directory to store wallets and transactions"` + DataDir string `short:"b" long:"datadir" description:"Directory to store wallets and transactions"` MainNet bool `long:"mainnet" description:"Use the main Bitcoin network (default testnet3)"` SimNet bool `long:"simnet" description:"Use the simulation test network (default testnet3)"` NoInitialLoad bool `long:"noinitialload" description:"Defer wallet creation/opening on startup and enable loading wallets over RPC"`