forked from Pon-node/Lpt-bond-transfer
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't working
Description
OrchestratorSiphon/lib/State.py
Lines 48 to 64 in 03fde7b
else: | |
# Else ignore keystore config - read all data from environment variables | |
keystores = os.getenv('SIPHON_KEYSTORES', "") | |
passwords = os.getenv('SIPHON_PASSWORDS', "") | |
source_adresses = os.getenv('SIPHON_SOURCES', "") | |
receiver_addresses_eth = os.getenv('SIPHON_TARGETS_ETH', "") | |
receiver_addresses_lpt = os.getenv('SIPHON_TARGETS_LPT', "") | |
for keystore, password, source_adress, receiver_address_eth, receiver_address_lpt in zip(keystores, passwords, source_adresses, receiver_addresses_eth, receiver_addresses_lpt): | |
KEYSTORE_CONFIGS.append( | |
OrchConf( | |
keystore, | |
password, | |
source_adress, | |
receiver_address_eth, | |
receiver_address_lpt | |
) | |
) |
Looks like this zip statement it incorrect
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working