| 850 | } |
| 851 | |
| 852 | void CWallet::MarkDirty() |
| 853 | { |
| 854 | { |
| 855 | LOCK(cs_wallet); |
| 856 | for (std::pair<const uint256, CWalletTx>& item : mapWallet) |
| 857 | item.second.MarkDirty(*this); |
| 858 | } |
| 859 | } |
| 860 | |
| 861 | bool CWallet::MarkReplaced(const uint256& originalHash, const uint256& newHash) |
| 862 | { |
no outgoing calls