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
  • Loading branch information
UdjinM6 committed Nov 9, 2016
1 parent 924de0b commit 45d372f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitcoin-tx.cpp
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit 45d372f

Please sign in to comment.