diff options
author | Thomas Huang <thomas.b.huang@gmail.com> | 2019-04-04 05:45:43 +0800 |
---|---|---|
committer | Thomas Huang <thomas.b.huang@gmail.com> | 2019-04-04 05:45:43 +0800 |
commit | 6a80ff27189bdbf312b0c96970bca4760cc4c729 (patch) | |
tree | 4abe2f6944d3f68265adc8febc06a7f8cbbcb2c1 /ui/app | |
parent | a46ec83c9b258a3aed65e1ef08769300c01ca13b (diff) | |
download | tangerine-wallet-browser-6a80ff27189bdbf312b0c96970bca4760cc4c729.tar tangerine-wallet-browser-6a80ff27189bdbf312b0c96970bca4760cc4c729.tar.gz tangerine-wallet-browser-6a80ff27189bdbf312b0c96970bca4760cc4c729.tar.bz2 tangerine-wallet-browser-6a80ff27189bdbf312b0c96970bca4760cc4c729.tar.lz tangerine-wallet-browser-6a80ff27189bdbf312b0c96970bca4760cc4c729.tar.xz tangerine-wallet-browser-6a80ff27189bdbf312b0c96970bca4760cc4c729.tar.zst tangerine-wallet-browser-6a80ff27189bdbf312b0c96970bca4760cc4c729.zip |
Change coinbase to wyre
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/components/app/modals/deposit-ether-modal.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/app/modals/deposit-ether-modal.js b/ui/app/components/app/modals/deposit-ether-modal.js index def88f085..6f622a17c 100644 --- a/ui/app/components/app/modals/deposit-ether-modal.js +++ b/ui/app/components/app/modals/deposit-ether-modal.js @@ -28,8 +28,8 @@ function mapStateToProps (state) { function mapDispatchToProps (dispatch) { return { - toCoinbase: (address) => { - dispatch(actions.buyEth({ service: 'coinbase', address, amount: 0 })) + toWyre: (address) => { + dispatch(actions.buyEth({ service: 'wyre', address, amount: 0 })) }, toCoinSwitch: (address) => { dispatch(actions.buyEth({ service: 'coinswitch', address })) @@ -130,7 +130,7 @@ DepositEtherModal.prototype.renderRow = function ({ } DepositEtherModal.prototype.render = function () { - const { network, toCoinbase, toCoinSwitch, address, toFaucet } = this.props + const { network, toWyre, toCoinSwitch, address, toFaucet } = this.props const { buyingWithShapeshift } = this.state const isTestNetwork = ['3', '4', '42'].find(n => n === network) @@ -190,7 +190,7 @@ DepositEtherModal.prototype.render = function () { title: WYRE_ROW_TITLE, text: WYRE_ROW_TEXT, buttonLabel: this.context.t('continueToWyre'), - onButtonClick: () => toCoinbase(address), + onButtonClick: () => toWyre(address), hide: isTestNetwork || buyingWithShapeshift, }), |