Change network reference to include multiple target code points

This commit is contained in:
nolash
2021-10-09 21:45:07 +02:00
parent 388c676d11
commit cd2d603164
5 changed files with 26 additions and 9 deletions

View File

@@ -1,16 +1,18 @@
# standard imports
import logging
# external imports
from chainlib.eth.connection import RPCConnection
logg = logging.getLogger(__name__)
class CICEth:
def __init__(self, reference, proofs):
def __init__(self, reference, proofs, signer_hint=None):
self.reference = reference
self.proofs = proofs
logg.debug('eth strup with reference {} proofs {}'.format(reference, proofs))
def new(reference, proofs):
return CICEth(reference, proofs)
def new(reference, proofs, signer_hint=None):
return CICEth(reference, proofs, signer_hint=None)