diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-08-15 09:39:19 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-08-15 09:41:05 +0800 |
commit | e826eb932c918202bcf30d32d57464a4b860073b (patch) | |
tree | 4456d6963b3b52928db2ef6931e29f614c74cd14 /app/scripts/config.js | |
parent | f7a5a4e170538792f00aa8f05d46144734f361d2 (diff) | |
download | dexon-wallet-e826eb932c918202bcf30d32d57464a4b860073b.tar.gz dexon-wallet-e826eb932c918202bcf30d32d57464a4b860073b.tar.zst dexon-wallet-e826eb932c918202bcf30d32d57464a4b860073b.zip |
Remove ethereum classic provider
Fixes #542
Diffstat (limited to 'app/scripts/config.js')
-rw-r--r-- | app/scripts/config.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/scripts/config.js b/app/scripts/config.js index 7a1d54a3..04e2907d 100644 --- a/app/scripts/config.js +++ b/app/scripts/config.js @@ -1,7 +1,6 @@ const MAINET_RPC_URL = 'https://mainnet.infura.io/' const TESTNET_RPC_URL = 'https://morden.infura.io/' const DEFAULT_RPC_URL = TESTNET_RPC_URL -const CLASSIC_RPC_URL = 'https://mainnet-nf.infura.io/' global.METAMASK_DEBUG = false @@ -10,6 +9,5 @@ module.exports = { default: DEFAULT_RPC_URL, mainnet: MAINET_RPC_URL, testnet: TESTNET_RPC_URL, - classic: CLASSIC_RPC_URL, }, } |