mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Bugfix: clusterize_confiles.py was using all keypairs in keypairs.py to make keyring
This commit is contained in:
parent
c712447509
commit
4e89d491b1
@ -67,7 +67,7 @@ if use_keypairs:
|
||||
# Make a list containing all the public keys
|
||||
if use_keypairs:
|
||||
print('Using keypairs from keypairs.py')
|
||||
pubkeys = [keypair[1] for keypair in keypairs_list]
|
||||
pubkeys = [keypair[1] for keypair in keypairs_list[:num_files]]
|
||||
else:
|
||||
# read the pubkeys from the config files in conf_dir
|
||||
pubkeys = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user