Skip to content

Commit cf07232

Browse files
authored
feat: testing discovery and dialing with nwaku integration (#5940)
1 parent 62b6658 commit cf07232

File tree

5 files changed

+203
-145
lines changed

5 files changed

+203
-145
lines changed

wakuv2/api.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
package wakuv2
2020

21+
/* TODO-nwaku
2122
import (
2223
"context"
2324
"crypto/ecdsa"
@@ -513,4 +514,4 @@ func (api *PublicWakuAPI) NewMessageFilter(req Criteria) (string, error) {
513514
api.mu.Unlock()
514515
515516
return id, nil
516-
}
517+
} */

wakuv2/api_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
package wakuv2
2020

21+
/* TODO-nwaku
2122
import (
2223
"testing"
2324
"time"
@@ -67,4 +68,4 @@ func TestMultipleTopicCopyInNewMessageFilter(t *testing.T) {
6768
if !found {
6869
t.Fatalf("Could not find filter with both topics")
6970
}
70-
}
71+
} */

wakuv2/message_publishing.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package wakuv2
22

3+
/* TODO-nwaku
34
import (
45
"errors"
56
@@ -160,4 +161,4 @@ func (w *Waku) publishEnvelope(envelope *protocol.Envelope, publishFn publish.Pu
160161
})
161162
}
162163
}
163-
}
164+
} */

0 commit comments

Comments
 (0)