aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/metamask-controller.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-03-15 08:24:55 +0800
committerGitHub <noreply@github.com>2017-03-15 08:24:55 +0800
commit570cc891b5386dc04462737de4df6f2adf5059c9 (patch)
tree0b82e66942ade02e78012414aeb9576327355387 /app/scripts/metamask-controller.js
parent2a68c89ba7c5f168083beee77161adeb863d82c9 (diff)
parent311b80adf35ba8b419bff15f83a6e8893b746b39 (diff)
downloadtangerine-wallet-browser-570cc891b5386dc04462737de4df6f2adf5059c9.tar.gz
tangerine-wallet-browser-570cc891b5386dc04462737de4df6f2adf5059c9.tar.zst
tangerine-wallet-browser-570cc891b5386dc04462737de4df6f2adf5059c9.zip
Merge pull request #1212 from MetaMask/i1211-currencyretention
Fix currency settings retention
Diffstat (limited to 'app/scripts/metamask-controller.js')
-rw-r--r--app/scripts/metamask-controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/metamask-controller.js b/app/scripts/metamask-controller.js
index 536891dc6..2eaa53200 100644
--- a/app/scripts/metamask-controller.js
+++ b/app/scripts/metamask-controller.js
@@ -621,7 +621,7 @@ module.exports = class MetamaskController extends EventEmitter {
this.currencyController.updateConversionRate()
const data = {
conversionRate: this.currencyController.getConversionRate(),
- currentFiat: this.currencyController.getCurrentCurrency(),
+ currentCurrency: this.currencyController.getCurrentCurrency(),
conversionDate: this.currencyController.getConversionDate(),
}
cb(null, data)