mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-15 18:10:26 +01:00
Merge #10286: Call wallet notify callbacks in scheduler thread (without cs_main)
89f0312Remove redundant pwallet nullptr check (Matt Corallo)c4784b5Add a dev notes document describing the new wallet RPC blocking (Matt Corallo)3ea8b75Give ZMQ consistent order with UpdatedBlockTip on scheduler thread (Matt Corallo)cb06edfFix wallet RPC race by waiting for callbacks in sendrawtransaction (Matt Corallo)e545dedAlso call other wallet notify callbacks in scheduler thread (Matt Corallo)17220d6Use callbacks to cache whether wallet transactions are in mempool (Matt Corallo)5d67a78Add calls to CWallet::BlockUntilSyncedToCurrentChain() in RPCs (Matt Corallo)5ee3172Add CWallet::BlockUntilSyncedToCurrentChain() (Matt Corallo)0b2f42dAdd CallFunctionInQueue to wait on validation interface queue drain (Matt Corallo)2b4b345Add ability to assert a lock is not held in DEBUG_LOCKORDER (Matt Corallo)0343676Call TransactionRemovedFromMempool in the CScheduler thread (Matt Corallo)a7d3936Add a CValidationInterface::TransactionRemovedFromMempool (Matt Corallo) Pull request description: Based on #10179, this effectively reverts #9583, regaining most of the original speedups of #7946. This concludes the work of #9725, #10178, and #10179. See individual commit messages for more information. Tree-SHA512: eead4809b0a75d1fb33b0765174ff52c972e45040635e38cf3686cef310859c1e6b3c00e7186cbd17374c6ae547bfbd6c1718fe36f26c76ba8a8b052d6ed7bc9
This commit is contained in:
@@ -261,6 +261,7 @@ void Shutdown()
|
||||
#endif
|
||||
UnregisterAllValidationInterfaces();
|
||||
GetMainSignals().UnregisterBackgroundSignalScheduler();
|
||||
GetMainSignals().UnregisterWithMempoolSignals(mempool);
|
||||
#ifdef ENABLE_WALLET
|
||||
CloseWallets();
|
||||
#endif
|
||||
@@ -1236,6 +1237,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
|
||||
threadGroup.create_thread(boost::bind(&TraceThread<CScheduler::Function>, "scheduler", serviceLoop));
|
||||
|
||||
GetMainSignals().RegisterBackgroundSignalScheduler(scheduler);
|
||||
GetMainSignals().RegisterWithMempoolSignals(mempool);
|
||||
|
||||
/* Start the RPC server already. It will be started in "warmup" mode
|
||||
* and not really process calls already (but it will signify connections
|
||||
|
||||
Reference in New Issue
Block a user