Skip to content

Commit

Permalink
Missed one "return false" in recent refactoring in #9067
Browse files Browse the repository at this point in the history
Github-Pull: #9120
Rebased-From: 45d372f
  • Loading branch information
UdjinM6 authored and luke-jr committed Dec 2, 2016
1 parent f27596a commit 08d1c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitcoin-tx.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 08d1c90

Please sign in to comment.