mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-13 21:31:23 +00:00
Update EndBlock parameters
* Update abci dependencies * Modify references from Diffs to Changes * Fixes issues #924
This commit is contained in:
committed by
Ethan Buchman
parent
652d1e3de8
commit
4265a94bfe
@ -111,11 +111,11 @@ func execBlockOnProxyApp(txEventPublisher types.TxEventPublisher, proxyAppConn p
|
||||
return nil, err
|
||||
}
|
||||
|
||||
valDiff := abciResponses.EndBlock.Diffs
|
||||
valChanges := abciResponses.EndBlock.Changes
|
||||
|
||||
logger.Info("Executed block", "height", block.Height, "validTxs", validTxs, "invalidTxs", invalidTxs)
|
||||
if len(valDiff) > 0 {
|
||||
logger.Info("Update to validator set", "updates", abci.ValidatorsString(valDiff))
|
||||
if len(valChanges) > 0 {
|
||||
logger.Info("Update to validator set", "updates", abci.ValidatorsString(valChanges))
|
||||
}
|
||||
|
||||
return abciResponses, nil
|
||||
|
Reference in New Issue
Block a user