From 83abefcf43f1a317b7edb6d67d34c3a884ca60f1 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Tue, 30 Dec 2025 01:27:58 -0600 Subject: [PATCH] refactor: update TestLinkProofValidation to use new ValidateLinkProof signature with network interface parameter --- pkg/link/establishment_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/link/establishment_test.go b/pkg/link/establishment_test.go index 2ddb89d..55913a9 100644 --- a/pkg/link/establishment_test.go +++ b/pkg/link/establishment_test.go @@ -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) }