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 92a1041 commit d16ab8dCopy full SHA for d16ab8d
itest/litd_node.go
@@ -652,7 +652,10 @@ func renameFile(fromFileName, toFileName string) {
652
func (hn *HarnessNode) overrideFlagsAndBinary(backwardCompat map[string]string,
653
binary string, args []LitArgOption) (string, []LitArgOption) {
654
655
- if backwardCompat == nil {
+ noopArg := WithLitArg("taproot-assets.channel.noop-htlcs", "")
656
+
657
+ if _, ok := backwardCompat[hn.Name()]; !ok {
658
+ args = append(args, noopArg)
659
return binary, args
660
}
661
0 commit comments