From 4f248d4a01d09be26849dba8510776f3a6e41850 Mon Sep 17 00:00:00 2001 From: Jaron Rosenau Date: Tue, 4 Sep 2018 23:10:51 -0700 Subject: [PATCH] Update SendToContract.vue --- src/controllers/SendToContract.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/controllers/SendToContract.vue b/src/controllers/SendToContract.vue index cd7d507..705ca61 100644 --- a/src/controllers/SendToContract.vue +++ b/src/controllers/SendToContract.vue @@ -168,7 +168,8 @@ export default { this.confirmSendDialog = false this.sending = false const txViewUrl = server.currentNode().getTxExplorerUrl(txId) - this.$root.success(`Successful send. You can view at ${txViewUrl}`, true, 0) this.$emit('send') + this.$root.success(`Successful send. You can view at ${txViewUrl}`, true, 0) + this.$emit('send') } catch (e) { alert(e.message || e) this.$root.log.error('send_to_contract_post_raw_tx_error', e.response || e.stack || e.toString() || e)