Skip to content

Commit a8fb825

Browse files
committed
Use fEnablePrivateSend instead of fPrivateSendRunning
Required due missing refactorings.
1 parent a198a04 commit a8fb825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/bitcoingui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ void BitcoinGUI::setNumBlocks(int count, const QDateTime& blockDate, double nVer
960960
// Disabling macOS App Nap on initial sync, disk, reindex operations and mixing.
961961
bool disableAppNap = !masternodeSync.IsSynced();
962962
#ifdef ENABLE_WALLET
963-
disableAppNap |= privateSendClient.fPrivateSendRunning;
963+
disableAppNap |= privateSendClient.fEnablePrivateSend;
964964
#endif // ENABLE_WALLET
965965
if (disableAppNap) {
966966
m_app_nap_inhibitor->disableAppNap();

0 commit comments

Comments
 (0)