WalletTool: Remove unused command line argument.

This commit is contained in:
Andreas Schildbach 2021-02-11 16:13:42 +01:00
parent 719917b29e
commit 813d2576f2

View file

@ -246,7 +246,6 @@ public class WalletTool {
parser.accepts("peers").withRequiredArg();
xpubkeysFlag = parser.accepts("xpubkeys").withRequiredArg();
OptionSpec<String> outputFlag = parser.accepts("output").withRequiredArg();
parser.accepts("value").withRequiredArg();
OptionSpec<String> feePerVkbOption = parser.accepts("fee-per-vkb").withRequiredArg();
OptionSpec<String> feeSatPerVbyteOption = parser.accepts("fee-sat-per-vbyte").withRequiredArg();
unixtimeFlag = parser.accepts("unixtime").withRequiredArg().ofType(Long.class);