From 332383fb1db3d755e7d21887a4d78f595f592a41 Mon Sep 17 00:00:00 2001 From: komuW Date: Thu, 19 Apr 2018 16:54:21 +0300 Subject: [PATCH] rm unused fields --- protocol/inmem_transport.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/protocol/inmem_transport.go b/protocol/inmem_transport.go index 260c21f..d927c65 100644 --- a/protocol/inmem_transport.go +++ b/protocol/inmem_transport.go @@ -3,9 +3,7 @@ package protocol // InmemTransport Implements the Transport interface, to allow kshaka/CASPaxos to be // tested in-memory without going over a network. type InmemTransport struct { - NodeAddrress string - NodePort string - Node *Node + Node *Node } // TransportPrepare implements the Transport interface.