File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -59,21 +59,18 @@ Print out all blocks currently on the bitswap wantlist for the local peer.`,
59
59
}
60
60
61
61
pstr , found := req .Options [peerOptionName ].(string )
62
- if err != nil {
63
- return err
64
- }
65
62
if found {
66
63
pid , err := peer .IDB58Decode (pstr )
67
64
if err != nil {
68
65
return err
69
66
}
70
67
if pid == nd .Identity {
71
- return res . Emit ( & KeyList {bs .GetWantlist ()})
68
+ return cmds . EmitOnce ( res , & KeyList {bs .GetWantlist ()})
72
69
}
73
70
74
- return res . Emit ( & KeyList {bs .WantlistForPeer (pid )})
71
+ return cmds . EmitOnce ( res , & KeyList {bs .WantlistForPeer (pid )})
75
72
}
76
- return res . Emit ( & KeyList {bs .GetWantlist ()})
73
+ return cmds . EmitOnce ( res , & KeyList {bs .GetWantlist ()})
77
74
},
78
75
Encoders : cmds.EncoderMap {
79
76
cmds .Text : cmds .MakeTypedEncoder (func (req * cmds.Request , w io.Writer , out * KeyList ) error {
@@ -175,7 +172,7 @@ prints the ledger associated with a given peer.
175
172
if err != nil {
176
173
return err
177
174
}
178
- return res . Emit ( bs .LedgerForPeer (partner ))
175
+ return cmds . EmitOnce ( res , bs .LedgerForPeer (partner ))
179
176
},
180
177
Encoders : cmds.EncoderMap {
181
178
cmds .Text : cmds .MakeTypedEncoder (func (req * cmds.Request , w io.Writer , out * decision.Receipt ) error {
You can’t perform that action at this time.
0 commit comments