Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Dec 19, 2023
1 parent 764ef0d commit d7d3198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graphsenselib/ingest/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ def export_hash_to_type_mappings(self, transactions: Iterable) -> Dict:
channel = grpc.insecure_channel(grpc_endpoint)
wallet_stub = WalletStub(channel)

def getTransactionById(hash):
msg = BytesMessage(value=bytes.fromhex(hash[2:]))
def getTransactionById(tx_hash):
msg = BytesMessage(value=bytes.fromhex(tx_hash[2:]))
info = wallet_stub.GetTransactionById(msg)
return info

Expand Down

0 comments on commit d7d3198

Please sign in to comment.