mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
9 lines
217 B
Go
9 lines
217 B
Go
|
package local
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrNoPasswords = errors.New("no passwords provided for keystores")
|
||
|
ErrMismatchedNumPasswords = errors.New("number of passwords does not match number of keystores")
|
||
|
)
|