aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/selectors/custom-gas.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/selectors/custom-gas.js')
-rw-r--r--ui/app/selectors/custom-gas.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/ui/app/selectors/custom-gas.js b/ui/app/selectors/custom-gas.js
new file mode 100644
index 000000000..97280190f
--- /dev/null
+++ b/ui/app/selectors/custom-gas.js
@@ -0,0 +1,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
+}