Add Owned, EIP165

This commit is contained in:
nolash
2021-04-30 11:36:56 +02:00
parent 6432eeb6d3
commit e4e1efa1a8
7 changed files with 56 additions and 14 deletions

View File

@@ -44,7 +44,7 @@ class Test(EthTesterCase):
def setUp(self):
super(Test, self).setUp()
nonce_oracle = TestNonceOracle(self.accounts[0])
self.o = AccountRegistry(signer=self.signer, nonce_oracle=nonce_oracle)
self.o = AccountRegistry(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
(tx_hash, o) = self.o.constructor(self.accounts[0])
self.conn = RPCConnection.connect(self.chain_spec, 'default')
r = self.conn.do(o)