wallet creation works, takes 11 seconds

This commit is contained in:
Tadge Dryja 2015-12-31 12:17:41 -04:00 committed by Olaoluwa Osuntokun
parent 726ba629f5
commit 19233dc42d

@ -299,6 +299,10 @@ func NewLightningWallet(config *Config) (*LightningWallet, error) {
if err != nil {
return nil, err
}
err = db.Close()
if err != nil {
return nil, err
}
log.Printf("stored identity key pubkey hash in channeldb\n")
}