aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/send/send.selectors.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/pages/send/send.selectors.js')
-rw-r--r--ui/app/pages/send/send.selectors.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/pages/send/send.selectors.js b/ui/app/pages/send/send.selectors.js
index ed2917020..00ecd635a 100644
--- a/ui/app/pages/send/send.selectors.js
+++ b/ui/app/pages/send/send.selectors.js
@@ -13,7 +13,7 @@ const {
calcGasTotal,
} = require('./send.utils')
import {
- getFastPriceEstimateInHexWEI,
+ getAveragePriceEstimateInHexWEI,
} from '../../selectors/custom-gas'
const selectors = {
@@ -120,7 +120,7 @@ function getGasLimit (state) {
}
function getGasPrice (state) {
- return state.metamask.send.gasPrice || getFastPriceEstimateInHexWEI(state)
+ return state.metamask.send.gasPrice || getAveragePriceEstimateInHexWEI(state)
}
function getGasPriceFromRecentBlocks (state) {