core: move error variable to error.go (#19560)
* move error variable to error.go * Update error.go Edit "Genesis" to "genesis"
This commit is contained in:
committed by
Péter Szilágyi
parent
db83ba4067
commit
ec2131c8d3
@ -32,4 +32,7 @@ var (
|
||||
// ErrNonceTooHigh is returned if the nonce of a transaction is higher than the
|
||||
// next one expected based on the local chain.
|
||||
ErrNonceTooHigh = errors.New("nonce too high")
|
||||
|
||||
// ErrNoGenesis is returned when there is no Genesis Block.
|
||||
ErrNoGenesis = errors.New("genesis not found in chain")
|
||||
)
|
||||
|
Reference in New Issue
Block a user