diff options
author | bitpshr <mail@bitpshr.net> | 2018-04-16 11:37:42 +0800 |
---|---|---|
committer | bitpshr <mail@bitpshr.net> | 2018-04-16 11:46:40 +0800 |
commit | a350e80feea6747a5e10088ac6ec15171a590a65 (patch) | |
tree | 93be19006b469678ffaec07b754104827dd1e61a /ui/app/components/send | |
parent | 3afe76bcba5eb1b84c748b13b61d1a22bed40bd3 (diff) | |
download | tangerine-wallet-browser-a350e80feea6747a5e10088ac6ec15171a590a65.tar.gz tangerine-wallet-browser-a350e80feea6747a5e10088ac6ec15171a590a65.tar.zst tangerine-wallet-browser-a350e80feea6747a5e10088ac6ec15171a590a65.zip |
Fetch token prices based on contract address
Diffstat (limited to 'ui/app/components/send')
-rw-r--r-- | ui/app/components/send/send-v2-container.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/send/send-v2-container.js b/ui/app/components/send/send-v2-container.js index aca1a5a0a..75f16b382 100644 --- a/ui/app/components/send/send-v2-container.js +++ b/ui/app/components/send/send-v2-container.js @@ -66,7 +66,7 @@ function mapDispatchToProps (dispatch) { showCustomizeGasModal: () => dispatch(actions.showModal({ name: 'CUSTOMIZE_GAS' })), estimateGas: params => dispatch(actions.estimateGas(params)), getGasPrice: () => dispatch(actions.getGasPrice()), - updateTokenExchangeRate: token => dispatch(actions.updateTokenExchangeRate(token)), + updateContractExchangeRate: address => dispatch(actions.updateContractExchangeRate(address)), signTokenTx: (tokenAddress, toAddress, amount, txData) => ( dispatch(actions.signTokenTx(tokenAddress, toAddress, amount, txData)) ), |