aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-19 18:14:32 +0800
committerobscuren <geffobscura@gmail.com>2014-05-19 18:14:32 +0800
commit43f88b2bbb6fc993f8bfee531056a7e11bef59bd (patch)
tree4d68fbe404a5230669a62c03ee100e2d909bc5ed /ethereal
parent770808ce0d44cadfedbe01694c836be2eaf0e82c (diff)
downloadgo-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar
go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar.gz
go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar.bz2
go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar.lz
go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar.xz
go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar.zst
go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.zip
Removed nonce incrementing
Diffstat (limited to 'ethereal')
-rw-r--r--ethereal/ui/gui.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go
index 24be9e0c5..e465d5273 100644
--- a/ethereal/ui/gui.go
+++ b/ethereal/ui/gui.go
@@ -210,8 +210,10 @@ func (gui *Gui) update() {
gui.win.Root().Call("addTx", ethpub.NewPTx(tx))
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
- object.Nonce += 1
- state.SetStateObject(object)
+ /*
+ object.Nonce += 1
+ state.SetStateObject(object)
+ */
unconfirmedFunds.Sub(unconfirmedFunds, tx.Value)
} else if bytes.Compare(tx.Recipient, gui.addr) == 0 {