aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/actions.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2017-05-09 03:29:08 +0800
committerkumavis <aaron@kumavis.me>2017-05-09 03:29:08 +0800
commit68be86abe959afd26ea50e0833c552c442bfce51 (patch)
tree23eb3f52e9ce9ce053dd40ad10d71ce5c7842460 /ui/app/actions.js
parent1c44dd3353c51b6135c06188e8cd57690e0d30fc (diff)
downloadtangerine-wallet-browser-68be86abe959afd26ea50e0833c552c442bfce51.tar
tangerine-wallet-browser-68be86abe959afd26ea50e0833c552c442bfce51.tar.gz
tangerine-wallet-browser-68be86abe959afd26ea50e0833c552c442bfce51.tar.bz2
tangerine-wallet-browser-68be86abe959afd26ea50e0833c552c442bfce51.tar.lz
tangerine-wallet-browser-68be86abe959afd26ea50e0833c552c442bfce51.tar.xz
tangerine-wallet-browser-68be86abe959afd26ea50e0833c552c442bfce51.tar.zst
tangerine-wallet-browser-68be86abe959afd26ea50e0833c552c442bfce51.zip
ui - remove web3, use eth-query
Diffstat (limited to 'ui/app/actions.js')
-rw-r--r--ui/app/actions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js
index c15c9be7e..1a3557cb4 100644
--- a/ui/app/actions.js
+++ b/ui/app/actions.js
@@ -393,7 +393,7 @@ function signPersonalMsg (msgData) {
function signTx (txData) {
return (dispatch) => {
- web3.eth.sendTransaction(txData, (err, data) => {
+ global.ethQuery.sendTransaction(txData, (err, data) => {
dispatch(actions.hideLoadingIndication())
if (err) return dispatch(actions.displayWarning(err.message))
dispatch(actions.hideWarning())