aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas.selectors.js
blob: 89374b5f1beb4f8413a37394d5f21152f435b828 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const selectors = {
  getCurrentBlockTime,
  getBasicGasEstimateLoadingStatus,
}

module.exports = selectors

function getCurrentBlockTime (state) {
  return state.gas.currentBlockTime
}

function getBasicGasEstimateLoadingStatus (state) {
  return state.gas.basicEstimateIsLoading
}