erigon-pulse/cl/spectest/consensus_tests/bls.go
a 436493350e
Sentinel refactor (#8296)
1. changes sentinel to use an http-like interface

2. moves hexutil, crypto/blake2b, metrics packages to erigon-lib
2023-10-22 01:17:18 +02:00

28 lines
685 B
Go

package consensus_tests
import (
"github.com/ledgerwatch/erigon/spectest"
"io/fs"
"testing"
)
type BlsAggregateVerify struct {
}
func (b *BlsAggregateVerify) Run(t *testing.T, root fs.FS, c spectest.TestCase) (err error) {
t.Skipf("Skipping BLS because it is done by library")
return
//var meta struct {
// Input struct {
// Pubkeys []hexutility.Bytes `yaml:"pubkeys"`
// Messages []common.Hash `yaml:"messages"`
// Signature hexutility.Bytes `yaml:"signature"`
// } `yaml:"input"`
// Output bool `yaml:"output"`
//}
//if err := spectest.ReadMeta(root, "data.yaml", &meta); err != nil {
// return err
//}
//return spectest.ErrorHandlerNotImplemented
}