diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -859,7 +859,9 @@ try { int ret = AppInitRawTx(argc, argv); - if (ret != CONTINUE_EXECUTION) return ret; + if (ret != CONTINUE_EXECUTION) { + return ret; + } } catch (const std::exception &e) { PrintExceptionContinue(&e, "AppInitRawTx()"); return EXIT_FAILURE;