aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/gui.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-14 19:26:29 +0800
committerobscuren <geffobscura@gmail.com>2014-08-14 19:26:29 +0800
commit3fd0337330ab4ceb25abfc7ec04b576e8f3f0914 (patch)
tree0096fe86dc94f81372659fe69e9467cf1fb6e328 /ethereal/gui.go
parent14e4f1283cdde91b38bd8cbf2b2fed69388aa75d (diff)
downloadgo-tangerine-3fd0337330ab4ceb25abfc7ec04b576e8f3f0914.tar.gz
go-tangerine-3fd0337330ab4ceb25abfc7ec04b576e8f3f0914.tar.zst
go-tangerine-3fd0337330ab4ceb25abfc7ec04b576e8f3f0914.zip
DNS for a hrefs should now be fixed
Diffstat (limited to 'ethereal/gui.go')
-rw-r--r--ethereal/gui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/gui.go b/ethereal/gui.go
index 710a1bd1e..d191f67d0 100644
--- a/ethereal/gui.go
+++ b/ethereal/gui.go
@@ -391,12 +391,12 @@ func (gui *Gui) update() {
if bytes.Compare(tx.Sender(), gui.address()) == 0 {
object.SubAmount(tx.Value)
- gui.getObjectByName("transactionView").Call("addTx", "post", ethpub.NewPTx(tx), "send")
+ gui.getObjectByName("transactionView").Call("addTx", ethpub.NewPTx(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", "post", ethpub.NewPTx(tx), "recv")
+ gui.getObjectByName("transactionView").Call("addTx", ethpub.NewPTx(tx), "recv")
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
}