Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kus committed Nov 4, 2021
1 parent 60fcd01 commit 6f7284d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pytezos/context/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def get_counter_offset(self) -> int:
key_hash = self.key.public_key_hash()
mempool = self.shell.mempool.pending_operations()

for operation in chain(mempool.get('applied', []), mempool.get('unprocessed', []):
for operation in chain(mempool.get('applied', []), mempool.get('unprocessed', [])):
if isinstance(operation, list):
operation = operation[1]
for content in operation.get('contents', []):
Expand Down

0 comments on commit 6f7284d

Please sign in to comment.