We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 848f68f commit 764c94aCopy full SHA for 764c94a
2 files changed
blob/manager.go
@@ -6,7 +6,7 @@ import "net"
6
import "strings"
7
8
type BlobManager struct {
9
- Blobs map[string][]byte
+ Blobs map[string][]byte
10
}
11
12
// dhtNode *dht.Node
main.go
@@ -15,9 +15,9 @@ var wg sync.WaitGroup
15
16
func main() {
17
node, _ := dht.NewNode(4444)
18
+ //blob.NewManager(node)
19
blobManager := blob.BlobManager{
- Blobs: map[string][]byte{},
20
- OldManager: blob.NewManager(node),
+ Blobs: map[string][]byte{},
21
22
23
rpcServer := rpc.CreateServer()
0 commit comments