Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions newsfragments/2320.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update eth-tester and eth-account dependencies to pull in bugfix from eth-keys
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

extras_require = {
'tester': [
"eth-tester[py-evm]==v0.6.0-beta.4",
"eth-tester[py-evm]==v0.6.0-beta.6",
"py-geth>=3.7.0,<4",
],
'linter': [
Expand Down Expand Up @@ -77,7 +77,7 @@
install_requires=[
"aiohttp>=3.7.4.post0,<4",
"eth-abi>=2.0.0b6,<3.0.0",
"eth-account>=0.5.6,<0.6.0",
"eth-account>=0.5.7,<0.6.0",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
"eth-typing>=2.0.0,<3.0.0",
"eth-utils>=1.9.5,<2.0.0",
Expand Down
14 changes: 0 additions & 14 deletions tests/integration/test_ethereum_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,20 +415,6 @@ def test_eth_chainId(self, web3):
assert is_integer(chain_id)
assert chain_id == 61

@pytest.mark.xfail(raises=KeyError, reason="ethereum tester doesn't return 'to' key")
def test_eth_get_transaction_receipt_mined(self, web3, block_with_txn, mined_txn_hash):
super().test_eth_get_transaction_receipt_mined(web3, block_with_txn, mined_txn_hash)

@pytest.mark.xfail(raises=KeyError, reason="ethereum tester doesn't return 'to' key")
def test_eth_getTransactionReceipt_mined_deprecated(self, web3, block_with_txn, mined_txn_hash):
super().test_eth_getTransactionReceipt_mined_deprecated(web3,
block_with_txn,
mined_txn_hash)

@pytest.mark.xfail(raises=KeyError, reason="ethereum tester doesn't return 'to' key")
def test_eth_wait_for_transaction_receipt_mined(self, web3, block_with_txn, mined_txn_hash):
super().test_eth_wait_for_transaction_receipt_mined(web3, block_with_txn, mined_txn_hash)

@disable_auto_mine
def test_eth_wait_for_transaction_receipt_unmined(self,
eth_tester,
Expand Down