From d7fe41c4a22224dbfb58ca8e35d7ecb889aa332a Mon Sep 17 00:00:00 2001 From: "Enot (ded) Skelly" Date: Thu, 23 Jul 2026 09:54:36 -0700 Subject: [PATCH] fix: missing db test stub --- internal/ingest/ingest_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/ingest/ingest_test.go b/internal/ingest/ingest_test.go index 0b2fc43..15c54fc 100644 --- a/internal/ingest/ingest_test.go +++ b/internal/ingest/ingest_test.go @@ -217,6 +217,10 @@ func (s *stubDB) GetNodeByPubkey(_ context.Context, _ []byte) (uuid.UUID, error) return uuid.Nil, errors.New("not found") } +func (s *stubDB) GetNodesByIDs(_ context.Context, _ []uuid.UUID) (map[uuid.UUID]*api.ResolvedNode, error) { + return nil, nil +} + func (s *stubDB) InsertChannelMessage(_ context.Context, _ InsertChannelMessageParams) (bool, error) { return false, nil }