mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-13 12:32:48 +02:00
Move the OpenChannel error definitions into chanstate and leave channeldb aliases for existing callers. These errors describe channel state behavior rather than a concrete KV bucket layout. Keeping the aliases preserves the public channeldb API while later commits move more OpenChannel state and receiver logic toward chanstate.
55 lines
1.9 KiB
Go
55 lines
1.9 KiB
Go
package chanstate
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
// ErrNoCommitmentsFound is returned when a channel has not set
|
|
// commitment states.
|
|
ErrNoCommitmentsFound = fmt.Errorf("no commitments found")
|
|
|
|
// ErrNoChanInfoFound is returned when a particular channel does not
|
|
// have any channels state.
|
|
ErrNoChanInfoFound = fmt.Errorf("no chan info found")
|
|
|
|
// ErrNoRevocationsFound is returned when revocation state for a
|
|
// particular channel cannot be found.
|
|
ErrNoRevocationsFound = fmt.Errorf("no revocations found")
|
|
|
|
// ErrNoPendingCommit is returned when there is not a pending
|
|
// commitment for a remote party. A new commitment is written to disk
|
|
// each time we write a new state in order to be properly fault
|
|
// tolerant.
|
|
ErrNoPendingCommit = fmt.Errorf("no pending commits found")
|
|
|
|
// ErrNoCommitPoint is returned when no data loss commit point is found
|
|
// in the database.
|
|
ErrNoCommitPoint = fmt.Errorf("no commit point found")
|
|
|
|
// ErrNoCloseTx is returned when no closing tx is found for a channel
|
|
// in the state CommitBroadcasted.
|
|
ErrNoCloseTx = fmt.Errorf("no closing tx found")
|
|
|
|
// ErrNoShutdownInfo is returned when no shutdown info has been
|
|
// persisted for a channel.
|
|
ErrNoShutdownInfo = errors.New("no shutdown info")
|
|
|
|
// ErrNoRestoredChannelMutation is returned when a caller attempts to
|
|
// mutate a channel that's been recovered.
|
|
ErrNoRestoredChannelMutation = fmt.Errorf("cannot mutate restored " +
|
|
"channel state")
|
|
|
|
// ErrChanBorked is returned when a caller attempts to mutate a borked
|
|
// channel.
|
|
ErrChanBorked = fmt.Errorf("cannot mutate borked channel")
|
|
|
|
// ErrMissingIndexEntry is returned when a caller attempts to close a
|
|
// channel and the outpoint is missing from the index.
|
|
ErrMissingIndexEntry = fmt.Errorf("missing outpoint from index")
|
|
|
|
// ErrOnionBlobLength is returned is an onion blob with incorrect
|
|
// length is read from disk.
|
|
ErrOnionBlobLength = errors.New("onion blob < 1366 bytes")
|
|
)
|