Skip to content

Commit a2f8a0e

Browse files
committed
dump+root: fix hard coded version and linter
1 parent fac9909 commit a2f8a0e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

cmd/chantools/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const (
3636

3737
// lndVersion is the current version of lnd that we support. This is
3838
// shown in some commands that affect the database and its migrations.
39-
lndVersion = "v0.16.0-beta"
39+
lndVersion = "v0.17.0-beta"
4040

4141
Commit = ""
4242
)

dump/dump.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,9 @@ func CollectDebugInfo(channel *channeldb.OpenChannel,
272272
return nil, err
273273
}
274274

275-
toRemotePkScript, err := txscript.ParsePkScript(toRemoteScript.PkScript())
275+
toRemotePkScript, err := txscript.ParsePkScript(
276+
toRemoteScript.PkScript(),
277+
)
276278
if err != nil {
277279
return nil, err
278280
}

0 commit comments

Comments
 (0)