| 3292 | } |
| 3293 | |
| 3294 | void CWallet::postInitProcess() |
| 3295 | { |
| 3296 | LOCK(cs_wallet); |
| 3297 | |
| 3298 | // Add wallet transactions that aren't already in a block to mempool |
| 3299 | // Do this here as mempool requires genesis block to be loaded |
| 3300 | ReacceptWalletTransactions(); |
| 3301 | |
| 3302 | // Update wallet transactions with current mempool transactions. |
| 3303 | chain().requestMempoolTransactions(*this); |
| 3304 | } |
| 3305 | |
| 3306 | bool CWallet::BackupWallet(const std::string& strDest) const |
| 3307 | { |