aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/config.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-08-12 09:58:23 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-08-12 09:58:23 +0800
commit2b0c6953e27b937d8ff75aad00786e3501599a73 (patch)
tree8e4e7d0e99636e4fa1a06627fc71ef3886445d76 /app/scripts/config.js
parentb8856d765daeb9c3b5be9a3067f977d85222639c (diff)
downloadtangerine-wallet-browser-2b0c6953e27b937d8ff75aad00786e3501599a73.tar.gz
tangerine-wallet-browser-2b0c6953e27b937d8ff75aad00786e3501599a73.tar.zst
tangerine-wallet-browser-2b0c6953e27b937d8ff75aad00786e3501599a73.zip
Create global variable that changes ui logging.
Diffstat (limited to 'app/scripts/config.js')
-rw-r--r--app/scripts/config.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/scripts/config.js b/app/scripts/config.js
index 620872249..ba012c6b8 100644
--- a/app/scripts/config.js
+++ b/app/scripts/config.js
@@ -2,7 +2,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/'
-const DEVELOPMENT_MODE = false
module.exports = {
network: {
@@ -11,5 +10,4 @@ module.exports = {
testnet: TESTNET_RPC_URL,
classic: CLASSIC_RPC_URL,
},
- developmentMode: DEVELOPMENT_MODE,
}