|
@ -1,7 +1,9 @@ |
|
|
syntax = "proto3"; |
|
|
syntax = "proto3"; |
|
|
package tendermint.statesync; |
|
|
package tendermint.statesync; |
|
|
|
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto"; |
|
|
import "tendermint/types/types.proto"; |
|
|
import "tendermint/types/types.proto"; |
|
|
|
|
|
import "tendermint/types/params.proto"; |
|
|
|
|
|
|
|
|
option go_package = "github.com/tendermint/tendermint/proto/tendermint/statesync"; |
|
|
option go_package = "github.com/tendermint/tendermint/proto/tendermint/statesync"; |
|
|
|
|
|
|
|
@ -55,6 +57,6 @@ message ParamsRequest { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
message ParamsResponse { |
|
|
message ParamsResponse { |
|
|
uint64 height = 1; |
|
|
|
|
|
tendermint.types.ConsensusParams consensus_params = 2; |
|
|
|
|
|
|
|
|
uint64 height = 1; |
|
|
|
|
|
tendermint.types.ConsensusParams consensus_params = 2 [(gogoproto.nullable) = false]; |
|
|
} |
|
|
} |