Skip to content

Commit

Permalink
fix env var name
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel committed Nov 23, 2023
1 parent 26e46ed commit d50a1fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testnet/launcher/l2contractdeployer/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ func (n *ContractDeployer) Start() error {
}

envs := map[string]string{
"PREFUND_FAUCET_AMOUNT": n.cfg.faucetPrefundAmount,
"MANAGEMENT_CONTRACT_ADDRESS": n.cfg.managementContractAddress,
"MESSAGE_BUS_ADDRESS": n.cfg.messageBusAddress,
"PREFUND_FAUCET_AMOUNT": n.cfg.faucetPrefundAmount,
"MGMT_CONTRACT_ADDRESS": n.cfg.managementContractAddress,
"MESSAGE_BUS_ADDRESS": n.cfg.messageBusAddress,
"NETWORK_JSON": fmt.Sprintf(`
{
"layer1" : {
Expand Down

0 comments on commit d50a1fd

Please sign in to comment.