Skip to content

Commit 45d372f

Browse files
committed
Missed one "return false" in recent refactoring in #9067
1 parent 924de0b commit 45d372f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitcoin-tx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ static int AppInitRawTx(int argc, char* argv[])
4848
SelectParams(ChainNameFromCommandLine());
4949
} catch (const std::exception& e) {
5050
fprintf(stderr, "Error: %s\n", e.what());
51-
return false;
51+
return EXIT_FAILURE;
5252
}
5353

5454
fCreateBlank = GetBoolArg("-create", false);

0 commit comments

Comments
 (0)