Skip to content

Commit

Permalink
query: fix compile error due to package rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed Aug 22, 2018
1 parent a3da65d commit 817581a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query.go
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ func (s *ChainService) GetBlock(blockHash chainhash.Hash,
if err == nil && blockValue != nil {
return blockValue.(*cache.CacheableBlock).Block, err
}
if err != nil && err != lru.ErrElementNotFound {
if err != nil && err != cache.ErrElementNotFound {
return nil, err
}

Expand Down

0 comments on commit 817581a

Please sign in to comment.