Skip to content

Commit

Permalink
Add stub for VerifySignature when build tag blst_disabled is set (#12246
Browse files Browse the repository at this point in the history
)

Co-authored-by: Radosław Kapka <[email protected]>
  • Loading branch information
PatriceVignola and rkapka authored Jun 12, 2024
1 parent 8ac1647 commit 070a765
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crypto/bls/blst/stub.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ func AggregateCompressedSignatures(multiSigs [][]byte) (common.Signature, error)
panic(err)
}

// VerifySignature -- stub
func VerifySignature(_ []byte, _ [32]byte, _ common.PublicKey) (bool, error) {
panic(err)
}

// VerifyMultipleSignatures -- stub
func VerifyMultipleSignatures(_ [][]byte, _ [][32]byte, _ []common.PublicKey) (bool, error) {
panic(err)
Expand Down

0 comments on commit 070a765

Please sign in to comment.