aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/selectors/custom-gas.js
blob: 97280190fbe41a8aa9c8f44e445671a237628d9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const selectors = {
  getCustomGasPrice,
  getCustomGasLimit,
  getCustomGasErrors,
}

module.exports = selectors

function getCustomGasPrice (state) {
  return state.customGas.price
}

function getCustomGasLimit (state) {
  return state.customGas.limit
}

function getCustomGasErrors (state) {
  return state.customGas.errors
}