refactor: update TestLinkProofValidation to use new ValidateLinkProof signature with network interface parameter

This commit is contained in:
2025-12-30 01:27:58 -06:00
parent 3d4b77bee3
commit 83abefcf43

View File

@@ -340,7 +340,7 @@ func TestLinkProofValidation(t *testing.T) {
t.Fatalf("Failed to generate link proof: %v", err)
}
if err := initiatorLink.ValidateLinkProof(proofPkt); err != nil {
if err := initiatorLink.ValidateLinkProof(proofPkt, nil); err != nil {
t.Fatalf("Initiator failed to validate link proof: %v", err)
}