mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-11-29 00:23:14 +00:00
8 lines
316 B
Go
8 lines
316 B
Go
package model
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
// ErrBlockNotInSelectedParentChain is returned from CreateHeadersSelectedChainBlockLocator if one of the parameters
|
|
// passed to it are not in the headers selected parent chain
|
|
var ErrBlockNotInSelectedParentChain = errors.New("Block is not in selected parent chain")
|