diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-12 00:00:20 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-12 00:00:20 +0800 |
commit | e8d1b622d9381a2717f1a09f29078e07c23b01bd (patch) | |
tree | fab47607ab2cd3d6add6bd2ac798e1753398f7a9 /xeth | |
parent | 08b11540332b0aa0e006142ee75336eca7c32f9b (diff) | |
download | dexon-e8d1b622d9381a2717f1a09f29078e07c23b01bd.tar.gz dexon-e8d1b622d9381a2717f1a09f29078e07c23b01bd.tar.zst dexon-e8d1b622d9381a2717f1a09f29078e07c23b01bd.zip |
Default block number changes
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/xeth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go index e73cd70c9..891a1e072 100644 --- a/xeth/xeth.go +++ b/xeth/xeth.go @@ -98,7 +98,7 @@ func New(eth Backend, frontend Frontend) *XEth { } func (self *XEth) Backend() Backend { return self.eth } -func (self *XEth) UseState(statedb *state.StateDB) *XEth { +func (self *XEth) WithState(statedb *state.StateDB) *XEth { xeth := &XEth{ eth: self.eth, blockProcessor: self.blockProcessor, |