Skip to content

Commit dfbd92f

Browse files
committed
wallet: Write best block record on unload
1 parent 519c0a2 commit dfbd92f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/wallet/wallet.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ bool RemoveWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet
164164

165165
interfaces::Chain& chain = wallet->chain();
166166
std::string name = wallet->GetName();
167+
wallet->WriteBestBlock();
167168

168169
// Unregister with the validation interface which also drops shared pointers.
169170
wallet->m_chain_notifications_handler.reset();
@@ -4708,4 +4709,13 @@ std::optional<CKey> CWallet::GetKey(const CKeyID& keyid) const
47084709
}
47094710
return std::nullopt;
47104711
}
4712+
4713+
void CWallet::WriteBestBlock() const
4714+
{
4715+
LOCK(cs_wallet);
4716+
if (!m_best_block.IsNull()) {
4717+
WalletBatch batch(GetDatabase());
4718+
batch.WriteBestBlock(m_best_block);
4719+
}
4720+
}
47114721
} // namespace wallet

src/wallet/wallet.h

+2
Original file line numberDiff line numberDiff line change
@@ -1027,6 +1027,8 @@ class CWallet final : public WalletStorage, public interfaces::Chain::Notificati
10271027
/** Set last block processed height, and write to database */
10281028
void SetBestBlock(int block_height, uint256 block_hash) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet);
10291029
void LoadBestBlock(const BestBlock& best_block) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet);
1030+
/** Write the current best block to database */
1031+
void WriteBestBlock() const;
10301032

10311033
//! Connect the signals from ScriptPubKeyMans to the signals in CWallet
10321034
void ConnectScriptPubKeyManNotifiers();

0 commit comments

Comments
 (0)