Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Fixed formatting in TransactionScout.
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoff Taylor committed Mar 16, 2022
1 parent bb8c9b2 commit 39a1ccd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mango/transactionscout.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ def format_tokens(
instruction_names = ", ".join(
[ins.instruction_type.name for ins in self.instructions]
)
signatures = indent_item_by(indent_collection_as_str(self.signatures), 1)
accounts = indent_item_by(indent_collection_as_str(self.accounts), 1)
messages = indent_item_by(indent_collection_as_str(self.messages), 1)
instructions = indent_item_by(indent_collection_as_str(self.instructions), 1)
signatures = indent_item_by(indent_collection_as_str(self.signatures), 2)
accounts = indent_item_by(indent_collection_as_str(self.accounts), 2)
messages = indent_item_by(indent_collection_as_str(self.messages), 2)
instructions = indent_item_by(indent_collection_as_str(self.instructions), 2)
changes = OwnedInstrumentValue.changes(
self.pre_token_balances, self.post_token_balances
)
Expand Down

0 comments on commit 39a1ccd

Please sign in to comment.