mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 22:23:11 +00:00
statesync: new messages for gossiping consensus params (#328)
This commit is contained in:
@@ -13,6 +13,8 @@ message Message {
|
||||
ChunkResponse chunk_response = 4;
|
||||
LightBlockRequest light_block_request = 5;
|
||||
LightBlockResponse light_block_response = 6;
|
||||
ParamsRequest params_request = 7;
|
||||
ParamsResponse params_response = 8;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,3 +49,12 @@ message LightBlockRequest {
|
||||
message LightBlockResponse {
|
||||
tendermint.types.LightBlock light_block = 1;
|
||||
}
|
||||
|
||||
message ParamsRequest {
|
||||
uint64 height = 1;
|
||||
}
|
||||
|
||||
message ParamsResponse {
|
||||
uint64 height = 1;
|
||||
tendermint.types.ConsensusParams consensus_params = 2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user