From fb2440a72a34f095cbe78c683327e638d1d4410d Mon Sep 17 00:00:00 2001 From: Matej Pavlovic Date: Fri, 28 Jul 2023 15:14:31 +0200 Subject: [PATCH] Update libp2p dependency (#504) This was a cause of the networking module very easily dropping messages under load. --- pkg/net/libp2p/remoteconnection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/net/libp2p/remoteconnection.go b/pkg/net/libp2p/remoteconnection.go index 1feb554db..8b24be114 100644 --- a/pkg/net/libp2p/remoteconnection.go +++ b/pkg/net/libp2p/remoteconnection.go @@ -11,7 +11,7 @@ import ( "github.com/libp2p/go-libp2p/core/host" "github.com/libp2p/go-libp2p/core/network" "github.com/libp2p/go-libp2p/core/peer" - "github.com/libp2p/go-yamux/v3" + "github.com/libp2p/go-yamux/v4" "google.golang.org/protobuf/proto" "github.com/filecoin-project/mir/pkg/logging"