|
@ -137,8 +137,9 @@ func (blockExec *BlockExecutor) ApplyBlock( |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
startTime := time.Now().UnixNano() |
|
|
startTime := time.Now().UnixNano() |
|
|
abciResponses, err := execBlockOnProxyApp(blockExec.logger, blockExec.proxyApp, block, |
|
|
|
|
|
blockExec.store, state.InitialHeight) |
|
|
|
|
|
|
|
|
abciResponses, err := execBlockOnProxyApp( |
|
|
|
|
|
blockExec.logger, blockExec.proxyApp, block, blockExec.store, state.InitialHeight, |
|
|
|
|
|
) |
|
|
endTime := time.Now().UnixNano() |
|
|
endTime := time.Now().UnixNano() |
|
|
blockExec.metrics.BlockProcessingTime.Observe(float64(endTime-startTime) / 1000000) |
|
|
blockExec.metrics.BlockProcessingTime.Observe(float64(endTime-startTime) / 1000000) |
|
|
if err != nil { |
|
|
if err != nil { |
|
@ -160,12 +161,13 @@ func (blockExec *BlockExecutor) ApplyBlock( |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
return state, 0, fmt.Errorf("error in validator updates: %v", err) |
|
|
return state, 0, fmt.Errorf("error in validator updates: %v", err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
validatorUpdates, err := types.PB2TM.ValidatorUpdates(abciValUpdates) |
|
|
validatorUpdates, err := types.PB2TM.ValidatorUpdates(abciValUpdates) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
return state, 0, err |
|
|
return state, 0, err |
|
|
} |
|
|
} |
|
|
if len(validatorUpdates) > 0 { |
|
|
if len(validatorUpdates) > 0 { |
|
|
blockExec.logger.Info("Updates to validators", "updates", types.ValidatorListString(validatorUpdates)) |
|
|
|
|
|
|
|
|
blockExec.logger.Info("updates to validators", "updates", types.ValidatorListString(validatorUpdates)) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Update the state with the block and responses.
|
|
|
// Update the state with the block and responses.
|
|
@ -218,26 +220,23 @@ func (blockExec *BlockExecutor) Commit( |
|
|
// in the ABCI app before Commit.
|
|
|
// in the ABCI app before Commit.
|
|
|
err := blockExec.mempool.FlushAppConn() |
|
|
err := blockExec.mempool.FlushAppConn() |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
blockExec.logger.Error("Client error during mempool.FlushAppConn", "err", err) |
|
|
|
|
|
|
|
|
blockExec.logger.Error("client error during mempool.FlushAppConn", "err", err) |
|
|
return nil, 0, err |
|
|
return nil, 0, err |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Commit block, get hash back
|
|
|
// Commit block, get hash back
|
|
|
res, err := blockExec.proxyApp.CommitSync(context.Background()) |
|
|
res, err := blockExec.proxyApp.CommitSync(context.Background()) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
blockExec.logger.Error( |
|
|
|
|
|
"Client error during proxyAppConn.CommitSync", |
|
|
|
|
|
"err", err, |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
blockExec.logger.Error("client error during proxyAppConn.CommitSync", "err", err) |
|
|
return nil, 0, err |
|
|
return nil, 0, err |
|
|
} |
|
|
} |
|
|
// ResponseCommit has no error code - just data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ResponseCommit has no error code - just data
|
|
|
blockExec.logger.Info( |
|
|
blockExec.logger.Info( |
|
|
"Committed state", |
|
|
|
|
|
|
|
|
"committed state", |
|
|
"height", block.Height, |
|
|
"height", block.Height, |
|
|
"txs", len(block.Txs), |
|
|
|
|
|
"appHash", res.Data, |
|
|
|
|
|
|
|
|
"num_txs", len(block.Txs), |
|
|
|
|
|
"app_hash", fmt.Sprintf("%X", res.Data), |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
// Update mempool.
|
|
|
// Update mempool.
|
|
@ -281,9 +280,10 @@ func execBlockOnProxyApp( |
|
|
if txRes.Code == abci.CodeTypeOK { |
|
|
if txRes.Code == abci.CodeTypeOK { |
|
|
validTxs++ |
|
|
validTxs++ |
|
|
} else { |
|
|
} else { |
|
|
logger.Debug("Invalid tx", "code", txRes.Code, "log", txRes.Log) |
|
|
|
|
|
|
|
|
logger.Debug("invalid tx", "code", txRes.Code, "log", txRes.Log) |
|
|
invalidTxs++ |
|
|
invalidTxs++ |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
abciResponses.DeliverTxs[txIndex] = txRes |
|
|
abciResponses.DeliverTxs[txIndex] = txRes |
|
|
txIndex++ |
|
|
txIndex++ |
|
|
} |
|
|
} |
|
@ -305,6 +305,7 @@ func execBlockOnProxyApp( |
|
|
if pbh == nil { |
|
|
if pbh == nil { |
|
|
return nil, errors.New("nil header") |
|
|
return nil, errors.New("nil header") |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
abciResponses.BeginBlock, err = proxyAppConn.BeginBlockSync( |
|
|
abciResponses.BeginBlock, err = proxyAppConn.BeginBlockSync( |
|
|
ctx, |
|
|
ctx, |
|
|
abci.RequestBeginBlock{ |
|
|
abci.RequestBeginBlock{ |
|
@ -312,13 +313,14 @@ func execBlockOnProxyApp( |
|
|
Header: *pbh, |
|
|
Header: *pbh, |
|
|
LastCommitInfo: commitInfo, |
|
|
LastCommitInfo: commitInfo, |
|
|
ByzantineValidators: byzVals, |
|
|
ByzantineValidators: byzVals, |
|
|
}) |
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
logger.Error("Error in proxyAppConn.BeginBlock", "err", err) |
|
|
|
|
|
|
|
|
logger.Error("error in proxyAppConn.BeginBlock", "err", err) |
|
|
return nil, err |
|
|
return nil, err |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Run txs of block.
|
|
|
|
|
|
|
|
|
// run txs of block
|
|
|
for _, tx := range block.Txs { |
|
|
for _, tx := range block.Txs { |
|
|
_, err = proxyAppConn.DeliverTxAsync(ctx, abci.RequestDeliverTx{Tx: tx}) |
|
|
_, err = proxyAppConn.DeliverTxAsync(ctx, abci.RequestDeliverTx{Tx: tx}) |
|
|
if err != nil { |
|
|
if err != nil { |
|
@ -326,15 +328,13 @@ func execBlockOnProxyApp( |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// End block.
|
|
|
|
|
|
abciResponses.EndBlock, err = proxyAppConn.EndBlockSync(ctx, abci.RequestEndBlock{Height: block.Height}) |
|
|
abciResponses.EndBlock, err = proxyAppConn.EndBlockSync(ctx, abci.RequestEndBlock{Height: block.Height}) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
logger.Error("Error in proxyAppConn.EndBlock", "err", err) |
|
|
|
|
|
|
|
|
logger.Error("error in proxyAppConn.EndBlock", "err", err) |
|
|
return nil, err |
|
|
return nil, err |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
logger.Info("Executed block", "height", block.Height, "validTxs", validTxs, "invalidTxs", invalidTxs) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logger.Info("executed block", "height", block.Height, "num_valid_txs", validTxs, "num_invalid_txs", invalidTxs) |
|
|
return abciResponses, nil |
|
|
return abciResponses, nil |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -357,8 +357,10 @@ func getBeginBlockValidatorInfo(block *types.Block, store Store, |
|
|
valSetLen = len(lastValSet.Validators) |
|
|
valSetLen = len(lastValSet.Validators) |
|
|
) |
|
|
) |
|
|
if commitSize != valSetLen { |
|
|
if commitSize != valSetLen { |
|
|
panic(fmt.Sprintf("commit size (%d) doesn't match valset length (%d) at height %d\n\n%v\n\n%v", |
|
|
|
|
|
commitSize, valSetLen, block.Height, block.LastCommit.Signatures, lastValSet.Validators)) |
|
|
|
|
|
|
|
|
panic(fmt.Sprintf( |
|
|
|
|
|
"commit size (%d) doesn't match valset length (%d) at height %d\n\n%v\n\n%v", |
|
|
|
|
|
commitSize, valSetLen, block.Height, block.LastCommit.Signatures, lastValSet.Validators, |
|
|
|
|
|
)) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
for i, val := range lastValSet.Validators { |
|
|
for i, val := range lastValSet.Validators { |
|
@ -482,15 +484,16 @@ func fireEvents( |
|
|
ResultBeginBlock: *abciResponses.BeginBlock, |
|
|
ResultBeginBlock: *abciResponses.BeginBlock, |
|
|
ResultEndBlock: *abciResponses.EndBlock, |
|
|
ResultEndBlock: *abciResponses.EndBlock, |
|
|
}); err != nil { |
|
|
}); err != nil { |
|
|
logger.Error("Error publishing new block", "err", err) |
|
|
|
|
|
|
|
|
logger.Error("failed publishing new block", "err", err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if err := eventBus.PublishEventNewBlockHeader(types.EventDataNewBlockHeader{ |
|
|
if err := eventBus.PublishEventNewBlockHeader(types.EventDataNewBlockHeader{ |
|
|
Header: block.Header, |
|
|
Header: block.Header, |
|
|
NumTxs: int64(len(block.Txs)), |
|
|
NumTxs: int64(len(block.Txs)), |
|
|
ResultBeginBlock: *abciResponses.BeginBlock, |
|
|
ResultBeginBlock: *abciResponses.BeginBlock, |
|
|
ResultEndBlock: *abciResponses.EndBlock, |
|
|
ResultEndBlock: *abciResponses.EndBlock, |
|
|
}); err != nil { |
|
|
}); err != nil { |
|
|
logger.Error("Error publishing new block header", "err", err) |
|
|
|
|
|
|
|
|
logger.Error("failed publishing new block header", "err", err) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if len(block.Evidence.Evidence) != 0 { |
|
|
if len(block.Evidence.Evidence) != 0 { |
|
@ -499,7 +502,7 @@ func fireEvents( |
|
|
Evidence: ev, |
|
|
Evidence: ev, |
|
|
Height: block.Height, |
|
|
Height: block.Height, |
|
|
}); err != nil { |
|
|
}); err != nil { |
|
|
logger.Error("Error publishing new evidence", "err", err) |
|
|
|
|
|
|
|
|
logger.Error("failed publishing new evidence", "err", err) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -511,14 +514,14 @@ func fireEvents( |
|
|
Tx: tx, |
|
|
Tx: tx, |
|
|
Result: *(abciResponses.DeliverTxs[i]), |
|
|
Result: *(abciResponses.DeliverTxs[i]), |
|
|
}}); err != nil { |
|
|
}}); err != nil { |
|
|
logger.Error("Error publishing event TX", "err", err) |
|
|
|
|
|
|
|
|
logger.Error("failed publishing event TX", "err", err) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if len(validatorUpdates) > 0 { |
|
|
if len(validatorUpdates) > 0 { |
|
|
if err := eventBus.PublishEventValidatorSetUpdates( |
|
|
if err := eventBus.PublishEventValidatorSetUpdates( |
|
|
types.EventDataValidatorSetUpdates{ValidatorUpdates: validatorUpdates}); err != nil { |
|
|
types.EventDataValidatorSetUpdates{ValidatorUpdates: validatorUpdates}); err != nil { |
|
|
logger.Error("Error publishing event", "err", err) |
|
|
|
|
|
|
|
|
logger.Error("failed publishing event", "err", err) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -537,15 +540,17 @@ func ExecCommitBlock( |
|
|
) ([]byte, error) { |
|
|
) ([]byte, error) { |
|
|
_, err := execBlockOnProxyApp(logger, appConnConsensus, block, store, initialHeight) |
|
|
_, err := execBlockOnProxyApp(logger, appConnConsensus, block, store, initialHeight) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
logger.Error("Error executing block on proxy app", "height", block.Height, "err", err) |
|
|
|
|
|
|
|
|
logger.Error("failed executing block on proxy app", "height", block.Height, "err", err) |
|
|
return nil, err |
|
|
return nil, err |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Commit block, get hash back
|
|
|
// Commit block, get hash back
|
|
|
res, err := appConnConsensus.CommitSync(context.Background()) |
|
|
res, err := appConnConsensus.CommitSync(context.Background()) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
logger.Error("Client error during proxyAppConn.CommitSync", "err", res) |
|
|
|
|
|
|
|
|
logger.Error("client error during proxyAppConn.CommitSync", "err", res) |
|
|
return nil, err |
|
|
return nil, err |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// ResponseCommit has no error or log, just data
|
|
|
// ResponseCommit has no error or log, just data
|
|
|
return res.Data, nil |
|
|
return res.Data, nil |
|
|
} |
|
|
} |