Stadicus

Lightning: First peer not ready (listchannels)

Feb 2nd, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.31 KB | None | 0 0
  1. $ lightning-cli listchannels | grep 025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e
  2. { "source" : "0371bcbde71d6cc591134e6d95592a9e8baac232a1e975ccd67c111864a5e8d373", "destination" : "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e", "short_channel_id" : "507322:1435:1", "flags" : 1, "active" : true, "public" : true, "last_update" : 1517603227, "base_fee_millisatoshi" : 1000, "fee_per_millionth" : 1, "delay" : 144 },
  3. { "source" : "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e", "destination" : "0371bcbde71d6cc591134e6d95592a9e8baac232a1e975ccd67c111864a5e8d373", "short_channel_id" : "507322:1435:1", "flags" : 0, "active" : true, "public" : true, "last_update" : 1517605665, "base_fee_millisatoshi" : 1000, "fee_per_millionth" : 10, "delay" : 14 },
  4. { "source" : "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e", "destination" : "03e72d70b4e015bb3bee8a50deb32b6316a35d52b2333b5df66e36ed5e48ed102e", "short_channel_id" : "507331:410:1", "flags" : 0, "active" : true, "public" : true, "last_update" : 1517609936, "base_fee_millisatoshi" : 1000, "fee_per_millionth" : 10, "delay" : 14 },
  5. { "source" : "03e72d70b4e015bb3bee8a50deb32b6316a35d52b2333b5df66e36ed5e48ed102e", "destination" : "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e", "short_channel_id" : "507331:410:1", "flags" : 1, "active" : true, "public" : true, "last_update" : 1517609937, "base_fee_millisatoshi" : 1000, "fee_per_millionth" : 10, "delay" : 14 }
  6.  
  7. $ lightning-cli listchannels 507322:1435:1 | jq
  8. {
  9.   "channels": [
  10.     {
  11.       "source": "0371bcbde71d6cc591134e6d95592a9e8baac232a1e975ccd67c111864a5e8d373",
  12.       "destination": "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e",
  13.       "short_channel_id": "507322:1435:1",
  14.       "flags": 1,
  15.       "active": true,
  16.       "public": true,
  17.       "last_update": 1517603227,
  18.       "base_fee_millisatoshi": 1000,
  19.       "fee_per_millionth": 1,
  20.       "delay": 144
  21.     },
  22.     {
  23.       "source": "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e",
  24.       "destination": "0371bcbde71d6cc591134e6d95592a9e8baac232a1e975ccd67c111864a5e8d373",
  25.       "short_channel_id": "507322:1435:1",
  26.       "flags": 0,
  27.       "active": true,
  28.       "public": true,
  29.       "last_update": 1517605665,
  30.       "base_fee_millisatoshi": 1000,
  31.       "fee_per_millionth": 10,
  32.       "delay": 14
  33.     }
  34.   ]
  35. }
  36.  
  37. $ lightning-cli listchannels 507331:410:1 | jq
  38. {
  39.   "channels": [
  40.     {
  41.       "source": "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e",
  42.       "destination": "03e72d70b4e015bb3bee8a50deb32b6316a35d52b2333b5df66e36ed5e48ed102e",
  43.       "short_channel_id": "507331:410:1",
  44.       "flags": 0,
  45.       "active": true,
  46.       "public": true,
  47.       "last_update": 1517609936,
  48.       "base_fee_millisatoshi": 1000,
  49.       "fee_per_millionth": 10,
  50.       "delay": 14
  51.     },
  52.     {
  53.       "source": "03e72d70b4e015bb3bee8a50deb32b6316a35d52b2333b5df66e36ed5e48ed102e",
  54.       "destination": "025f2cf835c0ca58be159e32e476a2386d8100d97fabf97e144e8e3e3f4829643e",
  55.       "short_channel_id": "507331:410:1",
  56.       "flags": 1,
  57.       "active": true,
  58.       "public": true,
  59.       "last_update": 1517609937,
  60.       "base_fee_millisatoshi": 1000,
  61.       "fee_per_millionth": 10,
  62.       "delay": 14
  63.     }
  64.   ]
  65. }
Advertisement
Add Comment
Please, Sign In to add comment