From 95a24800746ed0b7a92a8558cb2e7976d57c0104 Mon Sep 17 00:00:00 2001 From: Dan J Miller Date: Wed, 3 Apr 2019 13:31:43 -0230 Subject: Fix display of gas chart on Ethereum networks (#6389) --- ui/app/ducks/gas/gas.duck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/app/ducks/gas') diff --git a/ui/app/ducks/gas/gas.duck.js b/ui/app/ducks/gas/gas.duck.js index 8eb68f846..5a0a236e6 100644 --- a/ui/app/ducks/gas/gas.duck.js +++ b/ui/app/ducks/gas/gas.duck.js @@ -361,7 +361,7 @@ export function fetchGasEstimates (blockTime) { return (dispatch, getState) => { const state = getState() - if (isEthereumNetwork(state)) { + if (!isEthereumNetwork(state)) { return Promise.resolve(null) } -- cgit