Skip to content

Commit 71407ca

Browse files
committed
Remove funded_account_for_raw_txn in favor of keyfile_account_address
1 parent 68e7e3b commit 71407ca

File tree

3 files changed

+0
-29
lines changed

3 files changed

+0
-29
lines changed

tests/integration/README.md

-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ They **must** all be *session* scoped.
77
- `math_contract`
88
- `keyfile_account_address`
99
- `keyfile_account_pkey`
10-
- `funded_account_for_raw_txn`
1110
- `math_contract_deploy_txn_hash`
1211
- `mined_txn_hash`
1312
- `emitter_contract`
@@ -43,11 +42,6 @@ The address of an account known and managed by the test fixture node.
4342

4443
The private key of an account known and managed by the test fixture node.
4544

46-
#### `funded_account_for_raw_txn`
47-
48-
An account which has not sent any transactions (nonce of 0) which has enough
49-
ether for sending a single transaction.
50-
5145
#### `math_contract_deploy_txn_hash`
5246

5347
The transaction hash used to deploy the `math_contract`.

tests/integration/go_ethereum/conftest.py

-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import zipfile
99

1010
from eth_utils import (
11-
is_checksum_address,
1211
is_dict,
1312
to_text,
1413
)
@@ -207,13 +206,6 @@ def keyfile_account_address_dual_type(keyfile_account_address, address_conversio
207206
yield keyfile_account_address
208207

209208

210-
@pytest.fixture(scope="module")
211-
def funded_account_for_raw_txn(geth_fixture_data):
212-
account = geth_fixture_data["raw_txn_account"]
213-
assert is_checksum_address(account)
214-
return account
215-
216-
217209
@pytest.fixture(scope="module")
218210
def empty_block(w3, geth_fixture_data):
219211
block = w3.eth.get_block(geth_fixture_data["empty_block_hash"])

tests/integration/test_ethereum_tester.py

-15
Original file line numberDiff line numberDiff line change
@@ -221,21 +221,6 @@ def keyfile_account_address_dual_type(keyfile_account_address, address_conversio
221221
yield keyfile_account_address
222222

223223

224-
@pytest.fixture(scope="module")
225-
def funded_account_for_raw_txn(w3):
226-
account = "0x39EEed73fb1D3855E90Cbd42f348b3D7b340aAA6"
227-
w3.eth.send_transaction(
228-
{
229-
"from": w3.eth.coinbase,
230-
"to": account,
231-
"value": w3.to_wei(10, "ether"),
232-
"gas": 21000,
233-
"gasPrice": w3.to_wei(1),
234-
}
235-
)
236-
return account
237-
238-
239224
class TestEthereumTesterWeb3Module(Web3ModuleTest):
240225
def _check_web3_client_version(self, client_version):
241226
assert client_version.startswith("EthereumTester/")

0 commit comments

Comments
 (0)