We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cff29e commit 230e078Copy full SHA for 230e078
safe_transaction_service/history/services/transaction_service.py
@@ -628,13 +628,9 @@ def get_export_transactions(
628
).values("transaction_hash", "_log_index", "_trace_address")
629
630
total_count = (
631
- ether_transfers.union(erc20_transfers, all=True)
632
- .union(erc721_transfers, all=True)
633
- .count()
+ ether_transfers.count() + erc20_transfers.count() + erc721_transfers.count()
634
)
635
-
636
with connection.cursor() as cursor:
637
638
# Get the data
639
cursor.execute(main_query, main_params)
640
columns = [col[0] for col in cursor.description]
0 commit comments