Skip to content

Commit e04e291

Browse files
committed
wip
1 parent 8af315b commit e04e291

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+240
-656
lines changed

dot/core/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package core
66
import (
77
"sync"
88

9-
"github.com/libp2p/go-libp2p-core/peer"
9+
"github.com/libp2p/go-libp2p/core/peer"
1010

1111
"github.com/ChainSafe/gossamer/dot/network"
1212
"github.com/ChainSafe/gossamer/dot/peerset"

dot/core/messages.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/ChainSafe/gossamer/lib/runtime"
1414
"github.com/ChainSafe/gossamer/lib/transaction"
1515

16-
"github.com/libp2p/go-libp2p-core/peer"
16+
"github.com/libp2p/go-libp2p/core/peer"
1717
)
1818

1919
func (s *Service) validateTransaction(peerID peer.ID, head *types.Header, rt RuntimeInstance,

dot/core/messages_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"github.com/ChainSafe/gossamer/pkg/scale"
2424

2525
"github.com/golang/mock/gomock"
26-
"github.com/libp2p/go-libp2p-core/peer"
26+
"github.com/libp2p/go-libp2p/core/peer"
2727
"github.com/stretchr/testify/require"
2828
)
2929

dot/core/messages_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/ChainSafe/gossamer/lib/transaction"
1818

1919
"github.com/golang/mock/gomock"
20-
"github.com/libp2p/go-libp2p-core/peer"
20+
"github.com/libp2p/go-libp2p/core/peer"
2121
"github.com/stretchr/testify/assert"
2222
)
2323

dot/core/mocks_test.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dot/network/block_announce.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/ChainSafe/gossamer/lib/common"
1313
"github.com/ChainSafe/gossamer/pkg/scale"
1414

15-
"github.com/libp2p/go-libp2p-core/peer"
15+
"github.com/libp2p/go-libp2p/core/peer"
1616
)
1717

1818
var (

dot/network/block_announce_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/ChainSafe/gossamer/lib/common"
1111
"github.com/ChainSafe/gossamer/pkg/scale"
1212

13-
"github.com/libp2p/go-libp2p-core/peer"
13+
"github.com/libp2p/go-libp2p/core/peer"
1414
"github.com/stretchr/testify/require"
1515
)
1616

dot/network/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path"
99
"time"
1010

11-
"github.com/libp2p/go-libp2p-core/crypto"
11+
"github.com/libp2p/go-libp2p/core/crypto"
1212

1313
"github.com/ChainSafe/gossamer/dot/telemetry"
1414
"github.com/ChainSafe/gossamer/internal/log"

dot/network/connmgr.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"context"
88
"sync"
99

10-
"github.com/libp2p/go-libp2p-core/connmgr"
11-
"github.com/libp2p/go-libp2p-core/network"
12-
"github.com/libp2p/go-libp2p-core/peer"
10+
"github.com/libp2p/go-libp2p/core/connmgr"
11+
"github.com/libp2p/go-libp2p/core/network"
12+
"github.com/libp2p/go-libp2p/core/peer"
1313
ma "github.com/multiformats/go-multiaddr"
1414

1515
"github.com/ChainSafe/gossamer/dot/peerset"

dot/network/connmgr_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/libp2p/go-libp2p-core/peer"
11-
"github.com/libp2p/go-libp2p-core/peerstore"
10+
"github.com/libp2p/go-libp2p/core/peer"
11+
"github.com/libp2p/go-libp2p/core/peerstore"
1212
"github.com/stretchr/testify/require"
1313

1414
"github.com/ChainSafe/gossamer/dot/peerset"

0 commit comments

Comments
 (0)