mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
19 lines
606 B
Go
19 lines
606 B
Go
|
package chainntnfs
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
// ErrCorruptedHeightHintCache indicates that the on-disk representation
|
||
|
// has altered since the height hint cache instance was initialized.
|
||
|
ErrCorruptedHeightHintCache = errors.New("height hint cache has been " +
|
||
|
"corrupted")
|
||
|
|
||
|
// ErrSpendHintNotFound is an error returned when a spend hint for an
|
||
|
// outpoint was not found.
|
||
|
ErrSpendHintNotFound = errors.New("spend hint not found")
|
||
|
|
||
|
// ErrConfirmHintNotFound is an error returned when a confirm hint for a
|
||
|
// transaction was not found.
|
||
|
ErrConfirmHintNotFound = errors.New("confirm hint not found")
|
||
|
)
|