mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
fix
This commit is contained in:
parent
0cfc779eec
commit
6c3db71f7f
1 changed files with 2 additions and 2 deletions
|
|
@ -111,13 +111,13 @@ func FuzzG2SubgroupChecks(f *testing.F) {
|
|||
})
|
||||
}
|
||||
|
||||
func FuzzG2Mul(t *testing.F) {
|
||||
func FuzzG2Mul(f *testing.F) {
|
||||
f.Fuzz(func(t *testing.T, data []byte) {
|
||||
fuzz(blsG2Mul, data)
|
||||
})
|
||||
}
|
||||
|
||||
func FuzzG1Mul(t *testing.F) {
|
||||
func FuzzG1Mul(f *testing.F) {
|
||||
f.Fuzz(func(t *testing.T, data []byte) {
|
||||
fuzz(blsG1Mul, data)
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue