Missed one "return false" in recent refactoring in #9067

Github-Pull: #9120
Rebased-From: 45d372f88900bda74835a20a44246746c2ac94e6
This commit is contained in:
UdjinM6
2016-11-10 00:53:55 +03:00
committed by lateminer
parent 4dc8b6acfd
commit 4039e1c019

View File

@@ -50,7 +50,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);