mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
ok now it works. Sortof. Still hangs, but hangs later, after writing pkh.
This commit is contained in:
parent
8cc057bbd4
commit
726ba629f5
1 changed files with 9 additions and 1 deletions
|
@ -121,7 +121,15 @@ func createWallet(privPass, pubPass, userSeed []byte,
|
|||
return err
|
||||
}
|
||||
|
||||
manager.Close()
|
||||
err = manager.Close()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
err = db.Close()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
fmt.Println("The lnwallet has been created successfully.")
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue