diff --git a/.changelog/5430.trivial.md b/.changelog/5430.trivial.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/go/oasis-node/cmd/common/grpc/grpc.go b/go/oasis-node/cmd/common/grpc/grpc.go index 84cf4d98dc9..5afe5516a19 100644 --- a/go/oasis-node/cmd/common/grpc/grpc.go +++ b/go/oasis-node/cmd/common/grpc/grpc.go @@ -3,7 +3,6 @@ package grpc import ( "crypto/tls" - "errors" "fmt" "os" "strings" @@ -64,11 +63,6 @@ func NewServerTCP(cert *tls.Certificate, installWrapper bool) (*cmnGrpc.Server, // This internally takes a snapshot of the current global tracer, so // make sure you initialize the global tracer before calling this. func NewServerLocal(installWrapper bool) (*cmnGrpc.Server, error) { - dataDir := common.DataDir() - if dataDir == "" { - return nil, errors.New("data directory must be set") - } - config := &cmnGrpc.ServerConfig{ Name: "internal", Path: common.InternalSocketPath(),