Skip to content

Commit

Permalink
Allow blocksync to not verify all signatures (cometbft#1858)
Browse files Browse the repository at this point in the history
* Blocksync can skip sigs

* bump
  • Loading branch information
sergio-mena committed Dec 20, 2023
1 parent ed8f87e commit 9446e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/blocksync/reactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ FOR_LOOP:
// first.Hash() doesn't verify the tx contents, so MakePartSet() is
// currently necessary.
// TODO(sergio): Should we also validate against the extended commit?
err = state.Validators.VerifyCommitLightAllSignatures(
err = state.Validators.VerifyCommitLight(
chainID, firstID, first.Height, second.LastCommit)

if err == nil {
Expand Down

0 comments on commit 9446e31

Please sign in to comment.