Skip to content

Commit 764c94a

Browse files
committed
Remove old manager
1 parent 848f68f commit 764c94a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

blob/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "net"
66
import "strings"
77

88
type BlobManager struct {
9-
Blobs map[string][]byte
9+
Blobs map[string][]byte
1010
}
1111

1212
// dhtNode *dht.Node

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ var wg sync.WaitGroup
1515

1616
func main() {
1717
node, _ := dht.NewNode(4444)
18+
//blob.NewManager(node)
1819
blobManager := blob.BlobManager{
19-
Blobs: map[string][]byte{},
20-
OldManager: blob.NewManager(node),
20+
Blobs: map[string][]byte{},
2121
}
2222

2323
rpcServer := rpc.CreateServer()

0 commit comments

Comments
 (0)