core/rawdb: fix typo (#19526)

This commit is contained in:
유용환 2019-05-04 19:17:47 +09:00 committed by Felix Lange
parent b6c0234e0b
commit abeba0a1de

View File

@ -29,10 +29,10 @@ var (
// databaseVerisionKey tracks the current database version.
databaseVerisionKey = []byte("DatabaseVersion")
// headHeaderKey tracks the latest know header's hash.
// headHeaderKey tracks the latest known header's hash.
headHeaderKey = []byte("LastHeader")
// headBlockKey tracks the latest know full block's hash.
// headBlockKey tracks the latest known full block's hash.
headBlockKey = []byte("LastBlock")
// headFastBlockKey tracks the latest known incomplete block's hash during fast sync.