diff --git a/go.mod b/go.mod index a3aac66f..2fe123bd 100644 --- a/go.mod +++ b/go.mod @@ -11,9 +11,7 @@ require ( github.com/klauspost/compress v1.11.3 github.com/mitchellh/go-homedir v1.1.0 github.com/mr-tron/base58 v1.1.3 - github.com/multiformats/go-multiaddr v0.2.0 - github.com/multiformats/go-multiaddr-net v0.1.2 // v0.1.1 => v0.1.2 - github.com/multiformats/go-multihash v0.0.13 // indirect + github.com/multiformats/go-multiaddr v0.3.1 github.com/nspcc-dev/hrw v1.0.9 github.com/nspcc-dev/neo-go v0.94.2-pre.0.20210514140956-2cb878cb7a0f github.com/nspcc-dev/neofs-api-go v1.26.0 diff --git a/go.sum b/go.sum index 2d39f6d1..b58084e9 100644 Binary files a/go.sum and b/go.sum differ diff --git a/pkg/network/address.go b/pkg/network/address.go index b26d4723..163ebe53 100644 --- a/pkg/network/address.go +++ b/pkg/network/address.go @@ -5,7 +5,7 @@ import ( "strings" "github.com/multiformats/go-multiaddr" - manet "github.com/multiformats/go-multiaddr-net" + manet "github.com/multiformats/go-multiaddr/net" "github.com/pkg/errors" )