aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorUdjinM6 <UdjinM6@dash.org>2016-11-10 00:53:55 +0300
committerLuke Dashjr <luke-jr+git@utopios.org>2016-12-02 07:41:11 +0000
commit08d1c90113efb51d4fb2fcea36171181a66aea36 (patch)
tree90398a5c10b6903664cb89576b412eef93613247 /src
parentf27596a7ec3c625c3b0f25d66fc1bc804c250e7f (diff)
downloadbitcoin-08d1c90113efb51d4fb2fcea36171181a66aea36.tar.xz
Missed one "return false" in recent refactoring in #9067
Github-Pull: #9120 Rebased-From: 45d372f88900bda74835a20a44246746c2ac94e6
Diffstat (limited to 'src')
-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 384eae9632..c5ae33da88 100644
--- a/src/bitcoin-tx.cpp
+++ b/src/bitcoin-tx.cpp
@@ -48,7 +48,7 @@ static int AppInitRawTx(int argc, char* argv[])
SelectParams(ChainNameFromCommandLine());
} catch (const std::exception& e) {
fprintf(stderr, "Error: %s\n", e.what());
- return false;
+ return EXIT_FAILURE;
}
fCreateBlank = GetBoolArg("-create", false);