mirror of https://github.com/nucypher/nucypher.git
commit
a560845bcd
|
@ -143,12 +143,12 @@ def bob(click_config,
|
|||
rpc_controller.start()
|
||||
return
|
||||
|
||||
click_config.emitter(message=f"Bob Verifying Key {bytes(BOB.stamp).hex()}", color='green', bold=True)
|
||||
click_config.emit(message=f"Bob Verifying Key {bytes(BOB.stamp).hex()}", color='green', bold=True)
|
||||
bob_encrypting_key = bytes(BOB.public_keys(DecryptingPower)).hex()
|
||||
click_config.emit(message=f"Bob Encrypting Key {bob_encrypting_key}", color="blue", bold=True)
|
||||
|
||||
# Start Controller
|
||||
controller = BOB.make_control_transport()
|
||||
controller = BOB.make_web_controller(crash_on_error=click_config.debug)
|
||||
BOB.log.info('Starting HTTP Character Web Controller')
|
||||
return controller.start(http_port=http_port, dry_run=dry_run)
|
||||
|
||||
|
|
Loading…
Reference in New Issue