erigon-pulse/cl/spectest/consensus_tests/bls.go
a cda14447ad
[caplin] pkg refactor (#7507)
Co-authored-by: Giulio <giulio.rebuffo@gmail.com>
2023-05-13 23:44:07 +02:00

29 lines
686 B
Go

package consensus_tests
import (
"io/fs"
"testing"
"github.com/ledgerwatch/erigon/spectest"
)
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
}