Skip to content

Commit

Permalink
Use uppercase env values (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier authored Jul 22, 2022
1 parent 76e3705 commit 0a5e4f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blockchain/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ func (e *EVMNetwork) ToMap() map[string]interface{} {
func (e *EVMNetwork) ChainlinkValuesMap() map[string]interface{} {
valueMap := map[string]interface{}{}
if !e.Simulated {
valueMap["eth_url"] = e.URLs[0]
valueMap["eth_chain_id"] = fmt.Sprint(e.ChainID)
valueMap["ETH_URL"] = e.URLs[0]
valueMap["ETH_CHAIN_ID"] = fmt.Sprint(e.ChainID)
}
return valueMap
}

0 comments on commit 0a5e4f1

Please sign in to comment.