mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Do not hide empty privkeys
This commit is contained in:
parent
2a0598e9f1
commit
a56aa992fa
@ -27,7 +27,8 @@ def run_show_config(args):
|
||||
# the system needs to be configured, then display information on how to
|
||||
# configure the system.
|
||||
bigchaindb.config_utils.autoconfigure(filename=args.config, force=True)
|
||||
bigchaindb.config['keypair']['private'] = 'x' * 45
|
||||
private_key = bigchaindb.config['keypair']['private']
|
||||
bigchaindb.config['keypair']['private'] = 'x' * 45 if private_key else None
|
||||
pprint(bigchaindb.config)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user