Added Block do which replays the given block or error
This commit is contained in:
parent
9350ecd36f
commit
a4e26bf7c2
18
ethereum.go
18
ethereum.go
@ -113,6 +113,24 @@ func New(caps Caps, usePnp bool) (*Ethereum, error) {
|
|||||||
return ethereum, nil
|
return ethereum, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Replay block
|
||||||
|
func (self *Ethereum) BlockDo(hash []byte) error {
|
||||||
|
block := self.blockChain.GetBlock(hash)
|
||||||
|
if block == nil {
|
||||||
|
return fmt.Errorf("unknown block %x", hash)
|
||||||
|
}
|
||||||
|
|
||||||
|
parent := self.blockChain.GetBlock(block.PrevHash)
|
||||||
|
|
||||||
|
_, err := self.stateManager.ApplyDiff(parent.State(), parent, block)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
func (s *Ethereum) Reactor() *ethutil.ReactorEngine {
|
func (s *Ethereum) Reactor() *ethutil.ReactorEngine {
|
||||||
return s.reactor
|
return s.reactor
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user