mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
7aee67af90
* add proto for withdrawal containers * process BLSToExecutionChange * unit tests * go fmt * gaz * unused error * Fix import error * Radek's review * failed test Co-authored-by: terence tsao <terence@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
9 lines
391 B
Go
9 lines
391 B
Go
package blocks
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
var errNilSignedWithdrawalMessage = errors.New("nil SignedBLSToExecutionChange message")
|
|
var errNilWithdrawalMessage = errors.New("nil BLSToExecutionChange message")
|
|
var errInvalidBLSPrefix = errors.New("withdrawal credential prefix is not a BLS prefix")
|
|
var errInvalidWithdrawalCredentials = errors.New("withdrawal credentials do not match")
|