mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
Reduce cs_main locks during ConnectTip/SyncWithWallets
This commit is contained in:
@@ -48,6 +48,6 @@ void UnregisterAllValidationInterfaces() {
|
||||
g_signals.UpdatedBlockTip.disconnect_all_slots();
|
||||
}
|
||||
|
||||
void SyncWithWallets(const CTransaction &tx, const CBlockIndex *pindex, const CBlock *pblock) {
|
||||
g_signals.SyncTransaction(tx, pindex, pblock);
|
||||
void SyncWithWallets(const CTransaction &tx, const CBlockIndex *pindex, int posInBlock) {
|
||||
g_signals.SyncTransaction(tx, pindex, posInBlock);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user