From 96efaf70575274276a2643e134dff924f1770ff5 Mon Sep 17 00:00:00 2001 From: Peter Kieltyka Date: Tue, 15 Aug 2023 07:44:52 -0400 Subject: [PATCH] ethproviders: add 'disabled' config toggle --- ethproviders/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ethproviders/config.go b/ethproviders/config.go index c7b3c4c9..8c647fb7 100644 --- a/ethproviders/config.go +++ b/ethproviders/config.go @@ -9,6 +9,7 @@ type NetworkConfig struct { URL string `toml:"url" json:"url"` AuthChain bool `toml:"auth_chain" json:"authChain"` Testnet bool `toml:"testnet" json:"testnet"` + Disabled bool `toml:"disabled" json:"disabled"` } func (n Config) GetByID(id uint64) (NetworkConfig, bool) {