diff options
author | UdjinM6 <UdjinM6@dash.org> | 2016-11-10 00:53:55 +0300 |
---|---|---|
committer | UdjinM6 <UdjinM6@dash.org> | 2016-11-10 00:53:55 +0300 |
commit | 45d372f88900bda74835a20a44246746c2ac94e6 (patch) | |
tree | 1ab80909f169fc7cae624e40f5cd98269233cf8c /src | |
parent | 924de0bd75a7f75df65d7d15f9d1587a2e794abf (diff) |
Missed one "return false" in recent refactoring in #9067
Diffstat (limited to 'src')
-rw-r--r-- | src/bitcoin-tx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index ecc19c44ad..6c66efcc9c 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); |