chore: waku-go-bindings -> logos-messaging-go-bindings

This commit is contained in:
Ivan Folgueira Bande 2025-12-12 22:48:53 +01:00
parent 9a9a9e5c88
commit 3d5e8e550b
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7
11 changed files with 24 additions and 26 deletions

View File

@ -5,7 +5,7 @@ Go bindings for the Waku library.
## Install
```
go get -u github.com/waku-org/waku-go-bindings
go get -u github.com/logos-messaging/logos-messaging-go-bindings
```
## Dependencies

View File

@ -6,7 +6,7 @@ import (
"os"
"runtime"
"github.com/waku-org/waku-go-bindings/utils"
"github.com/logos-messaging/logos-messaging-go-bindings/utils"
)
var (

View File

@ -4,8 +4,8 @@ import (
"testing"
"time"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
"github.com/stretchr/testify/require"
"github.com/waku-org/waku-go-bindings/waku/common"
)
func TestBasicWakuNodes(t *testing.T) {
@ -29,7 +29,7 @@ func TestBasicWakuNodes(t *testing.T) {
Debug("TestBasicWakuNodes completed successfully")
}
/* artifact https://github.com/waku-org/waku-go-bindings/issues/40 */
/* artifact https://github.com/logos-messaging/logos-messaging-go-bindings/issues/40 */
func TestNodeRestart(t *testing.T) {
t.Skip("Skipping test for open artifact ")
Debug("Starting TestNodeRestart")

View File

@ -360,7 +360,7 @@ import (
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
"github.com/waku-org/go-waku/waku/v2/utils"
"github.com/waku-org/waku-go-bindings/waku/common"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
)
const requestTimeout = 30 * time.Second

View File

@ -13,11 +13,11 @@ import (
"github.com/cenkalti/backoff/v3"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
ma "github.com/multiformats/go-multiaddr"
"github.com/stretchr/testify/require"
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
"github.com/waku-org/go-waku/waku/v2/protocol/store"
"github.com/waku-org/waku-go-bindings/waku/common"
)
// In order to run this test, you must run an nwaku node

View File

@ -16,9 +16,9 @@ import (
"github.com/cenkalti/backoff/v3"
"github.com/libp2p/go-libp2p/core/peer"
"github.com/logos-messaging/logos-messaging-go-bindings/utils"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
"github.com/waku-org/waku-go-bindings/utils"
"github.com/waku-org/waku-go-bindings/waku/common"
"google.golang.org/protobuf/proto"
)

View File

@ -5,8 +5,8 @@ import (
"testing"
"time"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
"github.com/stretchr/testify/require"
"github.com/waku-org/waku-go-bindings/waku/common"
)
// Test node connect & disconnect peers

View File

@ -7,9 +7,9 @@ import (
"time"
"github.com/cenkalti/backoff/v3"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
"github.com/stretchr/testify/require"
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
"github.com/waku-org/waku-go-bindings/waku/common"
"google.golang.org/protobuf/proto"
)

View File

@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
"github.com/waku-org/waku-go-bindings/waku/common"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
"google.golang.org/protobuf/proto"
)

View File

@ -10,8 +10,8 @@ import (
"testing"
"time"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
"github.com/stretchr/testify/require"
"github.com/waku-org/waku-go-bindings/waku/common"
// "go.uber.org/zap/zapcore"
"google.golang.org/protobuf/proto"
@ -157,13 +157,11 @@ func TestStressHighThroughput10kPublish(t *testing.T) {
err = node2.VerifyMessageReceived(msg, hash)
require.NoError(t, err, "verification failed @%d", i)
}
captureMemory(t.Name(), "at end")
}
func TestStressConnectDisconnect1kIteration(t *testing.T) {
captureMemory(t.Name(), "at start")

View File

@ -4,7 +4,7 @@ import (
"fmt"
"time"
"github.com/waku-org/waku-go-bindings/waku/common"
"github.com/logos-messaging/logos-messaging-go-bindings/waku/common"
"google.golang.org/protobuf/proto"
)