aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/gui.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/gui.go')
-rw-r--r--ethereal/gui.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/ethereal/gui.go b/ethereal/gui.go
index a4e3efb19..710a1bd1e 100644
--- a/ethereal/gui.go
+++ b/ethereal/gui.go
@@ -282,7 +282,11 @@ func (gui *Gui) insertTransaction(window string, tx *ethchain.Transaction) {
ptx.Sender = s
ptx.Address = r
- gui.getObjectByName("transactionView").Call("addTx", window, ptx, inout)
+ if window == "post" {
+ gui.getObjectByName("transactionView").Call("addTx", ptx, inout)
+ } else {
+ gui.getObjectByName("pendingTxView").Call("addTx", ptx, inout)
+ }
}
func (gui *Gui) readPreviousTransactions() {