dump+root: fix hard coded version and linter

pull/88/head
Oliver Gugger 6 months ago
parent fac990905f
commit a2f8a0e27e
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

@ -36,7 +36,7 @@ const (
// lndVersion is the current version of lnd that we support. This is
// shown in some commands that affect the database and its migrations.
lndVersion = "v0.16.0-beta"
lndVersion = "v0.17.0-beta"
Commit = ""
)

@ -272,7 +272,9 @@ func CollectDebugInfo(channel *channeldb.OpenChannel,
return nil, err
}
toRemotePkScript, err := txscript.ParsePkScript(toRemoteScript.PkScript())
toRemotePkScript, err := txscript.ParsePkScript(
toRemoteScript.PkScript(),
)
if err != nil {
return nil, err
}

Loading…
Cancel
Save