aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-tx.cpp
diff options
context:
space:
mode:
authorJorge Timón <jtimon@jtimon.cc>2016-10-13 22:38:10 +0200
committerJorge Timón <jtimon@jtimon.cc>2019-09-06 22:05:33 +0200
commit052c54ecb02695e5d2694e8e0cbf5ccc89de86e8 (patch)
tree6c6aaf45446fdf2e952facf3b87627f08add20f7 /src/bitcoin-tx.cpp
parentae3e3bd151f43dfa9e08bf592aafc6066bad258d (diff)
downloadbitcoin-052c54ecb02695e5d2694e8e0cbf5ccc89de86e8.tar.xz
Testchains: Generic selection with -chain=<str> in addition of -testnet and -regtest
Diffstat (limited to 'src/bitcoin-tx.cpp')
-rw-r--r--src/bitcoin-tx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp
index f4972c3cd4..88219f0d0f 100644
--- a/src/bitcoin-tx.cpp
+++ b/src/bitcoin-tx.cpp
@@ -88,7 +88,7 @@ static int AppInitRawTx(int argc, char* argv[])
return EXIT_FAILURE;
}
- // Check for -testnet or -regtest parameter (Params() calls are only valid after this clause)
+ // Check for -chain, -testnet or -regtest parameter (Params() calls are only valid after this clause)
try {
SelectParams(gArgs.GetChainName());
} catch (const std::exception& e) {