Commit d41341f7 authored by Taylor Gerring's avatar Taylor Gerring

WithState -> withState

parent 82b5a8af
......@@ -124,10 +124,11 @@ func (self *XEth) AtStateNum(num int64) *XEth {
} else {
st = self.backend.ChainManager().State()
}
return self.WithState(st)
return self.withState(st)
}
func (self *XEth) WithState(statedb *state.StateDB) *XEth {
func (self *XEth) withState(statedb *state.StateDB) *XEth {
xeth := &XEth{
backend: self.backend,
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment