Merge pull request #9724 from bhandras/fundpsbt-custom-input-lock

walletrpc: allow custom lock ID and duration in `FundPsbt`
This commit is contained in:
András Bánki-Horváth
2025-04-17 17:31:48 +02:00
committed by GitHub
11 changed files with 545 additions and 319 deletions

View File

@@ -379,3 +379,16 @@ func (h *HarnessRPC) RequiredReserve(
return resp
}
// ListLeases makes a ListLeases RPC call to the node's WalletKit client.
func (h *HarnessRPC) ListLeases() *walletrpc.ListLeasesResponse {
ctxt, cancel := context.WithTimeout(h.runCtx, DefaultTimeout)
defer cancel()
resp, err := h.WalletKit.ListLeases(
ctxt, &walletrpc.ListLeasesRequest{},
)
h.NoError(err, "ListLeases")
return resp
}

View File

@@ -294,3 +294,8 @@ func CustomRecordsWithUnendorsed(
}},
)
}
// LnrpcOutpointToStr returns a string representation of an lnrpc.OutPoint.
func LnrpcOutpointToStr(outpoint *lnrpc.OutPoint) string {
return fmt.Sprintf("%s:%d", outpoint.TxidStr, outpoint.OutputIndex)
}