Skip to content

Commit

Permalink
bug fix in bitdust/supplier/storage_contract.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vesellov committed Apr 28, 2024
1 parent 9bc8db8 commit 4c0a5ed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bitdust/supplier/storage_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,11 @@ def accept_storage_payments():
if tx['recipient'] != bismuth_wallet.my_wallet_address():
continue
try:
customer_prefix, started, complete_after = tx['openfield'].split(' ')
customer_prefix, sequence_numbers = tx['openfield'].split(' ')
except:
continue
try:
sequence_numbers = map(int, sequence_numbers.split(','))
except:
lg.exc()
continue
Expand Down

0 comments on commit 4c0a5ed

Please sign in to comment.