lightning community – EstimateFee – Invalid Size Vacation spot Key

0
5


Background
I’ve setup a regnet take a look at community with two LND nodes. One to ship cash and the second (lnd2) to generate invoices on. I’m writing code to simulate a cellular app. I am at the moment attempting to calculate the charge to pay an bill and making an attempt to name /v2/router/route/estimatefee

I am getting this error after I execute the code beneath:
{‘code’: 2, ‘message’: ‘invalid size vacation spot key’, ‘particulars’: []}

I will admit the byte to uncooked to decode has me a bit confused. However I am undecided I am feeding the right handle.

import base64
import codecs
import json
import requests
r_hash="UOpjz7mxf2r5gv7MNkoEBZL84CwM3CjJI8TFfPfkInA="
payment_alias = b'02183a81bfb5ce3a221d'
payment_destination = '02183a81bfb5ce3a221d15ffa67c2a1d796746ac89f1c81850577b52ec1633e339'

payment_addr = "iDPo2lElCqV9qx0GMB0SMfraU9CGOoGU4xSTNN9hYoM="
qrinvoice = "lnbcrt7u1psa67zapp52r4x8naek9lk47vzlmxrvjsyqkf0ecpvpnwz3jfrcnzhealyyfcqdqlw3jhxapqw35xjueqda6hggr5wfujqdqcqzpgxqyz5vqsp53qe73kj3y5922ldtr5rrq8gjx8ad557sscagr98rzjfnfhmpv2ps9qyyssq2sn9wg448t083sxqzsckc2l3jt26k5zy5l8g4ufeqgg53kxhule3p7dcwmd77v324jmd4z8r87tx9fal3a47vv344qsx03pjy43m2ysqy58usq"

lnd2 = "10.142.0.21:8180"
lnd1 = "10.142.0.21:8080"

url="https://{}/v2/router/route/estimatefee".format(lnd1)
knowledge = {
             'dest': base64.b64encode(payment_alias).decode(),
             'amt_sat': 200
         }

cert_path="./tls.cert"


macaroonhex = <a macaroon> 
headers = {'Grpc-Metadata-macaroon': macaroonhex}


r = requests.put up(url, knowledge=json.dumps(
    knowledge), headers=headers, confirm=cert_path)
    
print(r.json())

Your setting
Two LND nodes on Debian 10.
Linux #1 SMP Debian 4.19.208-1 (2021-09-29) x86_64 GNU/Linux
LND “model”: “0.14.0-beta commit=v0.14.0-beta”,
bitcoind model: 220000

Steps to breed
Create an bill.
Run above code
Anticipated behaviour
I ought to get a charge again however simply get error.

LEAVE A REPLY

Please enter your comment!
Please enter your name here