-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
v0.34.X Block Results RPC:
// ABCI results from a block
type ResultBlockResults struct {
Height int64 `json:"height"`
TxsResults []*abci.ResponseDeliverTx `json:"txs_results"`
BeginBlockEvents []abci.Event `json:"begin_block_events"`
EndBlockEvents []abci.Event `json:"end_block_events"`
ValidatorUpdates []abci.ValidatorUpdate `json:"validator_updates"`
ConsensusParamUpdates *abci.ConsensusParams `json:"consensus_param_updates"`
}
v0.38.X Block Results RPC:
// ABCI results from a block
type ResultBlockResults struct {
Height int64 `json:"height"`
TxsResults []*abci.ExecTxResult `json:"txs_results"`
FinalizeBlockEvents []abci.Event `json:"finalize_block_events"`
ValidatorUpdates []abci.ValidatorUpdate `json:"validator_updates"`
ConsensusParamUpdates *cmtproto.ConsensusParams `json:"consensus_param_updates"`
AppHash []byte `json:"app_hash"`
}
The relayer currently looks for begin and end blocks here after performing this rpc query
This results in no begin/end block results for chains on SDK v0.50
Begin/End block event parsing is needed for interchain accounts integration with gov/groups SDK modules
Metadata
Metadata
Assignees
Labels
No labels