mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
Missed one "return false" in recent refactoring in #9067
This commit is contained in:
parent
924de0bd75
commit
45d372f889
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue