Merge pull request #7163 from akovalenko/master

cmd/lncli/walletrpc_active.go: avoid nested getContext
This commit is contained in:
Oliver Gugger 2022-11-17 10:59:45 +01:00 committed by GitHub
commit ad2870135c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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