We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fac9909 commit a2f8a0eCopy full SHA for a2f8a0e
cmd/chantools/root.go
@@ -36,7 +36,7 @@ const (
36
37
// lndVersion is the current version of lnd that we support. This is
38
// shown in some commands that affect the database and its migrations.
39
- lndVersion = "v0.16.0-beta"
+ lndVersion = "v0.17.0-beta"
40
41
Commit = ""
42
)
dump/dump.go
@@ -272,7 +272,9 @@ func CollectDebugInfo(channel *channeldb.OpenChannel,
272
return nil, err
273
}
274
275
- toRemotePkScript, err := txscript.ParsePkScript(toRemoteScript.PkScript())
+ toRemotePkScript, err := txscript.ParsePkScript(
276
+ toRemoteScript.PkScript(),
277
+ )
278
if err != nil {
279
280
0 commit comments