Fix incorrect parameter in rescuefunding

pull/17/head v0.4.1
Oliver Gugger 4 years ago
parent 4a633da99e
commit 18ef40fe5a
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

@ -23,7 +23,7 @@ import (
const (
defaultAPIURL = "https://blockstream.info/api"
version = "0.4.0"
version = "0.4.1"
)
var (

@ -94,7 +94,7 @@ func (c *rescueFundingCommand) Execute(_ []string) error {
if len(c.ConfirmedOutPoint) == 0 {
chainOp = dbOp
} else {
chainOp, err = lnd.ParseOutpoint(c.ChannelPoint)
chainOp, err = lnd.ParseOutpoint(c.ConfirmedOutPoint)
if err != nil {
return fmt.Errorf("error parsing confirmed channel "+
"point: %v", err)

Loading…
Cancel
Save