Skip to content

Commit

Permalink
v1.1.4 Commit, minor hotfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gabedonnan committed Oct 10, 2023
1 parent dfde7a0 commit 48a25f1
Show file tree
Hide file tree
Showing 5 changed files with 319 additions and 292 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ pythereum = {git = "https://github.com/gabedonnan/pythereum.git"}
or

```toml
pythereum = "^1.1.3"
pythereum = "^1.1.4"
```

If you would like to install the library via pypi instead of via this git repository.
Expand Down
5 changes: 3 additions & 2 deletions demo/listen_blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ async def listen_blocks(url):

# Iterates through the transactions found in retrieved data
for tx in block.transactions:
print(tx)
# Gets and prints the receipts for each transaction
r = await erpc.get_transaction_receipt(tx.hash)
print(r)
# r = await erpc.get_transaction_receipt(tx.hash)
# print(r)
await erpc.close_pool()


Expand Down
Loading

0 comments on commit 48a25f1

Please sign in to comment.