|
@ -327,7 +327,8 @@ func (s *State) validateBlock(b *types.Block) error { |
|
|
// commits it, and saves the block and state. It's the only function that needs to be called
|
|
|
// commits it, and saves the block and state. It's the only function that needs to be called
|
|
|
// from outside this package to process and commit an entire block.
|
|
|
// from outside this package to process and commit an entire block.
|
|
|
func (s *State) ApplyBlock(txEventPublisher types.TxEventPublisher, proxyAppConn proxy.AppConnConsensus, |
|
|
func (s *State) ApplyBlock(txEventPublisher types.TxEventPublisher, proxyAppConn proxy.AppConnConsensus, |
|
|
block *types.Block, partsHeader types.PartSetHeader, mempool types.Mempool) error { |
|
|
|
|
|
|
|
|
block *types.Block, partsHeader types.PartSetHeader, |
|
|
|
|
|
mempool types.Mempool, evpool types.EvidencePool) error { |
|
|
|
|
|
|
|
|
abciResponses, err := s.ValExecBlock(txEventPublisher, proxyAppConn, block) |
|
|
abciResponses, err := s.ValExecBlock(txEventPublisher, proxyAppConn, block) |
|
|
if err != nil { |
|
|
if err != nil { |
|
@ -355,6 +356,8 @@ func (s *State) ApplyBlock(txEventPublisher types.TxEventPublisher, proxyAppConn |
|
|
|
|
|
|
|
|
fail.Fail() // XXX
|
|
|
fail.Fail() // XXX
|
|
|
|
|
|
|
|
|
|
|
|
evpool.MarkEvidenceAsCommitted(block.Evidence.Evidence) |
|
|
|
|
|
|
|
|
// save the state and the validators
|
|
|
// save the state and the validators
|
|
|
s.Save() |
|
|
s.Save() |
|
|
|
|
|
|
|
|