Fix spelling mistake

This commit is contained in:
Adrian Brink 2018-01-08 10:02:57 +01:00 committed by Emmanuel Odeke
parent 206da7a1b8
commit 7790ae9e6f
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ func (m *memStoreProvider) GetByHeightBinarySearch(h int64) (FullCommit, error)
var midFC FullCommit
// Our goal is to either find:
// * item ByHeight with the query
// * heighest height with a height <= query
// * greatest height with a height <= query
for low <= high {
mid = int(uint(low+high) >> 1) // Avoid an overflow
midFC = m.byHeight[mid]