You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RequestExtendVote was requested to be updated from the comet team, there needs to be a few fields added. Sergio had spoken to Marko but should be fixed for 0.50 release
// the hash of the block that this vote may be referring to
byteshash=1;
// the height of the extended vote
int64height=2;
Should be
message RequestExtendVote {
// the hash of the block that this vote may be referring to
bytes hash = 1;
// the height of the extended vote
int64 height = 2;
// info of the block that this vote may be referring to
google.protobuf.Timestamp time = 3 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true];
repeated bytes txs = 4;
CommitInfo proposed_last_commit = 5 [(gogoproto.nullable) = false];
repeated Misbehavior misbehavior = 6 [(gogoproto.nullable) = false];
bytes next_validators_hash = 7;
// address of the public key of the original proposer of the block.
bytes proposer_address = 8;
}
Cosmos SDK Version
0.50
How to reproduce?
No response
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
What happened?
RequestExtendVote was requested to be updated from the comet team, there needs to be a few fields added. Sergio had spoken to Marko but should be fixed for 0.50 release
cosmos-sdk/proto/tendermint/abci/types.proto
Lines 155 to 159 in a556bc4
Should be
Cosmos SDK Version
0.50
How to reproduce?
No response
The text was updated successfully, but these errors were encountered: