Skip to content

Fix initial commitment_signed for splicing #4014

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
4 changes: 4 additions & 0 deletions lightning/src/ln/async_signer_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,10 @@ fn do_test_async_commitment_signature_for_commitment_signed_revoke_and_ack(
assert!(events.is_empty(), "expected no message, got {}", events.len());
}
}

// Enable SignerOp::GetPerCommitmentPoint since testing the node serialization round-trip
// involves using the signer to get the previous holder commitment point.
dst.enable_channel_signer_op(&src_node_id, &chan_id, SignerOp::GetPerCommitmentPoint);
}

#[test]
Expand Down
Loading
Loading