Skip to content

Commit 73fef48

Browse files
overboolStebalien
authored andcommittedNov 5, 2018
commands/bitswap: use cmds.EmitOnce in single value
License: MIT Signed-off-by: Overbool <overbool.xu@gmail.com>
1 parent c5b44de commit 73fef48

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed
 

‎core/commands/bitswap.go

+4-7
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,18 @@ Print out all blocks currently on the bitswap wantlist for the local peer.`,
5959
}
6060

6161
pstr, found := req.Options[peerOptionName].(string)
62-
if err != nil {
63-
return err
64-
}
6562
if found {
6663
pid, err := peer.IDB58Decode(pstr)
6764
if err != nil {
6865
return err
6966
}
7067
if pid == nd.Identity {
71-
return res.Emit(&KeyList{bs.GetWantlist()})
68+
return cmds.EmitOnce(res, &KeyList{bs.GetWantlist()})
7269
}
7370

74-
return res.Emit(&KeyList{bs.WantlistForPeer(pid)})
71+
return cmds.EmitOnce(res, &KeyList{bs.WantlistForPeer(pid)})
7572
}
76-
return res.Emit(&KeyList{bs.GetWantlist()})
73+
return cmds.EmitOnce(res, &KeyList{bs.GetWantlist()})
7774
},
7875
Encoders: cmds.EncoderMap{
7976
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.
175172
if err != nil {
176173
return err
177174
}
178-
return res.Emit(bs.LedgerForPeer(partner))
175+
return cmds.EmitOnce(res, bs.LedgerForPeer(partner))
179176
},
180177
Encoders: cmds.EncoderMap{
181178
cmds.Text: cmds.MakeTypedEncoder(func(req *cmds.Request, w io.Writer, out *decision.Receipt) error {

0 commit comments

Comments
 (0)
Please sign in to comment.