Fix remaining

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
Jakub Sztandera 2019-07-09 14:25:33 +02:00
parent 66a67b0633
commit 980bed1c3c

View File

@ -27,7 +27,8 @@ var netPeers = &cli.Command{
Usage: "Print peers", Usage: "Print peers",
Action: func(cctx *cli.Context) error { Action: func(cctx *cli.Context) error {
api := getApi(cctx) api := getApi(cctx)
fmt.Println(api.NetPeers(reqContext(cctx))) ctx := reqContext(cctx)
fmt.Println(api.NetPeers(ctx))
return nil return nil
}, },
@ -38,7 +39,8 @@ var netListen = &cli.Command{
Usage: "List listen addresses", Usage: "List listen addresses",
Action: func(cctx *cli.Context) error { Action: func(cctx *cli.Context) error {
api := getApi(cctx) api := getApi(cctx)
fmt.Println(api.NetAddrsListen(reqContext(cctx))) ctx := reqContext(cctx)
fmt.Println(api.NetAddrsListen(ctx))
return nil return nil
}, },
@ -48,8 +50,8 @@ var netConnect = &cli.Command{
Name: "connect", Name: "connect",
Usage: "Connect to a peer", Usage: "Connect to a peer",
Action: func(cctx *cli.Context) error { Action: func(cctx *cli.Context) error {
ctx := reqContext(cctx)
api := getApi(cctx) api := getApi(cctx)
ctx := reqContext(cctx)
pis, err := parseAddresses(ctx, cctx.Args().Slice()) pis, err := parseAddresses(ctx, cctx.Args().Slice())
if err != nil { if err != nil {
@ -58,7 +60,7 @@ var netConnect = &cli.Command{
for _, pi := range pis { for _, pi := range pis {
fmt.Printf("connect %s: ", pi.ID.Pretty()) fmt.Printf("connect %s: ", pi.ID.Pretty())
err := api.NetConnect(context.Background(), pi) err := api.NetConnect(ctx, pi)
if err != nil { if err != nil {
fmt.Println("failure") fmt.Println("failure")
return err return err