Files
prysm/validator/accounts/wallet_recover_fuzz_test.go
terence 774b9a7159 Migrate Prysm repo to Offchain Labs organization ahead of Pectra V6 (#15140)
* Migrate Prysm repo to Offchain Labs organization ahead of Pectra upgrade v6

* Replace prysmaticlabs with OffchainLabs on general markdowns

* Update mock

* Gazelle and add mock.go to excluded generated mock file
2025-04-10 15:40:39 +00:00

20 lines
734 B
Go

//go:build go1.18
package accounts_test
import (
"testing"
"github.com/OffchainLabs/prysm/v6/validator/accounts"
)
func FuzzValidateMnemonic(f *testing.F) {
f.Add("bag wagon luxury iron swarm yellow course merge trumpet wide decide cash idea disagree deny teach canvas profit slice beach iron sting warfare slide")
f.Add("bag wagon luxury iron swarm yellow course merge trumpet wide cash idea disagree deny teach canvas profit iron sting warfare slide")
f.Add("bag wagon luxury iron swarm yellow course merge trumpet cash wide decide profit cash idea disagree deny teach canvas profit slice beach iron sting warfare slide")
f.Fuzz(func(t *testing.T, input string) {
err := accounts.ValidateMnemonic(input)
_ = err
})
}