fix: Update topup search to not need memo message
All checks were successful
Build Docker / BuildImage (push) Successful in 38s

This commit is contained in:
Nathan Woodburn 2024-12-05 20:52:19 +11:00
parent 2734cddbde
commit 1c2cb23b15
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -453,9 +453,9 @@ def parseDeposit(data):
if 'tokenTransfers' not in tx:
continue
# Search for string (TOPUP)
if 'TOPUP' in json.dumps(tx):
print("TOPUP: Skipping deposit")
# Skip memo txs
if 'Memo' in json.dumps(tx):
print("Skipping deposit as it contains memo")
print(json.dumps(tx, indent=4))
continue