Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/qt/sendcoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,10 @@ void SendCoinsDialog::updateCoinControlState()
}

void SendCoinsDialog::updateNumberOfBlocks(int count, const QDateTime& blockDate, double nVerificationProgress, SyncType synctype, SynchronizationState sync_state) {
// During shutdown, clientModel will be nullptr. Attempting to update views at this point may cause a crash
// due to accessing backend models that might no longer exist.
if (!clientModel) return;
// Process event
if (sync_state == SynchronizationState::POST_INIT) {
updateSmartFeeLabel();
}
Expand Down
Loading