From 04c5ef68175e52178307cef2009626869a16cefd Mon Sep 17 00:00:00 2001 From: Javier Vargas Date: Tue, 28 Jul 2020 20:10:33 +0200 Subject: [PATCH] Update 13_6_Closing_a_Channel.md --- 13_6_Closing_a_Channel.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/13_6_Closing_a_Channel.md b/13_6_Closing_a_Channel.md index 25947db..06d587a 100644 --- a/13_6_Closing_a_Channel.md +++ b/13_6_Closing_a_Channel.md @@ -76,6 +76,25 @@ Later we'll use select to show only data containing public_key id as source or d ``` $ lightning-cli listchannels | jq '.channels[] | select(.source == '$NODEID' or .destination == '$NODEID')' +{ + "source": "0302d48972ba7eef8b40696102ad114090fd4c146e381f18c7932a2a1d73566f84", + "destination": "03fce2a20393a65b9d6cab5425f4cd33ddc621ade458efd69d652917e2b5eaf59c", + "short_channel_id": "1780768x12x1", + "public": true, + "satoshis": 280000, + "amount_msat": "280000000msat", + "message_flags": 1, + "channel_flags": 2, + "active": false, + "last_update": 1595508075, + "base_fee_millisatoshi": 1000, + "fee_per_millionth": 1, + "delay": 40, + "htlc_minimum_msat": "1000msat", + "htlc_maximum_msat": "280000000msat", + "features": "" +} + ```