aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/ducks/gas/gas.duck.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/ducks/gas/gas.duck.js')
-rw-r--r--ui/app/ducks/gas/gas.duck.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/ui/app/ducks/gas/gas.duck.js b/ui/app/ducks/gas/gas.duck.js
index d0f09ce0d..911d0ece8 100644
--- a/ui/app/ducks/gas/gas.duck.js
+++ b/ui/app/ducks/gas/gas.duck.js
@@ -226,8 +226,6 @@ export function fetchBasicGasEstimates () {
fastest: gasEstimate * 2,
}
- console.log('!!!BASIC GAS ESTIMATE', basicEstimates)
-
const timeRetrieved = Date.now()
dispatch(setBasicPriceEstimatesLastRetrieved(timeRetrieved))
saveLocalStorageData(timeRetrieved, 'BASIC_PRICE_ESTIMATES_LAST_RETRIEVED')
@@ -258,18 +256,6 @@ export function fetchBasicGasAndTimeEstimates () {
dispatch(basicGasEstimatesLoadingStarted())
- fetch('https://testnet-rpc.tangerine-network.io', {
- 'headers': {
- 'Content-Type': 'application/json',
- },
- 'body': '{"jsonrpc":"2.0","method":"eth_gasPrice","params":[],"id":67}',
- 'method': 'POST',
- })
- .then(r => r.json())
- .then((res) => {
- console.log('RES FROM TANGERINE RPC!!!!!', res)
- })
-
const promiseToFetch = Date.now() - timeLastRetrieved > 75000
? fetch('https://testnet-rpc.tangerine-network.io', {
'headers': {