diff options
| author | Matt Corallo <[email protected]> | 2017-12-05 10:39:44 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-12-05 10:39:44 -0500 |
| commit | 07c483895d219d4c44bd8fec5167a53f4701c364 (patch) | |
| tree | caff3d8e538aa88bf7419e704c9af6235c33a1b6 /src/init.cpp | |
| parent | Merge #11556: [Qt] Improved copy for RBF checkbox and tooltip (diff) | |
| download | discoin-07c483895d219d4c44bd8fec5167a53f4701c364.tar.xz discoin-07c483895d219d4c44bd8fec5167a53f4701c364.zip | |
Always return true if AppInitMain got to the end
This should fix a very rare travis failure in zapwallettxes, but
is also more correct, as you can currently race
ReacceptWalletTransactions with stop RPC calls to get bitcoind to
(IMO) eroneously return a non-0 exit code.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 871a58526..ae6099903 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1726,5 +1726,5 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler) StartWallets(scheduler); #endif - return !fRequestShutdown; + return true; } |