rollmint icon indicating copy to clipboard operation
rollmint copied to clipboard

Remove the use of commit

Open nashqueue opened this issue 1 year ago • 0 comments

message Commit {
	repeated bytes signatures = 1;
}

message SignedHeader {
	Header header = 1;
	Commit commit = 2;

We currently use Commit in Signed Header even though it only has one field. (rollkit.proto) We should remove it and have Signed Header be Header + Signature.

In the same Pr, we can remove the commit in types/block.go .

nashqueue avatar Mar 15 '23 17:03 nashqueue