Don't check for lock start date

This commit is contained in:
Matthias 2020-10-17 19:41:58 +02:00
parent cd2866eaec
commit 0daf77f313
1 changed files with 1 additions and 3 deletions

View File

@ -706,8 +706,7 @@ class PairLock(_DECL_BASE):
if not now:
now = datetime.now(timezone.utc)
filters = [func.datetime(PairLock.lock_time) <= now,
func.datetime(PairLock.lock_end_time) >= now,
filters = [func.datetime(PairLock.lock_end_time) >= now,
# Only active locks
PairLock.active.is_(True), ]
if pair:
@ -742,7 +741,6 @@ class PairLock(_DECL_BASE):
return PairLock.query.filter(
PairLock.pair == pair,
func.datetime(PairLock.lock_time) <= now,
func.datetime(PairLock.lock_end_time) >= now,
# Only active locks
PairLock.active.is_(True),