lnwallet: don't flip local/remote leaves

This commit is contained in:
Oliver Gugger 2024-04-29 21:28:05 +02:00
parent 0af8ce4c54
commit 8d5d15904b
No known key found for this signature in database
GPG Key ID: 8E4256593F177720

View File

@ -961,19 +961,12 @@ func (cb *CommitmentBuilder) createUnsignedCommitmentTx(ourBalance,
auxLeaves,
)
} else {
// If we have aux leaves, then we'll actually reverse them for
// the commitment of the remote party.
remoteAuxLeaves := fn.MapOption(
func(leaves CommitAuxLeaves) CommitAuxLeaves {
return leaves.ForRemoteCommit()
},
)(auxLeaves)
commitTx, err = CreateCommitTx(
cb.chanState.ChanType, fundingTxIn(cb.chanState), keyRing,
&cb.chanState.RemoteChanCfg, &cb.chanState.LocalChanCfg,
theirBalance.ToSatoshis(), ourBalance.ToSatoshis(),
numHTLCs, !cb.chanState.IsInitiator, leaseExpiry,
remoteAuxLeaves,
auxLeaves,
)
}
if err != nil {