diff --git a/electrum/gui/qml/components/main.qml b/electrum/gui/qml/components/main.qml index 9505a8914..ae5b59150 100644 --- a/electrum/gui/qml/components/main.qml +++ b/electrum/gui/qml/components/main.qml @@ -513,7 +513,7 @@ ApplicationWindow // no PIN configured qtobject.authProceed() } else { - if (Date.now() - _lastCorrectPinTime > _pinValidSeconds * 1000) { + if (Date.now() - _lastCorrectPinTime <= _pinValidSeconds * 1000) { // correct pin entered recently, accept. qtobject.authProceed() return