mirror of https://github.com/nucypher/nucypher.git
test touch-up.
parent
4369c0dd96
commit
6326340151
|
@ -15,7 +15,7 @@ def test_geth_EIP_191_client_signature_integration(geth_dev_node):
|
|||
pytest.skip("Do not run Geth nodes in CI")
|
||||
|
||||
# Start a geth process
|
||||
blockchain = BlockchainInterface(provider_process=geth_dev_node, sync_now=False)
|
||||
blockchain = BlockchainInterface(provider_process=geth_dev_node)
|
||||
blockchain.connect(fetch_registry=False, sync_now=False)
|
||||
|
||||
# Sign a message (RPC) and verify it.
|
||||
|
|
|
@ -88,7 +88,7 @@ def test_transacting_power_sign_transaction(testerchain):
|
|||
# Try signing with missing transaction fields
|
||||
del transaction_dict['gas']
|
||||
del transaction_dict['nonce']
|
||||
with pytest.raises(TransactingPower.InvalidSigningRequest):
|
||||
with pytest.raises(TypeError):
|
||||
power.sign_transaction(unsigned_transaction=transaction_dict)
|
||||
|
||||
# Try signing with a re-locked account.
|
||||
|
|
Loading…
Reference in New Issue