lncli+lnrpc: add payment address to sendpayment

This commit is contained in:
yyforyongyu
2021-03-15 16:30:25 +08:00
parent fa4155c126
commit 2dac77200b
5 changed files with 815 additions and 763 deletions

View File

@ -4216,6 +4216,12 @@ func (r *rpcServer) extractPaymentIntent(rpcPayReq *rpcPaymentRequest) (rpcPayme
return payIntent, err
}
// Payment address may not be needed by legacy invoices.
if len(rpcPayReq.PaymentAddr) != 0 && len(rpcPayReq.PaymentAddr) != 32 {
return payIntent, errors.New("invalid payment address length")
}
copy(payIntent.paymentAddr[:], rpcPayReq.PaymentAddr)
// Otherwise, If the payment request field was not specified
// (and a custom route wasn't specified), construct the payment
// from the other fields.