Skip to content

Commit

Permalink
outgoing txs
Browse files Browse the repository at this point in the history
  • Loading branch information
spotty-banana committed Oct 14, 2013
1 parent 0fb1732 commit e3b6f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_bitcoin/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def process_outgoing_transactions():
OutgoingTransaction.objects.filter(executed_at=None).count()>6:
with NonBlockingCacheLock('process_outgoing_transactions'):
ots = OutgoingTransaction.objects.filter(executed_at=None).order_by("expires_at")[:15]
ots_ids = filter_doubles(outgoing_list)
ots_ids = filter_doubles(ots)
update_wallets = []
transaction_hash = {}
for ot in ots:
Expand Down

0 comments on commit e3b6f74

Please sign in to comment.