aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-03-05 17:57:14 +0800
committerobscuren <geffobscura@gmail.com>2014-03-05 17:57:14 +0800
commitfbd53f0e34b636074941f5ea7b151bf173c5ed17 (patch)
treebd4c3c5a5ab444fb5c5930f7b59e52e011ce3bca /ui
parentf7fb5b902c8b216c835c10fc4676b7b08fb90d04 (diff)
downloadgo-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar
go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar.gz
go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar.bz2
go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar.lz
go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar.xz
go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar.zst
go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.zip
Renamed block manager to state manager
Diffstat (limited to 'ui')
-rw-r--r--ui/gui.go2
-rw-r--r--ui/library.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/ui/gui.go b/ui/gui.go
index fa65ea4f6..5f0b6e52d 100644
--- a/ui/gui.go
+++ b/ui/gui.go
@@ -57,7 +57,7 @@ type Gui struct {
// Create GUI, but doesn't start it
func New(ethereum *eth.Ethereum) *Gui {
- lib := &EthLib{blockManager: ethereum.StateManager(), blockChain: ethereum.BlockChain(), txPool: ethereum.TxPool()}
+ lib := &EthLib{stateManager: ethereum.StateManager(), blockChain: ethereum.BlockChain(), txPool: ethereum.TxPool()}
db, err := ethdb.NewLDBDatabase("tx_database")
if err != nil {
panic(err)
diff --git a/ui/library.go b/ui/library.go
index 3bbb01314..8dda0a89e 100644
--- a/ui/library.go
+++ b/ui/library.go
@@ -9,7 +9,7 @@ import (
)
type EthLib struct {
- blockManager *ethchain.BlockManager
+ stateManager *ethchain.StateManager
blockChain *ethchain.BlockChain
txPool *ethchain.TxPool
}
@@ -32,7 +32,7 @@ func (lib *EthLib) CreateTx(receiver, a, data string) string {
amount := ethutil.Big(a)
code := ethchain.Compile(strings.Split(data, "\n"))
tx := ethchain.NewTransaction(hash, amount, code)
- tx.Nonce = lib.blockManager.GetAddrState(keyRing.Get(1).Bytes()).Nonce
+ tx.Nonce = lib.stateManager.GetAddrState(keyRing.Get(1).Bytes()).Nonce
tx.Sign(keyRing.Get(0).Bytes())