mirror of
https://github.com/FlipsideCrypto/web3.py.git
synced 2026-02-06 10:56:47 +00:00
12 lines
254 B
Python
12 lines
254 B
Python
def test_mining_property(web3_tester):
|
|
web3 = web3_tester
|
|
|
|
assert web3.eth.mining is False
|
|
|
|
|
|
def test_mining_property_ipc(web3_empty, wait_for_miner_start):
|
|
web3 = web3_empty
|
|
|
|
wait_for_miner_start(web3)
|
|
assert web3.eth.mining is True
|