From 823466b62af840d1e1916eaadaff0e435ece47c0 Mon Sep 17 00:00:00 2001 From: Brad Decker Date: Tue, 23 Feb 2021 10:32:46 -0600 Subject: [PATCH] Re-add handler for addEthereumChain (#10489) --- app/scripts/lib/rpc-method-middleware/handlers/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scripts/lib/rpc-method-middleware/handlers/index.js b/app/scripts/lib/rpc-method-middleware/handlers/index.js index 1f1d992ea..541256a1c 100644 --- a/app/scripts/lib/rpc-method-middleware/handlers/index.js +++ b/app/scripts/lib/rpc-method-middleware/handlers/index.js @@ -1,10 +1,10 @@ -// import addEthereumChain from './add-ethereum-chain'; +import addEthereumChain from './add-ethereum-chain'; import getProviderState from './get-provider-state'; import logWeb3ShimUsage from './log-web3-shim-usage'; import watchAsset from './watch-asset'; const handlers = [ - // addEthereumChain, + addEthereumChain, getProviderState, logWeb3ShimUsage, watchAsset,