Show conf screen after send request

This commit is contained in:
Dan Finlay 2016-09-01 11:30:42 -07:00
parent 7f947f8ab2
commit 7b1bbb7a19
1 changed files with 1 additions and 2 deletions

View File

@ -276,8 +276,6 @@ function signMsg (msgData) {
function signTx (txData) {
return (dispatch) => {
dispatch(actions.showLoadingIndication())
web3.eth.sendTransaction(txData, (err, data) => {
dispatch(actions.hideLoadingIndication())
@ -285,6 +283,7 @@ function signTx (txData) {
dispatch(actions.hideWarning())
dispatch(actions.goHome())
})
dispatch(this.showConfTxPage())
}
}