Skip to content
Snippets Groups Projects
Commit b79a3652 authored by Sydney Anne Erickson's avatar Sydney Anne Erickson :chipmunk:
Browse files

Remove ClientVersion from Manager

parent 9192b85f
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,10 @@ package network ...@@ -11,6 +11,10 @@ package network
// and intraclient state are accessible through the context object. // and intraclient state are accessible through the context object.
import ( import (
"sync/atomic"
"time"
"github.com/pkg/errors" "github.com/pkg/errors"
"gitlab.com/elixxir/client/interfaces" "gitlab.com/elixxir/client/interfaces"
"gitlab.com/elixxir/client/interfaces/params" "gitlab.com/elixxir/client/interfaces/params"
...@@ -27,9 +31,6 @@ import ( ...@@ -27,9 +31,6 @@ import (
"gitlab.com/elixxir/comms/network" "gitlab.com/elixxir/comms/network"
"gitlab.com/elixxir/crypto/fastRNG" "gitlab.com/elixxir/crypto/fastRNG"
"gitlab.com/xx_network/primitives/ndf" "gitlab.com/xx_network/primitives/ndf"
"sync/atomic"
"time"
) )
// Manager implements the NetworkManager interface inside context. It // Manager implements the NetworkManager interface inside context. It
...@@ -50,8 +51,6 @@ type manager struct { ...@@ -50,8 +51,6 @@ type manager struct {
//map of polls for debugging //map of polls for debugging
tracker *pollTracker tracker *pollTracker
clientVersion string
} }
// NewManager builds a new reception manager object using inputted key fields // NewManager builds a new reception manager object using inputted key fields
...@@ -78,7 +77,6 @@ func NewManager(session *storage.Session, switchboard *switchboard.Switchboard, ...@@ -78,7 +77,6 @@ func NewManager(session *storage.Session, switchboard *switchboard.Switchboard,
param: params, param: params,
running: &running, running: &running,
tracker: newPollTracker(), tracker: newPollTracker(),
clientVersion: clientVersion,
} }
m.Internal = internal.Internal{ m.Internal = internal.Internal{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment