|
|
@ -1713,11 +1713,8 @@ void CWallet::ReacceptWalletTransactions() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Try to add wallet transactions to memory pool
|
|
|
|
// Try to add wallet transactions to memory pool
|
|
|
|
for (std::pair<const int64_t, CWalletTx*>& item : mapSorted) |
|
|
|
for (std::pair<const int64_t, CWalletTx*>& item : mapSorted) { |
|
|
|
{ |
|
|
|
|
|
|
|
CWalletTx& wtx = *(item.second); |
|
|
|
CWalletTx& wtx = *(item.second); |
|
|
|
|
|
|
|
|
|
|
|
LOCK(mempool.cs); |
|
|
|
|
|
|
|
CValidationState state; |
|
|
|
CValidationState state; |
|
|
|
wtx.AcceptToMemoryPool(maxTxFee, state); |
|
|
|
wtx.AcceptToMemoryPool(maxTxFee, state); |
|
|
|
} |
|
|
|
} |
|
|
|