diff options
author | 유용환 <33824408+eric-yoo@users.noreply.github.com> | 2019-05-04 18:17:47 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2019-05-04 18:17:47 +0800 |
commit | abeba0a1de8e276255beba46b048627a4f529720 (patch) | |
tree | a7f8491e30e37e3446b906361be29a023c5a5417 | |
parent | b6c0234e0b5c9d459d1ed784c910f6348890d56b (diff) | |
download | go-tangerine-abeba0a1de8e276255beba46b048627a4f529720.tar go-tangerine-abeba0a1de8e276255beba46b048627a4f529720.tar.gz go-tangerine-abeba0a1de8e276255beba46b048627a4f529720.tar.bz2 go-tangerine-abeba0a1de8e276255beba46b048627a4f529720.tar.lz go-tangerine-abeba0a1de8e276255beba46b048627a4f529720.tar.xz go-tangerine-abeba0a1de8e276255beba46b048627a4f529720.tar.zst go-tangerine-abeba0a1de8e276255beba46b048627a4f529720.zip |
core/rawdb: fix typo (#19526)
-rw-r--r-- | core/rawdb/schema.go | 4 |
1 files 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. |