lnd.xprv/channeldb/error.go
Olaoluwa Osuntokun 631e76519e channeldb: switch to Open/Create methods rather than New
Commit includes basic tests for Open/Create. Additionally, rather than
relying on btcwallet’s addmgr for encryption/decryption, this package
now exposes a simple crypto system interface.
2016-03-23 22:11:57 -07:00

8 lines
106 B
Go

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