diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-16 10:08:25 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-16 10:08:25 +0800 |
commit | 1cd7d4456b80c38f343cb54a624408c28c5acb13 (patch) | |
tree | de63c196b7a707a9bbc0787fb7af9992bf628948 /ethereal/ui/gui.go | |
parent | 6b644c17a7ff2746863c03f2d67b24ae75951256 (diff) | |
download | go-tangerine-1cd7d4456b80c38f343cb54a624408c28c5acb13.tar go-tangerine-1cd7d4456b80c38f343cb54a624408c28c5acb13.tar.gz go-tangerine-1cd7d4456b80c38f343cb54a624408c28c5acb13.tar.bz2 go-tangerine-1cd7d4456b80c38f343cb54a624408c28c5acb13.tar.lz go-tangerine-1cd7d4456b80c38f343cb54a624408c28c5acb13.tar.xz go-tangerine-1cd7d4456b80c38f343cb54a624408c28c5acb13.tar.zst go-tangerine-1cd7d4456b80c38f343cb54a624408c28c5acb13.zip |
Updated to use new state object
Diffstat (limited to 'ethereal/ui/gui.go')
-rw-r--r-- | ethereal/ui/gui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go index 1065b716e..fd29c4820 100644 --- a/ethereal/ui/gui.go +++ b/ethereal/ui/gui.go @@ -170,7 +170,7 @@ func (ui *Gui) update() { txChan := make(chan ethchain.TxMsg, 1) ui.eth.TxPool().Subscribe(txChan) - account := ui.eth.StateManager().GetAddrState(ui.addr).Account + account := ui.eth.StateManager().GetAddrState(ui.addr).Object unconfirmedFunds := new(big.Int) ui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(account.Amount))) for { |