From abeba0a1de8e276255beba46b048627a4f529720 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EC=9A=A9=ED=99=98?= <33824408+eric-yoo@users.noreply.github.com> Date: Sat, 4 May 2019 19:17:47 +0900 Subject: [PATCH] core/rawdb: fix typo (#19526) --- core/rawdb/schema.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/rawdb/schema.go b/core/rawdb/schema.go index 87dbf94fc..62b60e2f3 100644 --- a/core/rawdb/schema.go +++ b/core/rawdb/schema.go @@ -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.