mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-16 12:20:14 +02:00
15 lines
409 B
Python
15 lines
409 B
Python
from app.models.lightning import LightningInfoLite
|
|
|
|
|
|
def get_valid_lightning_info_lite() -> LightningInfoLite:
|
|
return LightningInfoLite(
|
|
implementation="LND",
|
|
version="0.13.1",
|
|
num_pending_channels=1,
|
|
num_active_channels=4,
|
|
num_inactive_channels=2,
|
|
num_peers=3,
|
|
block_height=123456,
|
|
synced_to_chain=True,
|
|
synced_to_graph=True,
|
|
)
|