mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
9644e6d220
a few TODO: remain to make this not a draft --------- Co-authored-by: Giulio <giulio.rebuffo@gmail.com>
29 lines
702 B
Go
29 lines
702 B
Go
package consensus_tests
|
|
|
|
import (
|
|
"io/fs"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/ef-tests-cl/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
|
|
}
|