Update error.go

Edit "Genesis" to "genesis"
This commit is contained in:
PilkyuJung 2019-05-13 19:06:21 +09:00 committed by GitHub
parent 844d1752aa
commit 5ba86fce95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,5 +34,5 @@ var (
ErrNonceTooHigh = errors.New("nonce too high") ErrNonceTooHigh = errors.New("nonce too high")
// ErrNoGenesis is returned when there is no Genesis Block. // ErrNoGenesis is returned when there is no Genesis Block.
ErrNoGenesis = errors.New("Genesis not found in chain") ErrNoGenesis = errors.New("genesis not found in chain")
) )