Skip to content

Commit 1530779

Browse files
authoredSep 5, 2018
Merge pull request qtumproject#19 from denuoweb/master
Update SendToContract.vue
2 parents a569aff + 4f248d4 commit 1530779

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/controllers/SendToContract.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ export default {
168168
this.confirmSendDialog = false
169169
this.sending = false
170170
const txViewUrl = server.currentNode().getTxExplorerUrl(txId)
171-
this.$root.success(`Successful send. You can view at <a href="${txViewUrl}" target="_blank">${txViewUrl}</a>`, true, 0) this.$emit('send')
171+
this.$root.success(`Successful send. You can view at <a href="${txViewUrl}" target="_blank">${txViewUrl}</a>`, true, 0)
172+
this.$emit('send')
172173
} catch (e) {
173174
alert(e.message || e)
174175
this.$root.log.error('send_to_contract_post_raw_tx_error', e.response || e.stack || e.toString() || e)

0 commit comments

Comments
 (0)
Please sign in to comment.