Open kornpow opened 3 years ago
Hello. I have the same problem. I'm trying to set a fee limit and do not understand how to do it? Does any one now?
So. You don't should use method directly. You should construct SendRequest by yourself.
limit = ln.FeeLimit(fixed=<amount_msat>)
request = ln.SendRequest(payment_request=<pay_req>, fee_limit=limit)
resp = self.rpc._ln_stub.SendPaymentSync(request)
If you want, you can make a PR to my fork, Ive been doing regular commits, and would like to hide away some of that complexity. https://github.com/sako0938/lnd-grpc-client
I am confused by the send_payment method, I am trying to use it similarly to other methods, but it says the argument does not exist.
Any idea what am I doing wrong, I am trying to do a circular rebalance?
Do you know if this is using paymentV1 or PaymentV2?