Noted ability to specify multiple keys in `bitswap unwant`
License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
Richard Littauer committed
Feb 26, 2016 at 11:55 UTC
8adf7a3f67a160a8ba19d993c71667d909efd6e5
1 file changed
+1
-1
core/commands/bitswap.go
+1
-1
@@ -31,7 +31,7 @@ var unwantCmd = &cmds.Command{
31
Tagline: "Remove a given block from your wantlist.",
32
},
33
Arguments: []cmds.Argument{
34
- cmds.StringArg("key", true, true, "Key to remove from your wantlist.").EnableStdin(),
34
+ cmds.StringArg("key", true, true, "Key(s) to remove from your wantlist.").EnableStdin(),
35
},
36
Run: func(req cmds.Request, res cmds.Response) {
37
nd, err := req.InvocContext().GetNode()