631e76519e
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.
8 lines
106 B
Go
8 lines
106 B
Go
package channeldb
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
ErrNoExists = fmt.Errorf("channel db has not yet been created")
|
|
)
|