mirror of https://github.com/nucypher/nucypher.git
Instead of a NamedEmptyTuple.
https://cdn.discordapp.com/attachments/426074843528560644/506600556949798923/IMG_20181029_234909.jpgpull/496/head
parent
16f2de9ce1
commit
64cb2ee230
|
@ -1211,11 +1211,11 @@ def ursula(config,
|
|||
if trusted_teacher_uri:
|
||||
address, rest_uri = trusted_teacher_uri.split("@")
|
||||
host, port = rest_uri.split(":")
|
||||
seed_metadata = SeednodeMetadata(address, host, port) # TODO: Ensure seed injection works
|
||||
seed_metadata = [SeednodeMetadata(address, host, port)] # TODO: Ensure seed injection works
|
||||
else:
|
||||
seed_metadata = ()
|
||||
|
||||
URSULA = ursula_config.produce(passphrase=password, seed_nodes=[seed_metadata], **overrides) # 2
|
||||
URSULA = ursula_config.produce(passphrase=password, seed_nodes=seed_metadata, **overrides) # 2
|
||||
|
||||
click.secho("Initialized Ursula {}".format(URSULA.checksum_public_address), fg='green')
|
||||
|
||||
|
|
Loading…
Reference in New Issue