mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
a6dd561b9d
* Update head before block proposal * fix e2e runs * Can process blind withdrwals * Rm bad change * Should be in process payload header * Version check * Compare roots * Typo * Remove redundant checks * Add tests * Rm errors --------- Co-authored-by: nisdas <nishdas93@gmail.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")
|