Skip to content
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

feat: testing discovery and dialing with nwaku integration #5940

Merged
merged 16 commits into from
Oct 15, 2024
Merged
3 changes: 2 additions & 1 deletion wakuv2/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

package wakuv2

/* TODO-nwaku
import (
"context"
"crypto/ecdsa"
Expand Down Expand Up @@ -513,4 +514,4 @@ func (api *PublicWakuAPI) NewMessageFilter(req Criteria) (string, error) {
api.mu.Unlock()

return id, nil
}
} */
3 changes: 2 additions & 1 deletion wakuv2/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

package wakuv2

/* TODO-nwaku
import (
"testing"
"time"
Expand Down Expand Up @@ -67,4 +68,4 @@ func TestMultipleTopicCopyInNewMessageFilter(t *testing.T) {
if !found {
t.Fatalf("Could not find filter with both topics")
}
}
} */
3 changes: 2 additions & 1 deletion wakuv2/message_publishing.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package wakuv2

/* TODO-nwaku
import (
"errors"

Expand Down Expand Up @@ -160,4 +161,4 @@ func (w *Waku) publishEnvelope(envelope *protocol.Envelope, publishFn publish.Pu
})
}
}
}
} */
Loading