mirror of
git://holbrook.no/eth-contract-registry
synced 2024-12-22 12:27:31 +01:00
Fix missing chain spec arg in pytest fixture
This commit is contained in:
parent
c4725d8a97
commit
0fb5f18671
@ -45,7 +45,7 @@ def registry(
|
|||||||
|
|
||||||
nonce_oracle = RPCNonceOracle(roles['CONTRACT_DEPLOYER'], eth_rpc)
|
nonce_oracle = RPCNonceOracle(roles['CONTRACT_DEPLOYER'], eth_rpc)
|
||||||
|
|
||||||
builder = Registry(signer=eth_signer, nonce_oracle=nonce_oracle)
|
builder = Registry(default_chain_spec, signer=eth_signer, nonce_oracle=nonce_oracle)
|
||||||
logg.info('registering identifiers {} in contract registry'.format(valid_identifiers))
|
logg.info('registering identifiers {} in contract registry'.format(valid_identifiers))
|
||||||
(tx_hash_hex, o) = builder.constructor(roles['CONTRACT_DEPLOYER'], valid_identifiers)
|
(tx_hash_hex, o) = builder.constructor(roles['CONTRACT_DEPLOYER'], valid_identifiers)
|
||||||
r = eth_rpc.do(o)
|
r = eth_rpc.do(o)
|
||||||
@ -56,7 +56,7 @@ def registry(
|
|||||||
|
|
||||||
registry_address = rcpt['contract_address']
|
registry_address = rcpt['contract_address']
|
||||||
|
|
||||||
c = Registry(signer=eth_signer, nonce_oracle=nonce_oracle)
|
c = Registry(default_chain_spec, signer=eth_signer, nonce_oracle=nonce_oracle)
|
||||||
|
|
||||||
chain_spec_identifier = to_identifier(str(default_chain_spec))
|
chain_spec_identifier = to_identifier(str(default_chain_spec))
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = eth-contract-registry
|
name = eth-contract-registry
|
||||||
version = 0.5.4a7
|
version = 0.5.4a8
|
||||||
description = Ethereum Smart Contract key-value registry
|
description = Ethereum Smart Contract key-value registry
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
|
Loading…
Reference in New Issue
Block a user