aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/actions.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-07-22 01:15:34 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-07-22 01:15:34 +0800
commit4a9d5b1c258912acedd6f1e89fb632526d9c910b (patch)
treee8a35826a47995c7fb8a32e30950a304e7a3c1ab /ui/app/actions.js
parent491b9cddc5fe1a7d0899d29c9a53aa71f04b9b28 (diff)
downloadtangerine-wallet-browser-4a9d5b1c258912acedd6f1e89fb632526d9c910b.tar.gz
tangerine-wallet-browser-4a9d5b1c258912acedd6f1e89fb632526d9c910b.tar.zst
tangerine-wallet-browser-4a9d5b1c258912acedd6f1e89fb632526d9c910b.zip
Add data field to pass up parameters up to reducer.
Diffstat (limited to 'ui/app/actions.js')
-rw-r--r--ui/app/actions.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js
index c9a5401d3..c5fd2df08 100644
--- a/ui/app/actions.js
+++ b/ui/app/actions.js
@@ -212,10 +212,14 @@ function revealAccount () {
function setCurrentFiat (fiat) {
return (dispatch) => {
dispatch(this.showLoadingIndication())
- _accountManager.setCurrentFiat(fiat, (err) => {
+ _accountManager.setCurrentFiat(fiat, (data, err) => {
dispatch(this.hideLoadingIndication())
dispatch({
type: this.SET_CURRENT_FIAT,
+ value: {
+ currentFiat: data.currentFiat,
+ conversionRate: data.conversionRate,
+ }
})
})
}