From 1a23956d3a6b281609c6cf7334b57bcab4e81994 Mon Sep 17 00:00:00 2001 From: Bartek Tofel Date: Mon, 15 Jan 2024 17:24:31 -0300 Subject: [PATCH] fix typo and example --- config/examples/example.toml | 4 ++-- config/overrides.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/examples/example.toml b/config/examples/example.toml index 2ddd97752..2d54a6fdf 100644 --- a/config/examples/example.toml +++ b/config/examples/example.toml @@ -32,10 +32,10 @@ bearer_token="my-awesome-token" selected_networks=["polygon_mumbai"] [Network.RpcHttpUrls] -polygon_mumbai = ["https://matic.getblock.io/608a6708-d787-4ba8-bcbd-493001ea7fd9/testnet/"] +polygon_mumbai = ["https://polygon-endpoint.io"] [Network.RpcWsUrls] -polygon_mumbai = ["wss://matic.getblock.io/608a6708-d787-4ba8-bcbd-493001ea7fd9/testnet/"] +polygon_mumbai = ["wss://polygon-endpoint.io"] [Network.WalletKeys] polygon_mumbai = ["change-me-to-your-PK"] diff --git a/config/overrides.go b/config/overrides.go index c3a267352..cc7fda07a 100644 --- a/config/overrides.go +++ b/config/overrides.go @@ -4,7 +4,7 @@ import ( "dario.cat/mergo" ) -// MightConfigOverrideChainlinkVersion will override the chainlink image and version +// MustConfigOverrideChainlinkVersion will override the chainlink image and version // in property maps from the passed config. It will panic if the config is nil. func MustConfigOverrideChainlinkVersion(config *ChainlinkImageConfig, target interface{}) { if config == nil {