mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
Remove signed block requirement from no-verify functions (#13314)
* removing fake wrappers * fixing conficts and missed tests * fixing more conflicts * addressing missed unit test * fixing nogo error * fixing more unit tests * fixing more tests
This commit is contained in:
@@ -23,7 +23,9 @@ var (
|
||||
// ErrNilObject is returned in a constructor when the underlying object is nil.
|
||||
ErrNilObject = errors.New("received nil object")
|
||||
// ErrNilSignedBeaconBlock is returned when a nil signed beacon block is received.
|
||||
ErrNilSignedBeaconBlock = errors.New("signed beacon block can't be nil")
|
||||
ErrNilSignedBeaconBlock = errors.New("signed beacon block can't be nil")
|
||||
// ErrNilBeaconBlock is returned when a nil beacon block is received.
|
||||
ErrNilBeaconBlock = errors.New("beacon block can't be nil")
|
||||
errNonBlindedSignedBeaconBlock = errors.New("can only build signed beacon block from blinded format")
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user