diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-30 03:39:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-30 03:39:26 +0800 |
commit | 0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31 (patch) | |
tree | 05a525e94ee55bd9c4a84301989176d40d76cb61 /xeth/world.go | |
parent | 6488a392a347d0d47212fdc78386e3e0e5841d7d (diff) | |
download | go-tangerine-0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31.tar go-tangerine-0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31.tar.gz go-tangerine-0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31.tar.bz2 go-tangerine-0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31.tar.lz go-tangerine-0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31.tar.xz go-tangerine-0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31.tar.zst go-tangerine-0031f388ac1f6f4a23c5c75e5eeb4a007f0b2f31.zip |
More dapp samples
* Info DApp, coin DApp
* Additional rpc methods
Diffstat (limited to 'xeth/world.go')
-rw-r--r-- | xeth/world.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/world.go b/xeth/world.go index cdceec50d..9cbdd9461 100644 --- a/xeth/world.go +++ b/xeth/world.go @@ -11,7 +11,7 @@ func NewState(xeth *XEth) *State { } func (self *State) State() *state.StateDB { - return self.xeth.chainManager.State() + return self.xeth.chainManager.TransState() } func (self *State) Get(addr string) *Object { |