lnd/channeldb/error.go

8 lines
106 B
Go

package channeldb
import "fmt"
var (
ErrNoExists = fmt.Errorf("channel db has not yet been created")
)