fusion44 / blitz_api

A management backend for the RaspiBlitz project written in Python / FastAPI
MIT License
19 stars 18 forks source link

ln-info-lite delivers wrong identity_uri #202

Closed cstenglein closed 1 year ago

cstenglein commented 1 year ago

See below:

{
    "implementation": "CLN_JRPC_BLITZ",
    "version": "v23.02.2",
    "identity_pubkey": "03275f575123759c5ab5a934d55564c37741ddd4f24ad61fe03c4dc2522c0b3c96",
    "identity_uri": "The complete URI (pubkey@physicaladdress:port) the current node.",
    "num_pending_channels": 0,
    "num_active_channels": 0,
    "num_inactive_channels": 0,
    "num_peers": 0,
    "block_height": 788619,
    "synced_to_chain": null,
    "synced_to_graph": null
}

This leads to the following outcome in the webUI:

grafik

fusion44 commented 1 year ago

Here's what my regtest node returns now:

{
  "implementation": "CLN_JRPC",
  "version": "v23.02.2",
  "identity_pubkey": "02f07f6bbd8c4bfefac0178d2454a4c2d989e2353da3228b9bf8d68af6263e9e34",
  "identity_uri": "02f07f6bbd8c4bfefac0178d2454a4c2d989e2353da3228b9bf8d68af6263e9e34@0.0.0.0:9735",
  "num_pending_channels": 0,
  "num_active_channels": 0,
  "num_inactive_channels": 0,
  "num_peers": 0,
  "block_height": 400,
  "synced_to_chain": null,
  "synced_to_graph": null
}