overide env variables
This commit is contained in:
parent
2055038c80
commit
e239e73cd5
6
parse.py
6
parse.py
@ -65,7 +65,7 @@ def t_error(t):
|
||||
lexer = lex.lex()
|
||||
|
||||
|
||||
load_dotenv()
|
||||
load_dotenv(override=True)
|
||||
|
||||
# Chain Params
|
||||
chainId = os.getenv("CHAIN_ID", "44787")
|
||||
@ -783,12 +783,10 @@ def voucher_mint_handler(cmd):
|
||||
|
||||
voucher_symbols = list(map(lambda symbol: symbol["symbol"], data))
|
||||
voucher_address = list(map(lambda address: address["voucher_address"], data))
|
||||
voucher_owners = list(map(lambda address: address["owner"], data))
|
||||
|
||||
if voucher_symbol in voucher_symbols:
|
||||
index = voucher_symbols.index(voucher_symbol)
|
||||
s = voucher_address[index]
|
||||
privatekey = voucher_owners[index]
|
||||
else:
|
||||
raise ValueError(f"Voucher with symbol {voucher_symbol} was not found")
|
||||
|
||||
@ -800,7 +798,7 @@ def voucher_mint_handler(cmd):
|
||||
)
|
||||
|
||||
command = (
|
||||
f"cast send --private-key {privatekey} "
|
||||
f"cast send --private-key {master_private_key} "
|
||||
f"--rpc-url {rpc} "
|
||||
f"--nonce {nonce} "
|
||||
f" {s} "
|
||||
|
Loading…
Reference in New Issue
Block a user