aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/selectors.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/selectors.js')
-rw-r--r--ui/app/selectors.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/app/selectors.js b/ui/app/selectors.js
index 8806a516f..66b7c00e4 100644
--- a/ui/app/selectors.js
+++ b/ui/app/selectors.js
@@ -15,6 +15,7 @@ const selectors = {
getGasLimit,
getAddressBook,
getSendFrom,
+ getCurrentCurrency,
}
module.exports = selectors
@@ -121,3 +122,7 @@ function getGasLimit (state) {
function getSendFrom (state) {
return state.metamask.send.from
}
+
+function getCurrentCurrency (state) {
+ return state.metamask.currentCurrency
+}