diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-19 18:14:32 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-19 18:14:32 +0800 |
commit | 43f88b2bbb6fc993f8bfee531056a7e11bef59bd (patch) | |
tree | 4d68fbe404a5230669a62c03ee100e2d909bc5ed /ethereal | |
parent | 770808ce0d44cadfedbe01694c836be2eaf0e82c (diff) | |
download | go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar.gz go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.tar.zst go-tangerine-43f88b2bbb6fc993f8bfee531056a7e11bef59bd.zip |
Removed nonce incrementing
Diffstat (limited to 'ethereal')
-rw-r--r-- | ethereal/ui/gui.go | 6 |
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 { |