cmd/lncli/walletrpc_active.go: avoid nested getContext [skip ci]

Pass down a context from bumpCloseFee to getWaitingCloseCommitments,
to avoid another call to getContext that used to fail with "intercept
already active"
This commit is contained in:
Anton Kovalenko 2022-11-17 00:21:54 +03:00
parent 478b012672
commit 2700c97d2b

View File

@ -5,6 +5,7 @@ package main
import (
"bytes"
"context"
"encoding/base64"
"encoding/hex"
"encoding/json"
@ -320,7 +321,9 @@ func bumpCloseFee(ctx *cli.Context) error {
defer cleanUp()
// Fetch waiting close channel commitments.
commitments, err := getWaitingCloseCommitments(client, channelPoint)
commitments, err := getWaitingCloseCommitments(
ctxc, client, channelPoint,
)
if err != nil {
return err
}
@ -379,11 +382,9 @@ func bumpCloseFee(ctx *cli.Context) error {
return nil
}
func getWaitingCloseCommitments(client lnrpc.LightningClient,
channelPoint string) (*lnrpc.PendingChannelsResponse_Commitments,
error) {
ctxc := getContext()
func getWaitingCloseCommitments(ctxc context.Context,
client lnrpc.LightningClient, channelPoint string) (
*lnrpc.PendingChannelsResponse_Commitments, error) {
req := &lnrpc.PendingChannelsRequest{}
resp, err := client.PendingChannels(ctxc, req)