Skip to content

Commit

Permalink
chore: fmt (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Apr 8, 2024
1 parent ec20a96 commit 244bb8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/accountant/sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ def main():
'log index': tx.log_index,
'from': tx._from_nickname if tx._from_nickname else tx.from_address.address,
'to': tx._to_nickname if tx._to_nickname else tx.to_address.address if tx.to_address else None,
'amount': round(tx.amount,6),
'amount': round(tx.amount, 6),
'hash':tx.hash,
'token': tx.token.symbol,
'value_usd': round(tx.value_usd,2) if tx.value_usd else None,
'value_usd': round(tx.value_usd, 2) if tx.value_usd else None,
} for tx in tqdm(txs)
])

Expand Down

0 comments on commit 244bb8f

Please sign in to comment.