aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/gui.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-25 18:53:17 +0800
committerobscuren <geffobscura@gmail.com>2014-08-25 18:53:17 +0800
commite68c502f7a0a3affffe889e3453151cdd1ef451e (patch)
tree3a01b8039dd501df259b75d4872b0424302be5e4 /ethereal/gui.go
parent997e92191de5a7eeca2d9759c7b2aa0ee6b8aab9 (diff)
downloadgo-tangerine-e68c502f7a0a3affffe889e3453151cdd1ef451e.tar
go-tangerine-e68c502f7a0a3affffe889e3453151cdd1ef451e.tar.gz
go-tangerine-e68c502f7a0a3affffe889e3453151cdd1ef451e.tar.bz2
go-tangerine-e68c502f7a0a3affffe889e3453151cdd1ef451e.tar.lz
go-tangerine-e68c502f7a0a3affffe889e3453151cdd1ef451e.tar.xz
go-tangerine-e68c502f7a0a3affffe889e3453151cdd1ef451e.tar.zst
go-tangerine-e68c502f7a0a3affffe889e3453151cdd1ef451e.zip
Display block size
Diffstat (limited to 'ethereal/gui.go')
-rw-r--r--ethereal/gui.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/ethereal/gui.go b/ethereal/gui.go
index 1fb6c05e6..bd1466e8b 100644
--- a/ethereal/gui.go
+++ b/ethereal/gui.go
@@ -279,7 +279,7 @@ func (gui *Gui) insertTransaction(window string, tx *ethchain.Transaction) {
ptx.Address = r
if window == "post" {
- gui.getObjectByName("transactionView").Call("addTx", ptx, inout)
+ //gui.getObjectByName("transactionView").Call("addTx", ptx, inout)
} else {
gui.getObjectByName("pendingTxView").Call("addTx", ptx, inout)
}
@@ -393,12 +393,12 @@ func (gui *Gui) update() {
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
object.SubAmount(tx.Value)
- gui.getObjectByName("transactionView").Call("addTx", ethpipe.NewJSTx(tx), "send")
+ //gui.getObjectByName("transactionView").Call("addTx", ethpipe.NewJSTx(tx), "send")
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
} else if bytes.Compare(tx.Recipient, gui.address()) == 0 {
object.AddAmount(tx.Value)
- gui.getObjectByName("transactionView").Call("addTx", ethpipe.NewJSTx(tx), "recv")
+ //gui.getObjectByName("transactionView").Call("addTx", ethpipe.NewJSTx(tx), "recv")
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
}