Skip to content

Commit

Permalink
chore: handle ape breaking changes regarding receipt status check (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey authored Jan 3, 2022
1 parent 3f56c64 commit c3f2e60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ape_hardhat/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def send_transaction(self, txn: TransactionAPI) -> ReceiptAPI:
except ValueError as err:
raise _get_vm_error(err) from err

receipt.raise_for_status(txn)
receipt.raise_for_status()
return receipt


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
url="https://github.com/ApeWorX/ape-hardhat",
include_package_data=True,
install_requires=[
"eth-ape>=0.1.0b2",
"eth-ape>=0.1.0b3",
"importlib-metadata ; python_version<'3.8'",
], # NOTE: Add 3rd party libraries here
python_requires=">=3.7,<4",
Expand Down

0 comments on commit c3f2e60

Please sign in to comment.