Skip to content

Commit 629d381

Browse files
committed
rescuefunding: fix local vs. remote chan cfg
1 parent d1eb72b commit 629d381

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/chantools/rescuefunding.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ func (c *rescueFundingCommand) Execute(_ *cobra.Command, _ []string) error {
185185
}
186186

187187
localKeyDesc = &pendingChan.LocalChanCfg.MultiSigKey
188-
remotePubKey = pendingChan.LocalChanCfg.MultiSigKey.PubKey
188+
remotePubKey = pendingChan.RemoteChanCfg.MultiSigKey.PubKey
189189

190190
case c.RemotePubKey != "":
191191
remoteKeyBytes, err := hex.DecodeString(c.RemotePubKey)

cmd/chantools/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
const (
2828
defaultAPIURL = "https://blockstream.info/api"
29-
version = "0.9.4"
29+
version = "0.9.5"
3030
na = "n/a"
3131

3232
Commit = ""

0 commit comments

Comments
 (0)