Skip to content

Commit 6721d11

Browse files
fix: add an encoder for swarm peering ls
1 parent 7a57348 commit 6721d11

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

core/commands/swarm.go

+11
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,17 @@ var swarmPeeringLsCmd = &cmds.Command{
141141
return cmds.EmitOnce(res, addrInfos{Peers: peers})
142142
},
143143
Type: addrInfos{},
144+
Encoders: cmds.EncoderMap{
145+
cmds.Text: cmds.MakeTypedEncoder(func(req *cmds.Request, w io.Writer, ai *addrInfos) error {
146+
for _, info := range ai.Peers {
147+
fmt.Fprintf(w, "%s \n", info.ID.String())
148+
for _, addr := range info.Addrs {
149+
fmt.Fprintf(w, "\t"+addr.String()+"\n")
150+
}
151+
}
152+
return nil
153+
}),
154+
},
144155
}
145156

146157
type addrInfos struct {

0 commit comments

Comments
 (0)