diff --git a/src/cpp/ripple/LoadManager.cpp b/src/cpp/ripple/LoadManager.cpp index 1eaad6c6b..e604e052e 100644 --- a/src/cpp/ripple/LoadManager.cpp +++ b/src/cpp/ripple/LoadManager.cpp @@ -137,7 +137,7 @@ bool LoadManager::shouldWarn(LoadSource& source) const int now = upTime(); canonicalize(source, now); - if (source.isPrivileged() || (source.mBalance < mDebitWarn) || (source.mLastWarning == now)) + if (source.isPrivileged() || (source.mBalance > mDebitWarn) || (source.mLastWarning == now)) return false; source.mLastWarning = now;