Skip to content

Instantly share code, notes, and snippets.

Created November 29, 2017 21:49
Show Gist options
  • Save anonymous/dc89dfb651d02b70af7b3ad6d428cede to your computer and use it in GitHub Desktop.
Save anonymous/dc89dfb651d02b70af7b3ad6d428cede to your computer and use it in GitHub Desktop.
________________________ test_reconnect[lnd_lightning] _________________________
bitcoind = <utils.BitcoinD object at 0x7fb768e47198>
node_factory = <test.NodeFactory object at 0x7fb75ca075c0>
impls = (<class 'lnd.LndNode'>, <class 'lightningd.LightningNode'>)
 @pytest.mark.parametrize("impls", product(impls, repeat=2), ids=idfn)
 def test_reconnect(bitcoind, node_factory, impls):
 node1 = node_factory.get_node(implementation=impls[0])
 node2 = node_factory.get_node(implementation=impls[1])
 capacity = 10**7
 
 node1.connect('localhost', node2.daemon.port, node2.id())
 
 wait_for(lambda: node1.peers(), interval=1)
 wait_for(lambda: node2.peers(), interval=1)
 
 node1.addfunds(bitcoind, 2*capacity)
 time.sleep(5)
 bitcoind.rpc.generate(10)
 time.sleep(5)
 
 node1.openchannel(node2.id(), 'localhost', node2.daemon.port, capacity)
 
 for i in range(30):
 node1.bitcoin.rpc.generate(1)
 time.sleep(1)
 
> wait_for(lambda: node1.check_channel(node2))
test.py:353:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
success = <function test_reconnect.<locals>.<lambda> at 0x7fb75c348f28>
timeout = 30, interval = 1
 def wait_for(success, timeout=30, interval=1):
 start_time = time.time()
 while not success() and time.time() < start_time + timeout:
 time.sleep(interval)
 if time.time() > start_time + timeout:
> raise ValueError("Error waiting for {}", success)
E ValueError: ('Error waiting for {}', <function test_reconnect.<locals>.<lambda> at 0x7fb75c348f28>)
test.py:111: ValueError
----------------------------- Captured stdout call -----------------------------
DEBUG:root:Starting 'bin/lnd --peerport=16331 --rpcport=26331 --bitcoin.active --datadir=/tmp/lightning-il5fkavy/test_reconnect[lnd_lightning]/node-1/ --debuglevel=trace --bitcoin.rpcuser=rpcuser --bitcoin.rpcpass=rpcpass --configfile=/tmp/lightning-il5fkavy/test_reconnect[lnd_lightning]/node-1/lnd.conf --bitcoin.regtest --no-macaroons --nobootstrap --noencryptwallet'
DEBUG:root:Waiting for 'server listening on' in the logs
DEBUG:lnd(16331):2017-11-29 18:24:28.578 [INF] LTND: Version 0.3.0-alpha
DEBUG:lnd(16331):2017-11-29 18:24:28.612 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
DEBUG:lnd(16331):2017-11-29 18:24:28.639 [INF] LTND: Primary chain is set to: bitcoin
DEBUG:lnd(16331):2017-11-29 18:24:28.639 [INF] LTND: Initializing btcd backed fee estimator
DEBUG:proc:2017-11-29 18:24:28.674 [INF] RPCS: New websocket client 127.0.0.1:52132
DEBUG:lnd(16331):2017-11-29 18:24:32.014 [INF] LNWL: Opened wallet
DEBUG:proc:2017-11-29 18:24:32.058 [INF] RPCS: New websocket client 127.0.0.1:52134
DEBUG:lnd(16331):2017-11-29 18:24:32.833 [INF] LNWL: The wallet has been unlocked without a time limit
DEBUG:lnd(16331):2017-11-29 18:24:32.834 [INF] LNWL: Catching up block hashes to height 2292, this will take a while...
DEBUG:lnd(16331):2017-11-29 18:24:32.846 [INF] LTND: LightningWallet opened
DEBUG:lnd(16331):2017-11-29 18:24:32.863 [TRC] FNDG: Funding manager running
DEBUG:lnd(16331):2017-11-29 18:24:32.864 [INF] RPCS: gRPC proxy started at localhost:8080
DEBUG:lnd(16331):2017-11-29 18:24:32.864 [INF] RPCS: RPC server listening on 127.0.0.1:26331
DEBUG:lnd(16331):2017-11-29 18:24:32.864 [INF] LTND: Waiting for chain backend to finish sync, start_height=2292
DEBUG:root:Found 'server listening on' in logs
DEBUG:root:Waiting for 'Done catching up block hashes' in the logs
DEBUG:lnd(16331):2017-11-29 18:24:33.097 [INF] LNWL: Done catching up block hashes
DEBUG:root:Found 'Done catching up block hashes' in logs
DEBUG:lnd(16331):2017-11-29 18:24:33.105 [INF] LNWL: Started rescan from block 3fe9e9b5ed78c50bd09ecdc3033b926f8de6706e03fbf6c211d90ec79b09c005 (height 2292) for 1 address
DEBUG:proc:2017-11-29 18:24:33.106 [INF] RPCS: Beginning rescan for 1 address
DEBUG:proc:2017-11-29 18:24:33.106 [INF] RPCS: Finished rescan
DEBUG:lnd(16331):2017-11-29 18:24:33.107 [INF] LNWL: Catching up block hashes to height 2292, this might take a while
DEBUG:lnd(16331):2017-11-29 18:24:33.113 [INF] LNWL: Done catching up block hashes
DEBUG:lnd(16331):2017-11-29 18:24:33.113 [INF] LNWL: Finished rescan for 1 address (synced to block 3fe9e9b5ed78c50bd09ecdc3033b926f8de6706e03fbf6c211d90ec79b09c005, height 2292)
DEBUG:lnd(16331):2017-11-29 18:24:33.865 [INF] LTND: Chain backend is fully synced (end_height=2292)!
DEBUG:proc:2017-11-29 18:24:33.910 [INF] RPCS: New websocket client 127.0.0.1:52140
DEBUG:lnd(16331):2017-11-29 18:24:33.910 [INF] HSWC: Starting HTLC Switch
DEBUG:lnd(16331):2017-11-29 18:24:33.910 [TRC] UTXN: Starting UTXO nursery
DEBUG:lnd(16331):2017-11-29 18:24:33.910 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:24:33.910 [TRC] BRAR: Starting breach arbiter
DEBUG:lnd(16331):2017-11-29 18:24:33.910 [INF] DISC: Authenticated Gossiper is starting
DEBUG:lnd(16331):2017-11-29 18:24:33.911 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:24:33.911 [TRC] CRTR: Channel Router starting
DEBUG:lnd(16331):2017-11-29 18:24:33.911 [INF] CRTR: FilteredChainView starting
DEBUG:lnd(16331):2017-11-29 18:24:33.911 [ERR] DISC: unable to rebroadcast stale channels: error while retrieving outgoing channels: no graph edges exist
DEBUG:proc:2017-11-29 18:24:33.944 [INF] RPCS: New websocket client 127.0.0.1:52142
DEBUG:lnd(16331):2017-11-29 18:24:33.962 [INF] CRTR: Filtering chain using 0 channels active
DEBUG:lnd(16331):2017-11-29 18:24:33.962 [INF] CRTR: Prune tip for Channel Graph: height=2292, hash=3fe9e9b5ed78c50bd09ecdc3033b926f8de6706e03fbf6c211d90ec79b09c005
DEBUG:lnd(16331):2017-11-29 18:24:33.963 [INF] SRVR: Auto peer bootstrapping is disabled
DEBUG:lnd(16331):2017-11-29 18:24:33.963 [TRC] CMGR: Connection manager started
DEBUG:lnd(16331):2017-11-29 18:24:33.963 [INF] CMGR: Server listening on [::]:16331
INFO:root:LND started (pid: 16671)
DEBUG:root:Starting 'bin/lightningd --bitcoin-datadir=/tmp/lightning-il5fkavy/bitcoind --lightning-dir=/tmp/lightning-il5fkavy/test_reconnect[lnd_lightning]/node-2/ --port=16332 --network=regtest --dev-broadcast-interval=1000 --network=regtest --locktime-blocks=6 --log-level=debug --bitcoind-poll=1s'
DEBUG:root:Waiting for 'Creating IPv6 listener on port' in the logs
DEBUG:proc:lightningd(16959): Trying to guess public addresses...
DEBUG:proc:lightningd(16959): Address 192.168.0.3:16332 is not routable
DEBUG:proc:lightningd(16959): Failed to connect 10 socket: Network is unreachable
DEBUG:proc:lightningd(16959): testing /home/cdecker/dev/lightning-integration/bin/lightningd
DEBUG:proc:lightningd(16959): testing /home/cdecker/dev/lightning-integration/bin/lightning_channeld
DEBUG:proc:lightningd(16959): testing /home/cdecker/dev/lightning-integration/bin/lightning_closingd
DEBUG:proc:lightningd(16959): testing /home/cdecker/dev/lightning-integration/bin/lightning_gossipd
DEBUG:proc:lightningd(16959): testing /home/cdecker/dev/lightning-integration/bin/lightning_hsmd
DEBUG:proc:lightningd(16959): testing /home/cdecker/dev/lightning-integration/bin/lightning_onchaind
DEBUG:proc:lightningd(16959): testing /home/cdecker/dev/lightning-integration/bin/lightning_openingd
DEBUG:proc:lightningd(16959): HSM TRACE: Control: type WIRE_HSMCTL_INIT len 3
DEBUG:proc:lightningd(16959): Adding block 873a3ce3301933105e1d74f6fe586482834a8fb88d863f2fa262ff5205023f50
DEBUG:proc:lightningd(16959): Adding block 05c0099bc70ed911c2f6fb036e70e68d6f923b03c3cd9ed00bc578edb5e9e93f
DEBUG:proc:lightningd(16959): Adding block 8efdb03245ae7d09b478669ff4383c9509c9bedad5bdb38ae112f4199375a700
DEBUG:proc:lightningd(16959): Adding block b1bb797819978d9ba7a79dd9111023db66aa96aa3da54e489b473d7767ffc162
DEBUG:proc:lightningd(16959): Adding block 1cb6578c2f775b5b71c3a4e318b77450326c119f0f3396a6dde859c04e682367
DEBUG:proc:lightningd(16959): Adding block ea0aed3f67703b6dc9749d651e42c64d326320cc81228948a2f287e461c63f50
DEBUG:proc:lightningd(16959): Adding block e961e0205d5c6cebaaba0859e61247ad0427316bad5e40579db95666dcc8724b
DEBUG:proc:lightningd(16959): Adding block 41f8fc767a8d008865b36c285e924c8e5141c8cfb25c098be80cba926221de3a
DEBUG:proc:lightningd(16959): Adding block c3d8f6f985bae55d20d11c4b6a3366750266ae3fdcdbf9a6f72e6d2572039e56
DEBUG:proc:lightningd(16959): Adding block 10c6dee77e936bcbf3d4964c302efff633d7c0e81606774710be619ff001b20d
DEBUG:proc:lightningd(16959): Adding block 0d35e1b23c6c33c65e4280976ee05dbce8416447ad819f64b13a5aef236a2814
DEBUG:proc:lightningd(16959): Adding block 5e888b1fde622de939d25838bc3e9118325e22db89204285ecb010b7481b0c1d
DEBUG:proc:lightningd(16959): Adding block df481bacedf92afd30495168c43f47b6fa471f551528902494256b4f14297e0a
DEBUG:proc:lightningd(16959): Adding block 3644b6ef02b88be30f851c96184290768fb92eba66e241cf6d8b11bbb4d00823
DEBUG:proc:lightningd(16959): Adding block e85b98f9b44d60586f0d580a263ded1a1ff3983b9c6af131e6cb74ec93d72d21
DEBUG:proc:lightningd(16959): Adding block b51fd110f7ea4e33ec725636eb0bc1b6562bfd43b5b41a44977487df5ad28b6d
DEBUG:proc:lightningd(16959): Adding block 56fd13ab302f35dbe8f368316630dccef8f01efdd063eb2d1221f8ca1a3d391e
DEBUG:proc:lightningd(16959): Adding block 511ff136151ba54db5b46e4efe043c2d008f3e84f07ce63292d76cf077f1bf1c
DEBUG:proc:lightningd(16959): Adding block bd1a4558424aeb552215916a128731c70822f9638b0fc038057bf25a54596a43
DEBUG:proc:lightningd(16959): Adding block 2975290d583993181521873daa1eb7a9c190b59c844a610063133f0b0fb1a407
DEBUG:proc:lightningd(16959): Adding block 468e9ea27de088098753d48a951e24fdaa7865650b1b2d8de6c5b56960d4584f
DEBUG:proc:lightningd(16959): Adding block cff6789bec9262aa41ddcdd53a24d30324f69b90f8526bab798677ea9143f56e
DEBUG:proc:lightningd(16959): Adding block c6fc3cdfca02241fceb2617ba1a2124bfa2ebb06ae024d428e77e7ee06cc230e
DEBUG:proc:lightningd(16959): Adding block 7143e79d94a35980d0eafbb627280effd8ae96ba566dd8fadd4b93d7c7f39a06
DEBUG:proc:lightningd(16959): Adding block 0fb040b9ef39a051794365df5b2b8468c8dfbea6823dc7fff8b3ae34c4d78c7d
DEBUG:proc:lightningd(16959): Adding block cbe3852ba48399a371dbae36582a6daa1fae4f3c3ba983f758b7e0a2d194447d
DEBUG:proc:lightningd(16959): Adding block 2572388ebc3b1ade8d37819210be0da51053029a803a428d5ec231fa4c82b537
DEBUG:proc:lightningd(16959): Adding block 8c83765b0c07e0443ab171b16aed9add6c1ccead4ef1fb9b749c748ec8527952
DEBUG:proc:lightningd(16959): Adding block 0a5513a664e95bb21e6f8815d016b44e71bd1b7c8d000b8d7ec4d97a4b6e6452
DEBUG:proc:lightningd(16959): Adding block 6cbe1839d73ee96968a7c333b4042f3382cb0e4acfc7fe579508b455a2eca67e
DEBUG:proc:lightningd(16959): Adding block c0ed78ee2bb7762432a6e0422e8ea15ef9232a1efa40515e64d1605be9fdae53
DEBUG:proc:lightningd(16959): Adding block 3ba4adc2f08231d7b0e2160e456f02ce2dcd03ef348432c5f66d491716c0250c
DEBUG:proc:lightningd(16959): Adding block 66c35fb890deb61c4855e05076a990e3f70f2ae70f2913afc0bb9e60df7e7342
DEBUG:proc:lightningd(16959): Adding block f4c7bd667661488810ddf7da1510712437229b0929cd7e74fc4655cedf33cf0d
DEBUG:proc:lightningd(16959): Adding block 9e7e2d7bb60466a4c55fad50245c97bbc1fa1aab9cf61b477c08b12eb297b63a
DEBUG:proc:lightningd(16959): Adding block 960f0e8f2420a0cf78142eadb15f285e2a99446edf1634b62704ee1997ae697a
DEBUG:proc:lightningd(16959): Adding block 63140e70b53d7ff7288d4225919581963c07c6e8f49525f0b6609c2ab809042d
DEBUG:proc:lightningd(16959): Adding block 106dc0e5179d9f86155aacb2b795cf3e7aaa6e3f2c764fb4dc838f93fd5b643a
DEBUG:proc:lightningd(16959): Adding block 10c3a2a62fd23907edb1233b8717a25eeb0b35c1e2346e06e9ebf8062adf425a
DEBUG:proc:lightningd(16959): Adding block fdce95d408446703675665525d4516050851cfe9e8e9e0515e0b79eee9cd9674
DEBUG:proc:lightningd(16959): Adding block 8d986e74c5d691f485de008236008f3a3c39b61194ff0c6c521365b1fb88627a
DEBUG:proc:lightningd(16959): Adding block d57e2ed12f8a247ccc9318fe2d4e42a8b48a5cc8b7645a799c01de345f38fd65
DEBUG:proc:lightningd(16959): Adding block 70d68b0a21240cba984cf71dbad3eb679a4b01309571b000f9788991a072e37c
DEBUG:proc:lightningd(16959): Adding block 5206b70ee853d26ee79c0753ff5afcfab3c8308762a74b0ffb44b379fcb9bd6c
DEBUG:proc:lightningd(16959): Adding block a29507c21f93d58123ca03d8a9bb22e785bae3e5ab9e900f72741af696132527
DEBUG:proc:lightningd(16959): Adding block 6f8dca9e2cfb7e3cb3e8b2cde28acc4477d4b0c8f619264b65414d22f8419531
DEBUG:proc:lightningd(16959): Adding block 269a91e76ea1c849f3f43fd1a7792450e323a4fc4d66a64b40c6881c0748e834
DEBUG:proc:lightningd(16959): Adding block 82402824953dcdcac4222e129d5ac7a62b36caf3b379f68ed614e294a925ca29
DEBUG:proc:lightningd(16959): Adding block cf82c2ffdf800ef307db87d28306e9bdee55d2938497360a9cc5ba8e52cfee3b
DEBUG:proc:lightningd(16959): Adding block ef088ecaadff7169f72ee6ab1a8b10f95f3e97a02fee06311c6dcfe1689f3a6a
DEBUG:proc:lightningd(16959): Adding block e9121baaab0a158d071a02fbc8a40a2fe593cb52bde4d8e4d383d00d5c59cf0e
DEBUG:proc:lightningd(16959): Adding block 2519c1097d1a779bdb5c7bac92775d122f3827d19bfac5fb18a30b11b5155f3c
DEBUG:proc:lightningd(16959): Adding block 1894649807c7220d413bd8e71b46cc1b28655d2b7f7da407fb4d37598384e974
DEBUG:proc:lightningd(16959): Adding block 5b25edb03626721c7854d2a301d124a16917924c1f31c3cbf209d07708fbc035
DEBUG:proc:lightningd(16959): Adding block 158e736719f15607a627bf1f27c634cda079cba5c940b8768e01328588c5042c
DEBUG:proc:lightningd(16959): Adding block 863dce83f38699b7dc4adc2ff2d9f0e1e1711af7a4f4ca5c121a687c43d12b20
DEBUG:proc:lightningd(16959): Adding block 08d04b6919d4678c90fd9105bbe471c39da557744b764ec9f50c91d211271364
DEBUG:proc:lightningd(16959): Adding block aa8fce06387ee1e6a6778d81e4e81991a7ec1265b43349989bb60042c5a7152b
DEBUG:proc:lightningd(16959): Adding block 2ba1577c24b47917dc7d7a1a67344fb53ac67b0cb7b2f7c95e8e8bde691bb859
DEBUG:proc:lightningd(16959): Adding block 1f3307a2381fb5ed4e866ae6ccb5f953db4f36065866c60faa8670393fb6045b
DEBUG:proc:lightningd(16959): Adding block 7c9706cdd44b09fbf06aa83c5fb5429f70a2c80ceafdb1907d12d447e71ece51
DEBUG:proc:lightningd(16959): Adding block 3c311c78d3d764a638322d366c7613af257535936af7e39f0822f843fafecc15
DEBUG:proc:lightningd(16959): Adding block 4ac9582436c9c3aed8a505be97124f2826496044b46d75e90140c4783cf13663
DEBUG:proc:lightningd(16959): Adding block cc98ef0c7cdeb8157130ac6f0ece556a6ab6ec78fca4e0dd7bacf1693071ce1f
DEBUG:proc:lightningd(16959): Adding block 081e7c4e7c3c29b0715c95bc1c12f164845527ad7d00a0e6568ce3d301e0a44a
DEBUG:proc:lightningd(16959): Adding block 2ab6563c09b9dc3d3faaccdcce0c0a0ae92aa544abb9f3d72def2d622f56ec7d
DEBUG:proc:lightningd(16959): Adding block 4f1269e655661fac3d5038cf2599bf5b87092f59d312d41bc39b14e3ce379439
DEBUG:proc:lightningd(16959): Adding block 1e44a14858b225e22a4f8619facec2c5c38f1005462ff7ae3c20be64bbd2b519
DEBUG:proc:lightningd(16959): Adding block 55ef3a18fe6fbbd70d14e06b88744738f55d31139140de841705d93d18fef31e
DEBUG:proc:lightningd(16959): Adding block 6354b826f246019ba297f1930dd75540f553d4322eb77ad4c6cba66ccca6ea60
DEBUG:proc:lightningd(16959): Adding block f0b5cc2bec6e030379302783c2d9726e1e239c330d2132213dead0f533a15067
DEBUG:proc:lightningd(16959): Adding block a1aa1eab85282b82ebdd20363a84f449cc997cdf2db835009aa28e21e343e92c
DEBUG:proc:lightningd(16959): Adding block 30cb2d849775d8993ce448248db5e8913ae0532aa1b426b71d66e8574fe09f6a
DEBUG:proc:lightningd(16959): Adding block 6c463e1894d871f4f5497007f3f86f4f79fde5800e039bdb2766dd4f1353ae47
DEBUG:proc:lightningd(16959): Adding block a4eed2664ec398a09779ed2691bc3a6066fa955e4866a1b2ee1d8386443a192d
DEBUG:proc:lightningd(16959): Adding block 4cd7f4168030e7cba850cb3f4e85e891abab4028afb89069ac1e1cab002b1a72
DEBUG:proc:lightningd(16959): Adding block fee74996c0d2f7ee42175b0ba960e12cf6f20655f337538292a20e6f60d2a100
DEBUG:proc:lightningd(16959): Adding block 48aed940b8be76e8d5ab10fe7b1f6b8a363fd1986b1c3aae6dcc5664fa6c8120
DEBUG:proc:lightningd(16959): Adding block cf5cc664de6c7e1cce67f07adf2c42c6df44edc9589eb293c2deabcf2ddee121
DEBUG:proc:lightningd(16959): Adding block 9e7b9bf062e7b80238a96f63eb1d559cdf4dfb202a893d5af24b85430ff8a64d
DEBUG:proc:lightningd(16959): Adding block e754921a771bbace57981a1593555614ba254d65ca76eb459797b27a7e9b3a38
DEBUG:proc:lightningd(16959): Adding block 22057490999cf3705f0abe7e3aafe240759ff165424d42b0fd3237d68f514705
DEBUG:proc:lightningd(16959): Adding block da920e298a99b99b3af354a9517fc251f1ad04a3954d43997700b273f0911e6b
DEBUG:proc:lightningd(16959): Adding block 1cb536dcc50c2b13c1fb9ed21238fe22e4282566327de98e2a47d524c02d9c21
DEBUG:proc:lightningd(16959): Adding block 58190417e900c01bcf2bab0ed3ab2b4489db02c9d6ed3f6e33e5ef546dd1d43f
DEBUG:proc:lightningd(16959): Adding block a863631a8408ee2064a6aa9d9f1e1c276c2f423e642e57daaed340df94e9627a
DEBUG:proc:lightningd(16959): Adding block 79c098e296c23a975362092d22641c3359a4c561d8a932392349f66545d12233
DEBUG:proc:lightningd(16959): Adding block 6e00da842e357f3eaaf411832ffd39e1f61a2bd7dd600a7a1d7da0d36bfea91d
DEBUG:proc:lightningd(16959): Adding block e5210982ad3a10d7baf9de12e3c7c0ea72232bfc09c70924ee2f18fe10c1c70a
DEBUG:proc:lightningd(16959): Adding block bf4bd63ad1f99df706b03577f9613e460b57a06b2bea6027ce9bad1aefa8d678
DEBUG:proc:lightningd(16959): Adding block 925b3f4d3753040340599cbb755002679a5929a8bff2f7d716c9f9fb1d7d6448
DEBUG:proc:lightningd(16959): Adding block c7e02ee46385c44bb1af8a7c61b53e11e61f0d3c571a57a85f328810126b632b
DEBUG:proc:lightningd(16959): Adding block a1195dd8c77d9dceaa0fb9ae475bb92807c71f5b048e42c269a8f05400b84c76
DEBUG:proc:lightningd(16959): Adding block f99c8901acd3526d9aca8a4b35072e431860f52b830a594eba109c1253031642
DEBUG:proc:lightningd(16959): Adding block 0bc91135cb1cf8a7408e2937c773ff3f8dd20d2350f0cace8458a14a5fee3716
DEBUG:proc:lightningd(16959): Adding block a34d3c97930af9953215a5afd12f3b88b27dcea60656c0e7cc8becdb906c7632
DEBUG:proc:lightningd(16959): Adding block 31bb04601beecb0b403bd483fa987606ff4f47d6774bece869a2e9f118cbad25
DEBUG:proc:lightningd(16959): Adding block 8d6d1426db9a863bc5b38a45e01cea470bb1c509aae0618aaea0452ecde31b6f
DEBUG:proc:lightningd(16959): Adding block f1c3793811421b42f0fba8354dba4911aeac0087910d32276353688d5f8d455b
DEBUG:proc:lightningd(16959): Adding block f2d061bd25c3c829de39c07a10a8542987e0a0449ae1ebb1df3ef31f62203e46
DEBUG:proc:lightningd(16959): Adding block fa6461763e6c7a1229a730c15f156273f75dda3f4a6073ef9814ae4d36009a64
DEBUG:proc:lightningd(16959): Loaded 0 invoices from DB
DEBUG:proc:lightningd(16959): HSM TRACE: Control: type WIRE_HSMCTL_HSMFD_ECDH len 2
DEBUG:proc:lightning_gossipd(17075): pid 17075, msgfd 15
DEBUG:proc:lightningd(16959): Loaded 0 channels from DB
DEBUG:proc:lightningd(16959): Listening on 'lightning-rpc'
DEBUG:proc:lightningd(16959): Hello world from 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b aka LOUDARK #033b1c (version v0.5.2-2016-11-21-1199-gcfde208)!
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightning_gossipd(17075): TRACE: req: type WIRE_GOSSIPCTL_INIT len 78
DEBUG:proc:lightning_gossipd(17075): TRACE: Creating IPv6 listener on port 16332
DEBUG:root:Found 'Creating IPv6 listener on port' in logs
INFO:root:LightningD started
DEBUG:proc:lightning_gossipd(17075): TRACE: Failed to bind on 2 socket: Address already in use
DEBUG:lightning-node(16332):Calling getinfo with arguments ()
DEBUG:root:Calling getinfo with arguments ()
DEBUG:proc:lightningd(16959): Connected json input
DEBUG:proc:lightningd(16959):jcon fd 14: Success
DEBUG:root:Received response for getinfo call: {'result': {'address': [], 'blockheight': 2292, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(16959):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'address': [], 'blockheight': 2292, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b'}
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:24:38.641 [DBG] SRVR: Connecting to 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b@127.0.0.1:16332
DEBUG:root:
DEBUG:proc:lightning_gossipd(17075): TRACE: Responder: Act 1
DEBUG:lnd(16331):2017-11-29 18:24:38.641 [DBG] RPCS: Connected to peer: 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:38.641 [DBG] CMGR: Attempting to connect to 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b@127.0.0.1:16332 (reqid 1)
DEBUG:lnd(16331):2017-11-29 18:24:38.642 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:24:38.642 [DBG] RPCS: [listpeers] yielded [] peers
DEBUG:proc:lightning_gossipd(17075): TRACE: Responder: Act 2
DEBUG:proc:lightning_gossipd(17075): TRACE: Responder: Act 3
DEBUG:lnd(16331):2017-11-29 18:24:38.642 [DBG] CMGR: Connected to 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b@127.0.0.1:16332 (reqid 1)
DEBUG:lnd(16331):2017-11-29 18:24:38.642 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:38.642 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16331):2017-11-29 18:24:38.642 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc42028c670)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4306ea050)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42000e048)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc42028c990)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e0f8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42000e100)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [DBG] PEER: Loaded 0 active channels from database with peerID(1)
DEBUG:proc:lightning_gossipd(17075): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [INF] DISC: Syncing channel graph state with 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b, sending 1 vertexes and 0 edges
DEBUG:proc:lightning_gossipd(17075): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [INF] SRVR: Attempting to send msgs 1 to: 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b
DEBUG:proc:lightning_gossipd(17075): TRACE: Forgetting remote peer 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [DBG] PEER: Sending NodeAnnouncement(node=02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9, update_time=2017-11-29 18:24:32 +0100 CET) to 127.0.0.1:16332
DEBUG:proc:lightning_gossipd(17075): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:lnd(16331):2017-11-29 18:24:38.643 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4306e5c20)({
DEBUG:proc:lightning_gossipd(17075): TRACE: handle_peer 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9: new peer
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc42028cc60)({
DEBUG:proc:lightning_gossipd(17075): TRACE: Received node_announcement for node 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9
DEBUG:lnd(16331): R: (*big.Int)(0xc4201b4300)(97572429078046809103827197991560191873767894058946252954869181021630376431299),
DEBUG:proc:lightning_gossipd(17075): TRACE: Node not found, was the node_announcement preceeded by at least channel_announcement?
DEBUG:lnd(16331): S: (*big.Int)(0xc4201b4320)(46790467536502174905002238543845041270819311807921981248475645095428181975784)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42000e108)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511976272,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4201b4200)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4201b4220)(102339305114932766363652516443285833023163243666323981705907444805995629536185),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201b4240)(101323977589482380865158451962604223308668126974566290148935445952383066547200)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): red: (uint8) 0,
DEBUG:lnd(16331): green: (uint8) 0,
DEBUG:lnd(16331): blue: (uint8) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) 02e241fe77e4d38cfb7b,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:24:38.644 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16331):2017-11-29 18:24:39.646 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:24:39.646 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(16959): Connected json input
DEBUG:proc:lightning_gossipd(17075): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(17075): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'peerid': '02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:42216'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(16959):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'peerid': '02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:42216'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(16959):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lnd(16331):2017-11-29 18:24:39.662 [INF] RPCS: [newaddress] addr=2N2e7PyZP8mVPEL7TH3jPTH92GGdbtwrLMw
{"method": "sendtoaddress", "params": ["2N2e7PyZP8mVPEL7TH3jPTH92GGdbtwrLMw", 0.2], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:24:39 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:24:39 keypool reserve 1116
DEBUG:bitcoind:2017-11-29 17:24:39 Fee Calculation: Fee:6760 Bytes:338 Needed:6760 Tgt:6 (requested 6) Reason:"Fallback fee" Decay 0.96200: Estimation: (-1 - -1) -nan% 0.0/(0.0 0 mem 0.0 out) Fail: (0 - 1e+99) 100.00% 0.4/(0.4 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 17:24:39 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=cc346ebe77, ver=2, vin.size=2, vout.size=2, nLockTime=2292)
DEBUG:bitcoind: CTxIn(COutPoint(a990b1051f, 1), scriptSig=483045022100a074436e14bf, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(edeb07fe0c, 0), scriptSig=473044022037dfe811d3ed2d, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=0.01026296, scriptPubKey=76a91479282ddde953568f8be850b7)
DEBUG:bitcoind: CTxOut(nValue=0.20000000, scriptPubKey=a914670d32650215b0b638ab78b464)
DEBUG:bitcoind:2017-11-29 17:24:39 keypool keep 1116
DEBUG:bitcoind:2017-11-29 17:24:39 AddToWallet cc346ebe778d631193d8fa24271265768b9b82c8c7e580162c79f854e1402341 new
DEBUG:bitcoind:2017-11-29 17:24:39 AddToWallet cc346ebe778d631193d8fa24271265768b9b82c8c7e580162c79f854e1402341
DEBUG:bitcoind:2017-11-29 17:24:39 Relaying wtx cc346ebe778d631193d8fa24271265768b9b82c8c7e580162c79f854e1402341
DEBUG:root:Waiting for 'Inserting unconfirmed transaction' in the logs
DEBUG:lnd(16331):2017-11-29 18:24:41.557 [INF] LNWL: Inserting unconfirmed transaction cc346ebe778d631193d8fa24271265768b9b82c8c7e580162c79f854e1402341
DEBUG:root:Found 'Inserting unconfirmed transaction' in logs
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}DEBUG:lnd(16331):2017-11-29 18:24:41.557 [DBG] LNWL: Marked address 2N2e7PyZP8mVPEL7TH3jPTH92GGdbtwrLMw used
DEBUG:bitcoind:2017-11-29 17:24:41 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:24:41 keypool reserve 2711
DEBUG:bitcoind:2017-11-29 17:24:41 CreateNewBlock(): total size: 600 block weight: 2292 txs: 1 fees: 6760 sigops 404
DEBUG:bitcoind:2017-11-29 17:24:41 UpdateTip: new best=4b454508ad493bccad5cca8a3e65af94589504a725f43760c85ed18e9efbc0ae height=2293 version=0x20000000 log2_work=12.16365 tx=2504 date='2017-11-29 17:24:41' progress=1.000000 cache=0.5MiB(2494txo)
DEBUG:bitcoind:2017-11-29 17:24:41 AddToWallet 6e604d9e8ca16529b0a25eed958cabe5b082e9bfd139a25ef8be42e2351aabf5 new
DEBUG:bitcoind:2017-11-29 17:24:41 AddToWallet cc346ebe778d631193d8fa24271265768b9b82c8c7e580162c79f854e1402341 update
DEBUG:bitcoind:2017-11-29 17:24:41 keypool keep 2711
DEBUG:root:Waiting for 'Marking unconfirmed transaction' in the logs
DEBUG:proc:lightningd(16959): Adding block aec0fb9e8ed15ec86037f425a704955894af653e8aca5cadcc3b49ad0845454b
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:2017-11-29 18:24:41.694 [INF] BMGR: Processed 10 blocks in the last 54.8s (11 transactions, height 2293, 2017-11-29 18:24:41 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:24:41.694 [INF] CRTR: Pruning channel graph using block 4b454508ad493bccad5cca8a3e65af94589504a725f43760c85ed18e9efbc0ae (height=2293)
DEBUG:lnd(16331):2017-11-29 18:24:41.695 [INF] LNWL: Marking unconfirmed transaction cc346ebe778d631193d8fa24271265768b9b82c8c7e580162c79f854e1402341 mined in block 2293
DEBUG:root:Found 'Marking unconfirmed transaction' in logs
DEBUG:lnd(16331):2017-11-29 18:24:41.696 [DBG] LNWL: Marked address 2N2e7PyZP8mVPEL7TH3jPTH92GGdbtwrLMw used
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:lnd(16331):2017-11-29 18:24:41.697 [INF] NTFN: New block: height=2293, sha=4b454508ad493bccad5cca8a3e65af94589504a725f43760c85ed18e9efbc0ae
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:24:41.710 [INF] CRTR: Block 4b454508ad493bccad5cca8a3e65af94589504a725f43760c85ed18e9efbc0ae (height=2293) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:42.697 [DBG] RPCS: [walletbalance] balance=0.2 BTC
{"method": "generate", "params": [10], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:24:47 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:24:47 keypool reserve 2712
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=549edec19af11d1659e0f510617181b1b182cb03552faf5463a82e0c306a454a height=2294 version=0x20000000 log2_work=12.164278 tx=2505 date='2017-11-29 17:24:47' progress=1.000000 cache=0.5MiB(2495txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet 8034c614d084ee2d8816036429a62779c4ce31f9d31bcc18d3a49122d69a888d new
DEBUG:bitcoind:2017-11-29 17:24:47 keypool keep 2712
DEBUG:proc:lightningd(16959): Adding block 4a456a300c2ea86354af2f5503cb82b1b181716110f5e059161df19ac1de9e54
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=4e15f3c54bbef998057e4b6f10e3b56252d0ddecd556c679b944d864b0648753 height=2295 version=0x20000000 log2_work=12.164907 tx=2506 date='2017-11-29 17:24:47' progress=1.000000 cache=0.5MiB(2496txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet 0c6052aca2c6853e19cc54e01062449aba706aff4b6580d867f0de314cc83f97 new
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:proc:2017-11-29 18:24:47.774 [INF] CHAN: Adding orphan block 4e15f3c54bbef998057e4b6f10e3b56252d0ddecd556c679b944d864b0648753 with parent 549edec19af11d1659e0f510617181b1b182cb03552faf5463a82e0c306a454a
DEBUG:lnd(16331):2017-11-29 18:24:47.779 [INF] CRTR: Pruning channel graph using block 549edec19af11d1659e0f510617181b1b182cb03552faf5463a82e0c306a454a (height=2294)
DEBUG:lnd(16331):2017-11-29 18:24:47.781 [INF] NTFN: New block: height=2294, sha=549edec19af11d1659e0f510617181b1b182cb03552faf5463a82e0c306a454a
DEBUG:lnd(16331):2017-11-29 18:24:47.782 [INF] NTFN: New block: height=2295, sha=4e15f3c54bbef998057e4b6f10e3b56252d0ddecd556c679b944d864b0648753
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=309974a97c5d1aa08a13ff262e54ad55204997cb3c9ce8f5678663cd2836217f height=2296 version=0x20000000 log2_work=12.165535 tx=2507 date='2017-11-29 17:24:47' progress=1.000000 cache=0.5MiB(2497txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet c6fdccfbdd90e0569e62601bf1a6f55c6744e7b175c1a06624acb29d689cc8ad new
DEBUG:lnd(16331):2017-11-29 18:24:47.791 [INF] CRTR: Block 549edec19af11d1659e0f510617181b1b182cb03552faf5463a82e0c306a454a (height=2294) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:47.791 [INF] CRTR: Pruning channel graph using block 4e15f3c54bbef998057e4b6f10e3b56252d0ddecd556c679b944d864b0648753 (height=2295)
DEBUG:lnd(16331):2017-11-29 18:24:47.792 [INF] NTFN: New block: height=2296, sha=309974a97c5d1aa08a13ff262e54ad55204997cb3c9ce8f5678663cd2836217f
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=1fd61fa181944590a4542fd71101d8f3d75788422b731490e41b1813e32c878e height=2297 version=0x20000000 log2_work=12.166163 tx=2508 date='2017-11-29 17:24:47' progress=1.000000 cache=0.5MiB(2498txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet 3767b86e5107f777bb434ead9b91084cb8c69b7b40495277a90ad2f0314b0a5c new
DEBUG:lnd(16331):2017-11-29 18:24:47.801 [INF] CRTR: Block 4e15f3c54bbef998057e4b6f10e3b56252d0ddecd556c679b944d864b0648753 (height=2295) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:47.801 [INF] CRTR: Pruning channel graph using block 309974a97c5d1aa08a13ff262e54ad55204997cb3c9ce8f5678663cd2836217f (height=2296)
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:lnd(16331):2017-11-29 18:24:47.808 [INF] CRTR: Block 309974a97c5d1aa08a13ff262e54ad55204997cb3c9ce8f5678663cd2836217f (height=2296) closed 0 channels
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=2c09a0c059379ef82ad74bce404e335bd62d50ffd7e8be7083d93c994d3e0eb0 height=2298 version=0x20000000 log2_work=12.166791 tx=2509 date='2017-11-29 17:24:47' progress=1.000000 cache=0.5MiB(2499txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet 9b6fcc9375b91a65d1eb5845fecf4e25bc45680eb76032eb7f7be1db6df437d2 new
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=365a5fcf6a6879d35d792767c740a852ed5b64c6f0235101199ea86115a6f1bd height=2299 version=0x20000000 log2_work=12.167418 tx=2510 date='2017-11-29 17:24:47' progress=1.000000 cache=0.5MiB(2500txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet ca754c19c28a6c1e5608fd03a6d49a874e7b87811e3977b6062e88866cef923e new
DEBUG:lnd(16331):2017-11-29 18:24:47.822 [INF] NTFN: New block: height=2297, sha=1fd61fa181944590a4542fd71101d8f3d75788422b731490e41b1813e32c878e
DEBUG:lnd(16331):2017-11-29 18:24:47.823 [INF] CRTR: Pruning channel graph using block 1fd61fa181944590a4542fd71101d8f3d75788422b731490e41b1813e32c878e (height=2297)
DEBUG:lnd(16331):2017-11-29 18:24:47.827 [INF] NTFN: New block: height=2298, sha=2c09a0c059379ef82ad74bce404e335bd62d50ffd7e8be7083d93c994d3e0eb0
DEBUG:lnd(16331):2017-11-29 18:24:47.829 [INF] NTFN: New block: height=2299, sha=365a5fcf6a6879d35d792767c740a852ed5b64c6f0235101199ea86115a6f1bd
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=6682c851ec07570afdc73ac73f2d44e8377934573029a9b632973b94f253a92a height=2300 version=0x20000000 log2_work=12.168045 tx=2511 date='2017-11-29 17:24:48' progress=1.000000 cache=0.5MiB(2501txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet 8ec2ce8e76a397614a19b9dbaf64fd5c380c34e0d72d6ef86890376b5e42cc0c new
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=7d0dfed66a5e9616cba78770745c8a7f21ca25c1da3dfacd8177deee18930703 height=2301 version=0x20000000 log2_work=12.168672 tx=2512 date='2017-11-29 17:24:48' progress=1.000000 cache=0.5MiB(2502txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet 9cbdc576b1c9abfef705308b9e526a487be423c3b7326ccbc91eb366a274e750 new
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=3daa44c08b3efbb1a297b5dc624dc11620d500eb960828f858329f3d6a522b44 height=2302 version=0x20000000 log2_work=12.169299 tx=2513 date='2017-11-29 17:24:48' progress=1.000000 cache=0.5MiB(2503txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet 78df728ff1f09f432df25887c6f69e7f974165f91a2508d039536981e73c4a6d new
DEBUG:bitcoind:2017-11-29 17:24:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:47 UpdateTip: new best=67ae11be263358a47af6d07c45a2894c8b35d56bc5eaea26d86093179c0c401b height=2303 version=0x20000000 log2_work=12.169925 tx=2514 date='2017-11-29 17:24:48' progress=1.000000 cache=0.5MiB(2504txo)
DEBUG:bitcoind:2017-11-29 17:24:47 AddToWallet c97233e70a22f3bd46cf4618b4d37595742ce533a52d501744d1afcc410293b6 new
DEBUG:lnd(16331):2017-11-29 18:24:47.917 [INF] CRTR: Block 1fd61fa181944590a4542fd71101d8f3d75788422b731490e41b1813e32c878e (height=2297) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:47.917 [INF] CRTR: Pruning channel graph using block 2c09a0c059379ef82ad74bce404e335bd62d50ffd7e8be7083d93c994d3e0eb0 (height=2298)
DEBUG:lnd(16331):2017-11-29 18:24:47.923 [INF] CRTR: Block 2c09a0c059379ef82ad74bce404e335bd62d50ffd7e8be7083d93c994d3e0eb0 (height=2298) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:47.923 [INF] CRTR: Pruning channel graph using block 365a5fcf6a6879d35d792767c740a852ed5b64c6f0235101199ea86115a6f1bd (height=2299)
DEBUG:lnd(16331):2017-11-29 18:24:47.930 [INF] CRTR: Block 365a5fcf6a6879d35d792767c740a852ed5b64c6f0235101199ea86115a6f1bd (height=2299) closed 0 channels
DEBUG:proc:2017-11-29 18:24:47.953 [INF] CHAN: Adding orphan block 67ae11be263358a47af6d07c45a2894c8b35d56bc5eaea26d86093179c0c401b with parent 3daa44c08b3efbb1a297b5dc624dc11620d500eb960828f858329f3d6a522b44
DEBUG:lnd(16331):2017-11-29 18:24:47.955 [INF] CRTR: Pruning channel graph using block 6682c851ec07570afdc73ac73f2d44e8377934573029a9b632973b94f253a92a (height=2300)
DEBUG:lnd(16331):2017-11-29 18:24:47.955 [INF] NTFN: New block: height=2300, sha=6682c851ec07570afdc73ac73f2d44e8377934573029a9b632973b94f253a92a
DEBUG:lnd(16331):2017-11-29 18:24:47.957 [INF] NTFN: New block: height=2301, sha=7d0dfed66a5e9616cba78770745c8a7f21ca25c1da3dfacd8177deee18930703
DEBUG:lnd(16331):2017-11-29 18:24:47.958 [INF] NTFN: New block: height=2302, sha=3daa44c08b3efbb1a297b5dc624dc11620d500eb960828f858329f3d6a522b44
DEBUG:lnd(16331):2017-11-29 18:24:47.960 [INF] NTFN: New block: height=2303, sha=67ae11be263358a47af6d07c45a2894c8b35d56bc5eaea26d86093179c0c401b
DEBUG:lnd(16331):2017-11-29 18:24:47.964 [INF] CRTR: Block 6682c851ec07570afdc73ac73f2d44e8377934573029a9b632973b94f253a92a (height=2300) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:47.964 [INF] CRTR: Pruning channel graph using block 7d0dfed66a5e9616cba78770745c8a7f21ca25c1da3dfacd8177deee18930703 (height=2301)
DEBUG:lnd(16331):2017-11-29 18:24:47.979 [INF] CRTR: Block 7d0dfed66a5e9616cba78770745c8a7f21ca25c1da3dfacd8177deee18930703 (height=2301) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:47.979 [INF] CRTR: Pruning channel graph using block 3daa44c08b3efbb1a297b5dc624dc11620d500eb960828f858329f3d6a522b44 (height=2302)
DEBUG:lnd(16331):2017-11-29 18:24:48.060 [INF] CRTR: Block 3daa44c08b3efbb1a297b5dc624dc11620d500eb960828f858329f3d6a522b44 (height=2302) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:24:48.060 [INF] CRTR: Pruning channel graph using block 67ae11be263358a47af6d07c45a2894c8b35d56bc5eaea26d86093179c0c401b (height=2303)
DEBUG:lnd(16331):2017-11-29 18:24:48.067 [INF] CRTR: Block 67ae11be263358a47af6d07c45a2894c8b35d56bc5eaea26d86093179c0c401b (height=2303) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 1b400c9c179360d826eaeac56bd5358b4c89a2457cd0f67aa4583326be11ae67
DEBUG:proc:lightningd(16959): Adding block 442b526a3d9f3258f8280896eb00d52016c14d62dcb597a2b1fb3e8bc044aa3d
DEBUG:proc:lightningd(16959): Adding block 03079318eede7781cdfa3ddac125ca217f8a5c747087a7cb16965e6ad6fe0d7d
DEBUG:proc:lightningd(16959): Adding block 2aa953f2943b9732b6a9293057347937e8442d3fc73ac7fd0a5707ec51c88266
DEBUG:proc:lightningd(16959): Adding block bdf1a61561a89e19015123f0c6645bed52a840c76727795dd379686acf5f5a36
DEBUG:proc:lightningd(16959): Adding block b00e3e4d993cd98370bee8d7ff502dd65b334e40ce4bd72af89e3759c0a0092c
DEBUG:proc:lightningd(16959): Adding block 8e872ce313181be49014732b428857d7f3d80111d72f54a490459481a11fd61f
DEBUG:proc:lightningd(16959): Adding block 7f213628cd638667f5e89c3ccb97492055ad542e26ff138aa01a5d7ca9749930
DEBUG:proc:lightningd(16959): Adding block 538764b064d844b979c656d5ecddd05262b5e3106f4b7e0598f9be4bc5f3154e
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:24:52.859 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:24:52.859 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lnd(16331):2017-11-29 18:24:52.860 [TRC] RPCS: [openchannel] request to peerid(1) allocation(us=10000000, them=0)
DEBUG:lnd(16331):2017-11-29 18:24:52.861 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:24:52.861 [DBG] RPCS: [openchannel]: using fee of 25 sat/byte for funding tx
DEBUG:lnd(16331):2017-11-29 18:24:52.861 [INF] FNDG: Initiating fundingRequest(localAmt=0.1 BTC, remoteAmt=0 mSAT, capacity=0.1 BTC, chainhash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, addr=127.0.0.1:16332, dustLimit=0.00000573 BTC)
DEBUG:lnd(16331):2017-11-29 18:24:52.861 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:24:52.861 [INF] LNWL: Performing funding tx coin selection using 6 sat/weight as fee rate
DEBUG:lnd(16331):2017-11-29 18:24:52.914 [INF] FNDG: Target commit tx sat/kw for pendingID(1a8e1e07b4396aa7f869e4175b67b3554980b19495945034cbfa7d37714ba288): 6000
DEBUG:lnd(16331):2017-11-29 18:24:52.914 [INF] FNDG: Starting funding workflow with 127.0.0.1:16332 for pendingID(1a8e1e07b4396aa7f869e4175b67b3554980b19495945034cbfa7d37714ba288)
DEBUG:lnd(16331):2017-11-29 18:24:52.914 [INF] SRVR: Attempting to send msgs 1 to: 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b
DEBUG:lnd(16331):2017-11-29 18:24:52.914 [DBG] PEER: Sending MsgOpenChannel(temp_chan_id=1a8e1e07b4396aa7f869e4175b67b3554980b19495945034cbfa7d37714ba288, chain=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, csv=4, amt=0.1 BTC, push_amt=0 mSAT, reserve=0.001 BTC, flags=1) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:52.914 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.OpenChannel)(0xc420599340)({
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): PendingChannelID: ([32]uint8) (len=32 cap=32) {
DEBUG:lnd(16331): 00000000 1a 8e 1e 07 b4 39 6a a7 f8 69 e4 17 5b 67 b3 55 |.....9j..i..[g.U|
DEBUG:lnd(16331): 00000010 49 80 b1 94 95 94 50 34 cb fa 7d 37 71 4b a2 88 |I.....P4..}7qK..|
DEBUG:lnd(16331): },
DEBUG:lnd(16331): FundingAmount: (btcutil.Amount) 0.1 BTC,
DEBUG:lnd(16331): PushAmount: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): DustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16331): MaxValueInFlight: (lnwire.MilliSatoshi) 9900000000 mSAT,
DEBUG:lnd(16331): ChannelReserve: (btcutil.Amount) 0.001 BTC,
DEBUG:lnd(16331): HtlcMinimum: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): FeePerKiloWeight: (uint32) 6000,
DEBUG:lnd(16331): CsvDelay: (uint16) 4,
DEBUG:lnd(16331): MaxAcceptedHTLCs: (uint16) 483,
DEBUG:lnd(16331): FundingKey: (*btcec.PublicKey)(0xc4205f8de0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4201a1120)(85743648117298891579934564319990559272280032519235250151549850458865892748102),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201a1140)(28860597764367401004994944720665469808765736907407917789803944992472782891883)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RevocationPoint: (*btcec.PublicKey)(0xc4205f94a0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4201a1bc0)(48461999665680633777946211141462561308839183112178113091470577529978693028020),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201a1be0)(113820337843207586115516599720090519336455341042720674437443544540674943316223)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): PaymentPoint: (*btcec.PublicKey)(0xc4205ce9f0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420622840)(28862385218779686498372967732840868883257230477300074767607977500133567430758),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420622860)(3431839168524595880478337939220533257515601215002435843239629406539459036778)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4205cf080)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420623140)(46508469467452252661294554143101189663864497310707041972877225833316999461355),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420623160)(14673059856150365917350158349743136795207229251175230642198580422759355924366)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): HtlcPoint: (*btcec.PublicKey)(0xc4205ce360)({
DEBUG:lnd(16331): Curve: (*btcec.KoblitzCurve)(0x14eb520)({
DEBUG:lnd(16331): CurveParams: (*elliptic.CurveParams)(0xc420018ec0)({
DEBUG:lnd(16331): P: (*big.Int)(0xc42000d120)(115792089237316195423570985008687907853269984665640564039457584007908834671663),
DEBUG:lnd(16331): N: (*big.Int)(0xc42000d160)(115792089237316195423570985008687907852837564279074904382605163141518161494337),
DEBUG:lnd(16331): B: (*big.Int)(0xc42000d1a0)(7),
DEBUG:lnd(16331): Gx: (*big.Int)(0xc42000d1e0)(55066263022277343669578718895168534326250603453777594175500187360389116729240),
DEBUG:lnd(16331): Gy: (*big.Int)(0xc42000d220)(32670510020758816978083085130507043184471273380659243275938904335757337482424),
DEBUG:lnd(16331): BitSize: (int) 256,
DEBUG:lnd(16331): Name: (string) ""
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): q: (*big.Int)(0xc42000d260)(28948022309329048855892746252171976963317496166410141009864396001977208667916),
DEBUG:lnd(16331): H: (int) 1,
DEBUG:lnd(16331): halfOrder: (*big.Int)(0xc42000d2c0)(57896044618658097711785492504343953926418782139537452191302581570759080747168),
DEBUG:lnd(16331): byteSize: (int) 32,
DEBUG:lnd(16331): (btcec.fieldVal) 0000000000000000000000000000000000000000000000000000000000000000
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): lambda: (*big.Int)(0xc42000db80)(37718080363155996902926221483475020450927657555482586988616620542887997980018),
DEBUG:lnd(16331): beta: (*btcec.fieldVal)(0xc420015110)(7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee),
DEBUG:lnd(16331): a1: (*big.Int)(0xc42000dbe0)(64502973549206556628585045361533709077),
DEBUG:lnd(16331): b1: (*big.Int)(0xc42000dc20)(-303414439467246543595250775667605759171),
DEBUG:lnd(16331): a2: (*big.Int)(0xc42000dc60)(367917413016453100223835821029139468248),
DEBUG:lnd(16331): b2: (*big.Int)(0xc42000dca0)(64502973549206556628585045361533709077)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): X: (*big.Int)(0xc4202ebe60)(112984537096257353410075262037874921862679668205109182993161996379332111660156),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202ebe80)(44185950678800268116740235483264455041534030181829403730149234080359306945533)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): FirstCommitmentPoint: (*btcec.PublicKey)(0xc4202ce200)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202ce180)(87096117338943753853208280765092681242152815591563548002004906629187090167989),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202ce1a0)(40788184519728711109919303586197810813746269352069464230160819500865353671644)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelFlags: (lnwire.FundingFlag) 1
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:proc:lightning_gossipd(17075): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightning_gossipd(17075): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightningd(16959): peer 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9: state: UNINITIALIZED -> OPENINGD
DEBUG:proc:lightning_openingd(17612): pid 17612, msgfd 18
DEBUG:proc:lightningd(16959): No fee estimate for Immediate: basing on default fee rate
DEBUG:proc:lightningd(16959): No fee estimate for Slow: basing on default fee rate
DEBUG:proc:lightning_openingd(17612): TRACE: First per_commit_point = 03c2b042d7191c469ca1a30c524c7376d0429181eac203ab4a4dcfa84387e0fd37
DEBUG:lnd(16331):2017-11-29 18:24:54.664 [DBG] PEER: Received Error(chan_id=1a8e1e07b4396aa7f869e4175b67b3554980b19495945034cbfa7d37714ba288, err=[102 101 101 114 97 116 101 95 112 101 114 95 107 119 32 54 48 48 48 32 98 101 108 111 119 32 109 105 110 105 109 117 109 32 49 48 48 48 48 0]) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:54.664 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Error)(0xc4201b6800)({
DEBUG:lnd(16331): ChanID: (lnwire.ChannelID) (len=32 cap=32) 1a8e1e07b4396aa7f869e4175b67b3554980b19495945034cbfa7d37714ba288,
DEBUG:lnd(16331): Data: (lnwire.ErrorData) (len=40 cap=40) {
DEBUG:lnd(16331): 00000000 66 65 65 72 61 74 65 5f 70 65 72 5f 6b 77 20 36 |feerate_per_kw 6|
DEBUG:lnd(16331): 00000010 30 30 30 20 62 65 6c 6f 77 20 6d 69 6e 69 6d 75 |000 below minimu|
DEBUG:lnd(16331): 00000020 6d 20 31 30 30 30 30 00 |m 10000.|
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [INF] PEER: unable to read message from 127.0.0.1:16332: EOF
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [ERR] FNDG: Received funding error from 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b: unknown error
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [TRC] PEER: Disconnecting 127.0.0.1:16332, reason: read handler closed
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [ERR] RPCS: unable to open channel to identityPub() nor peerID(1): rpc error: code = Code(202) desc = unknown error
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [INF] FNDG: Cancelling funding reservation for node_key=033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b, chan_id=1a8e1e07b4396aa7f869e4175b67b3554980b19495945034cbfa7d37714ba288
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [DBG] SRVR: Peer 127.0.0.1:16332 has been disconnected
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [TRC] PEER: writeHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [DBG] FNDG: Cancelling all reservations for peer 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [ERR] SRVR: unable to get channel links: unable to locate channel link bydestination hop id 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [TRC] PEER: readHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [TRC] PEER: Update stream for gossiper exited
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [DBG] SRVR: removing peer 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [DBG] SRVR: Attempting to re-establish persistent connection to peer 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [DBG] CMGR: Disconnected from 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b@127.0.0.1:16332 (reqid 1)
DEBUG:lnd(16331):2017-11-29 18:24:54.665 [DBG] CMGR: Attempting to connect to 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b@127.0.0.1:16332 (reqid 2)
DEBUG:proc:lightning_gossipd(17075): TRACE: Forgetting remote peer 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9
DEBUG:proc:lightning_openingd(17612): STATUS_FAIL_PEER_BAD: feerate_per_kw 6000 below minimum 10000
DEBUG:proc:lightningd(16959): peer 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9: Peer permanent failure in OPENINGD: feerate_per_kw 6000 below minimum 10000
DEBUG:proc:lightning_gossipd(17075): TRACE: Responder: Act 1
DEBUG:proc:lightning_gossipd(17075): TRACE: Responder: Act 2
DEBUG:proc:lightning_gossipd(17075): TRACE: Responder: Act 3
DEBUG:lnd(16331):2017-11-29 18:24:54.666 [DBG] CMGR: Connected to 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b@127.0.0.1:16332 (reqid 2)
DEBUG:lnd(16331):2017-11-29 18:24:54.666 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:54.666 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16331):2017-11-29 18:24:54.666 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:54.666 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc420278730)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4306ea050)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42065e018)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:24:54.666 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:54.666 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc4201a8430)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4201a2048)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201a2050)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:proc:lightning_gossipd(17075): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:proc:lightning_gossipd(17075): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331): }
DEBUG:proc:lightning_gossipd(17075): TRACE: Forgetting remote peer 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9
DEBUG:lnd(16331): })
DEBUG:proc:lightning_gossipd(17075): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:lnd(16331):})
DEBUG:proc:lightning_gossipd(17075): TRACE: handle_peer 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9: new peer
DEBUG:lnd(16331):
DEBUG:proc:lightning_gossipd(17075): TRACE: Received node_announcement for node 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9
DEBUG:lnd(16331):2017-11-29 18:24:54.667 [DBG] PEER: Loaded 0 active channels from database with peerID(2)
DEBUG:proc:lightning_gossipd(17075): TRACE: Node not found, was the node_announcement preceeded by at least channel_announcement?
DEBUG:lnd(16331):2017-11-29 18:24:54.667 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16331):2017-11-29 18:24:54.667 [INF] DISC: Syncing channel graph state with 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 18:24:54.667 [INF] SRVR: Attempting to send msgs 1 to: 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b
DEBUG:lnd(16331):2017-11-29 18:24:54.667 [DBG] PEER: Sending NodeAnnouncement(node=02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9, update_time=2017-11-29 18:24:32 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:54.667 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4200726c0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420278ba0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4202eb640)(97572429078046809103827197991560191873767894058946252954869181021630376431299),
DEBUG:lnd(16331): S: (*big.Int)(0xc4202eb660)(46790467536502174905002238543845041270819311807921981248475645095428181975784)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42065e030)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511976272,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4202eb540)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202eb560)(102339305114932766363652516443285833023163243666323981705907444805995629536185),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202eb580)(101323977589482380865158451962604223308668126974566290148935445952383066547200)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): red: (uint8) 0,
DEBUG:lnd(16331): green: (uint8) 0,
DEBUG:lnd(16331): blue: (uint8) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) 02e241fe77e4d38cfb7b,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:24:57 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:24:57 keypool reserve 2713
DEBUG:bitcoind:2017-11-29 17:24:57 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:57 UpdateTip: new best=0d37bb5709a3f70ebea1a662b325773ecf2e1a1f8021a6e89fbee56b2fd157fd height=2304 version=0x20000000 log2_work=12.170551 tx=2515 date='2017-11-29 17:24:57' progress=1.000000 cache=0.5MiB(2505txo)
DEBUG:proc:lightningd(16959): Ignoring chaintip 0d37bb5709a3f70ebea1a662b325773ecf2e1a1f8021a6e89fbee56b2fd157fd status valid-headers
DEBUG:bitcoind:2017-11-29 17:24:57 AddToWallet 1128dc794b8f782107b38633ac24ea6333e6e94d455753fa3dc081d9634bbb00 new
DEBUG:bitcoind:2017-11-29 17:24:57 keypool keep 2713
DEBUG:proc:2017-11-29 18:24:57.982 [INF] BMGR: Processed 9 blocks in the last 16.28s (9 transactions, height 2304, 2017-11-29 18:24:57 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:24:57.983 [INF] CRTR: Pruning channel graph using block 0d37bb5709a3f70ebea1a662b325773ecf2e1a1f8021a6e89fbee56b2fd157fd (height=2304)
DEBUG:lnd(16331):2017-11-29 18:24:57.983 [INF] NTFN: New block: height=2304, sha=0d37bb5709a3f70ebea1a662b325773ecf2e1a1f8021a6e89fbee56b2fd157fd
DEBUG:lnd(16331):2017-11-29 18:24:57.997 [INF] CRTR: Block 0d37bb5709a3f70ebea1a662b325773ecf2e1a1f8021a6e89fbee56b2fd157fd (height=2304) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block fd57d12f6be5be9fe8a621801f1a2ecf3e7725b362a6a1be0ef7a30957bb370d
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:24:58 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:24:58 keypool reserve 2714
DEBUG:bitcoind:2017-11-29 17:24:58 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:58 UpdateTip: new best=4392639dc905709f7a8012abd62df173086c58075a90b4ed2a64c8e20e9272f0 height=2305 version=0x20000000 log2_work=12.171177 tx=2516 date='2017-11-29 17:24:58' progress=1.000000 cache=0.5MiB(2506txo)
DEBUG:bitcoind:2017-11-29 17:24:58 AddToWallet f6a6b84ef711e8eef02d187efdd31ead35e45e8e6fcb6a84a580366b1284e42e new
DEBUG:bitcoind:2017-11-29 17:24:58 keypool keep 2714
DEBUG:lnd(16331):2017-11-29 18:24:59.047 [INF] CRTR: Pruning channel graph using block 4392639dc905709f7a8012abd62df173086c58075a90b4ed2a64c8e20e9272f0 (height=2305)
DEBUG:lnd(16331):2017-11-29 18:24:59.048 [INF] NTFN: New block: height=2305, sha=4392639dc905709f7a8012abd62df173086c58075a90b4ed2a64c8e20e9272f0
DEBUG:lnd(16331):2017-11-29 18:24:59.060 [INF] CRTR: Block 4392639dc905709f7a8012abd62df173086c58075a90b4ed2a64c8e20e9272f0 (height=2305) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block f072920ee2c8642aedb4905a07586c0873f12dd6ab12807a9f7005c99d639243
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:24:59 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:24:59 keypool reserve 2715
DEBUG:bitcoind:2017-11-29 17:24:59 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:24:59 UpdateTip: new best=7659d8a4a1620313dd847fc794c7246f8bcfe7d368dca0c6d6ade6d03874af58 height=2306 version=0x20000000 log2_work=12.171802 tx=2517 date='2017-11-29 17:24:59' progress=1.000000 cache=0.5MiB(2507txo)
DEBUG:bitcoind:2017-11-29 17:24:59 AddToWallet 54bc5b79f5c8dd100f3013ce16d54383bac91eb07787e680d33cf0ec91db2eb0 new
DEBUG:bitcoind:2017-11-29 17:24:59 keypool keep 2715
DEBUG:lnd(16331):2017-11-29 18:25:00.082 [INF] CRTR: Pruning channel graph using block 7659d8a4a1620313dd847fc794c7246f8bcfe7d368dca0c6d6ade6d03874af58 (height=2306)
DEBUG:lnd(16331):2017-11-29 18:25:00.082 [INF] NTFN: New block: height=2306, sha=7659d8a4a1620313dd847fc794c7246f8bcfe7d368dca0c6d6ade6d03874af58
DEBUG:lnd(16331):2017-11-29 18:25:00.092 [INF] CRTR: Block 7659d8a4a1620313dd847fc794c7246f8bcfe7d368dca0c6d6ade6d03874af58 (height=2306) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 58af7438d0e6add6c6a0dc68d3e7cf8b6f24c794c77f84dd130362a1a4d85976
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:00 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:01 keypool reserve 2716
DEBUG:bitcoind:2017-11-29 17:25:01 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:01 UpdateTip: new best=05e553097c421ff890fe47307f4b961a21289c86f10ab9ccf032b54af7f5fe40 height=2307 version=0x20000000 log2_work=12.172428 tx=2518 date='2017-11-29 17:25:01' progress=1.000000 cache=0.5MiB(2508txo)
DEBUG:bitcoind:2017-11-29 17:25:01 AddToWallet cd4092b73a37e48a06bd92f25a1cbe804a88aa1e1c056c676e2dbad783969dde new
DEBUG:bitcoind:2017-11-29 17:25:01 keypool keep 2716
DEBUG:lnd(16331):2017-11-29 18:25:01.135 [INF] CRTR: Pruning channel graph using block 05e553097c421ff890fe47307f4b961a21289c86f10ab9ccf032b54af7f5fe40 (height=2307)
DEBUG:lnd(16331):2017-11-29 18:25:01.136 [INF] NTFN: New block: height=2307, sha=05e553097c421ff890fe47307f4b961a21289c86f10ab9ccf032b54af7f5fe40
DEBUG:lnd(16331):2017-11-29 18:25:01.146 [INF] CRTR: Block 05e553097c421ff890fe47307f4b961a21289c86f10ab9ccf032b54af7f5fe40 (height=2307) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 40fef5f74ab532f0ccb90af1869c28211a964b7f3047fe90f81f427c0953e505
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:02 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:02 keypool reserve 2717
DEBUG:bitcoind:2017-11-29 17:25:02 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:02 UpdateTip: new best=0fae033e5a4d3a02351d151fde13bfb6d65d8ed92f4dcb167277fc94360aa6e4 height=2308 version=0x20000000 log2_work=12.173052 tx=2519 date='2017-11-29 17:25:02' progress=1.000000 cache=0.5MiB(2509txo)
DEBUG:bitcoind:2017-11-29 17:25:02 AddToWallet b0f89b48a7ce957335731da4497d3f5120cc872f46973d6db3be01a2dc28ce3b new
DEBUG:bitcoind:2017-11-29 17:25:02 keypool keep 2717
DEBUG:lnd(16331):2017-11-29 18:25:02.199 [INF] CRTR: Pruning channel graph using block 0fae033e5a4d3a02351d151fde13bfb6d65d8ed92f4dcb167277fc94360aa6e4 (height=2308)
DEBUG:lnd(16331):2017-11-29 18:25:02.200 [INF] NTFN: New block: height=2308, sha=0fae033e5a4d3a02351d151fde13bfb6d65d8ed92f4dcb167277fc94360aa6e4
DEBUG:lnd(16331):2017-11-29 18:25:02.207 [INF] CRTR: Block 0fae033e5a4d3a02351d151fde13bfb6d65d8ed92f4dcb167277fc94360aa6e4 (height=2308) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block e4a60a3694fc777216cb4d2fd98e5dd6b6bf13de1f151d35023a4d5a3e03ae0f
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:03 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:03 keypool reserve 2718
DEBUG:bitcoind:2017-11-29 17:25:03 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:03 UpdateTip: new best=1e4ebf5f4eb080cad8dbca8ef3c43f087ea3b40047e07bbacabb76cd71ae9a7d height=2309 version=0x20000000 log2_work=12.173677 tx=2520 date='2017-11-29 17:25:03' progress=1.000000 cache=0.5MiB(2510txo)
DEBUG:bitcoind:2017-11-29 17:25:03 AddToWallet 55e9f545a5421352c1f681f6a4878b28e2b7e3edd81cc0485aa9e65fa768f4df new
DEBUG:bitcoind:2017-11-29 17:25:03 keypool keep 2718
DEBUG:lnd(16331):2017-11-29 18:25:03.246 [INF] CRTR: Pruning channel graph using block 1e4ebf5f4eb080cad8dbca8ef3c43f087ea3b40047e07bbacabb76cd71ae9a7d (height=2309)
DEBUG:lnd(16331):2017-11-29 18:25:03.246 [INF] NTFN: New block: height=2309, sha=1e4ebf5f4eb080cad8dbca8ef3c43f087ea3b40047e07bbacabb76cd71ae9a7d
DEBUG:lnd(16331):2017-11-29 18:25:03.256 [INF] CRTR: Block 1e4ebf5f4eb080cad8dbca8ef3c43f087ea3b40047e07bbacabb76cd71ae9a7d (height=2309) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 7d9aae71cd76bbcaba7be04700b4a37e083fc4f38ecadbd8ca80b04e5fbf4e1e
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:04 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:04 keypool reserve 2719
DEBUG:bitcoind:2017-11-29 17:25:04 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:04 UpdateTip: new best=7ba49028d3d1a7e9b4b42239a9afb9613a60bf863db65cf9b50587ad9e9f0c1b height=2310 version=0x20000000 log2_work=12.174302 tx=2521 date='2017-11-29 17:25:04' progress=1.000000 cache=0.5MiB(2511txo)
DEBUG:bitcoind:2017-11-29 17:25:04 AddToWallet c5e955d21d19783e1e38f68ea20a98fdf7201af931a6672b8dde2077e68620b8 new
DEBUG:bitcoind:2017-11-29 17:25:04 keypool keep 2719
DEBUG:lnd(16331):2017-11-29 18:25:04.303 [INF] CRTR: Pruning channel graph using block 7ba49028d3d1a7e9b4b42239a9afb9613a60bf863db65cf9b50587ad9e9f0c1b (height=2310)
DEBUG:lnd(16331):2017-11-29 18:25:04.305 [INF] NTFN: New block: height=2310, sha=7ba49028d3d1a7e9b4b42239a9afb9613a60bf863db65cf9b50587ad9e9f0c1b
DEBUG:lnd(16331):2017-11-29 18:25:04.312 [INF] CRTR: Block 7ba49028d3d1a7e9b4b42239a9afb9613a60bf863db65cf9b50587ad9e9f0c1b (height=2310) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 1b0c9f9ead8705b5f95cb63d86bf603a61b9afa93922b4b4e9a7d1d32890a47b
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:05 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:05 keypool reserve 2720
DEBUG:bitcoind:2017-11-29 17:25:05 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:05 UpdateTip: new best=4c0807631cfd264ca8892f6c0adb1043e46c716d6dfe57e6a99ddc24a19191d6 height=2311 version=0x20000000 log2_work=12.174926 tx=2522 date='2017-11-29 17:25:05' progress=1.000000 cache=0.5MiB(2512txo)
DEBUG:bitcoind:2017-11-29 17:25:05 AddToWallet 0549bcd6d95196443316912406872c6da6b4bae1f9954314181d07beecf1e617 new
DEBUG:bitcoind:2017-11-29 17:25:05 keypool keep 2720
DEBUG:lnd(16331):2017-11-29 18:25:05.370 [INF] CRTR: Pruning channel graph using block 4c0807631cfd264ca8892f6c0adb1043e46c716d6dfe57e6a99ddc24a19191d6 (height=2311)
DEBUG:lnd(16331):2017-11-29 18:25:05.371 [INF] NTFN: New block: height=2311, sha=4c0807631cfd264ca8892f6c0adb1043e46c716d6dfe57e6a99ddc24a19191d6
DEBUG:lnd(16331):2017-11-29 18:25:05.388 [INF] CRTR: Block 4c0807631cfd264ca8892f6c0adb1043e46c716d6dfe57e6a99ddc24a19191d6 (height=2311) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block d69191a124dc9da9e657fe6d6d716ce44310db0a6c2f89a84c26fd1c6307084c
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:06 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:06 keypool reserve 2721
DEBUG:bitcoind:2017-11-29 17:25:06 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:06 UpdateTip: new best=26c11c521d872a2aae7b9fb9e9bdd76b70819feed77e8b55b695d4ccd913c9e1 height=2312 version=0x20000000 log2_work=12.17555 tx=2523 date='2017-11-29 17:25:06' progress=1.000000 cache=0.5MiB(2513txo)
DEBUG:bitcoind:2017-11-29 17:25:06 AddToWallet 72623b43c7f84081f5a44035626227d98e1facfbde73591f2dd41b352a4de346 new
DEBUG:bitcoind:2017-11-29 17:25:06 keypool keep 2721
DEBUG:lnd(16331):2017-11-29 18:25:06.428 [INF] CRTR: Pruning channel graph using block 26c11c521d872a2aae7b9fb9e9bdd76b70819feed77e8b55b695d4ccd913c9e1 (height=2312)
DEBUG:lnd(16331):2017-11-29 18:25:06.429 [INF] NTFN: New block: height=2312, sha=26c11c521d872a2aae7b9fb9e9bdd76b70819feed77e8b55b695d4ccd913c9e1
DEBUG:lnd(16331):2017-11-29 18:25:06.445 [INF] CRTR: Block 26c11c521d872a2aae7b9fb9e9bdd76b70819feed77e8b55b695d4ccd913c9e1 (height=2312) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block e1c913d9ccd495b6558b7ed7ee9f81706bd7bde9b99f7bae2a2a871d521cc126
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:07 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:07 keypool reserve 2722
DEBUG:bitcoind:2017-11-29 17:25:07 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:07 UpdateTip: new best=3640c9d83e5dba618c539542b3f6651b6169fe81fe81e847447b80d3a4c1713f height=2313 version=0x20000000 log2_work=12.176173 tx=2524 date='2017-11-29 17:25:07' progress=1.000000 cache=0.5MiB(2514txo)
DEBUG:bitcoind:2017-11-29 17:25:07 AddToWallet 636781f2f1231e7b9fe1efe7a531806b31241652de7e3f47fe0977a2f66de875 new
DEBUG:bitcoind:2017-11-29 17:25:07 keypool keep 2722
DEBUG:lnd(16331):2017-11-29 18:25:07.483 [INF] CRTR: Pruning channel graph using block 3640c9d83e5dba618c539542b3f6651b6169fe81fe81e847447b80d3a4c1713f (height=2313)
DEBUG:lnd(16331):2017-11-29 18:25:07.484 [INF] NTFN: New block: height=2313, sha=3640c9d83e5dba618c539542b3f6651b6169fe81fe81e847447b80d3a4c1713f
DEBUG:lnd(16331):2017-11-29 18:25:07.491 [INF] CRTR: Block 3640c9d83e5dba618c539542b3f6651b6169fe81fe81e847447b80d3a4c1713f (height=2313) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 3f71c1a4d3807b4447e881fe81fe69611b65f6b34295538c61ba5d3ed8c94036
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:08 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:08 keypool reserve 2723
DEBUG:bitcoind:2017-11-29 17:25:08 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:08 UpdateTip: new best=26540d471fd56779b5cebc48df73f2dd769fdb7940012f1adf9d6d857caec495 height=2314 version=0x20000000 log2_work=12.176796 tx=2525 date='2017-11-29 17:25:08' progress=1.000000 cache=0.5MiB(2515txo)
DEBUG:bitcoind:2017-11-29 17:25:08 AddToWallet d7a8484695c72fa68e3ca768824bbc06fdd7d87cd95e501676711354dd8073a8 new
DEBUG:bitcoind:2017-11-29 17:25:08 keypool keep 2723
DEBUG:proc:2017-11-29 18:25:08.547 [INF] BMGR: Processed 10 blocks in the last 10.56s (10 transactions, height 2314, 2017-11-29 18:25:08 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:25:08.549 [INF] CRTR: Pruning channel graph using block 26540d471fd56779b5cebc48df73f2dd769fdb7940012f1adf9d6d857caec495 (height=2314)
DEBUG:lnd(16331):2017-11-29 18:25:08.550 [INF] NTFN: New block: height=2314, sha=26540d471fd56779b5cebc48df73f2dd769fdb7940012f1adf9d6d857caec495
DEBUG:lnd(16331):2017-11-29 18:25:08.566 [INF] CRTR: Block 26540d471fd56779b5cebc48df73f2dd769fdb7940012f1adf9d6d857caec495 (height=2314) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 95c4ae7c856d9ddf1a2f014079db9f76ddf273df48bcceb57967d51f470d5426
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:09 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:09 keypool reserve 2725
DEBUG:bitcoind:2017-11-29 17:25:09 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:09 UpdateTip: new best=3a62de57b55d5fb8aac9baa061b4759424b5e199f2bfa9def45c906b5ffa7714 height=2315 version=0x20000000 log2_work=12.17742 tx=2526 date='2017-11-29 17:25:09' progress=1.000000 cache=0.5MiB(2516txo)
DEBUG:bitcoind:2017-11-29 17:25:09 AddToWallet 5e1dbb624382a1abda0fac8300b63b364047fd814316e44a0e58387672748a0c new
DEBUG:bitcoind:2017-11-29 17:25:09 keypool keep 2725
DEBUG:lnd(16331):2017-11-29 18:25:09.604 [INF] CRTR: Pruning channel graph using block 3a62de57b55d5fb8aac9baa061b4759424b5e199f2bfa9def45c906b5ffa7714 (height=2315)
DEBUG:lnd(16331):2017-11-29 18:25:09.604 [INF] NTFN: New block: height=2315, sha=3a62de57b55d5fb8aac9baa061b4759424b5e199f2bfa9def45c906b5ffa7714
DEBUG:lnd(16331):2017-11-29 18:25:09.612 [INF] CRTR: Block 3a62de57b55d5fb8aac9baa061b4759424b5e199f2bfa9def45c906b5ffa7714 (height=2315) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 1477fa5f6b905cf4dea9bff299e1b5249475b461a0bac9aab85f5db557de623a
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:10 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:10 keypool reserve 2727
DEBUG:bitcoind:2017-11-29 17:25:10 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:10 UpdateTip: new best=2af2f4ce3134945fe50aeaf429fd7b77716a773149249ea6a9ec762b9328963e height=2316 version=0x20000000 log2_work=12.178042 tx=2527 date='2017-11-29 17:25:10' progress=1.000000 cache=0.5MiB(2517txo)
DEBUG:bitcoind:2017-11-29 17:25:10 AddToWallet fa33ed780465f7d81d4699abc1504a53e7878463a3e0c497a2a91a9480f8fec7 new
DEBUG:bitcoind:2017-11-29 17:25:10 keypool keep 2727
DEBUG:lnd(16331):2017-11-29 18:25:10.655 [INF] CRTR: Pruning channel graph using block 2af2f4ce3134945fe50aeaf429fd7b77716a773149249ea6a9ec762b9328963e (height=2316)
DEBUG:lnd(16331):2017-11-29 18:25:10.656 [INF] NTFN: New block: height=2316, sha=2af2f4ce3134945fe50aeaf429fd7b77716a773149249ea6a9ec762b9328963e
DEBUG:lnd(16331):2017-11-29 18:25:10.667 [INF] CRTR: Block 2af2f4ce3134945fe50aeaf429fd7b77716a773149249ea6a9ec762b9328963e (height=2316) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 3e9628932b76eca9a69e244931776a71777bfd29f4ea0ae55f943431cef4f22a
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:11 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:11 keypool reserve 2728
DEBUG:bitcoind:2017-11-29 17:25:11 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:11 UpdateTip: new best=3b6ad5ebe8f0504481d7b67d71c39114a5d9f4ee1d75e7cb787c15bda8f30227 height=2317 version=0x20000000 log2_work=12.178665 tx=2528 date='2017-11-29 17:25:11' progress=1.000000 cache=0.5MiB(2518txo)
DEBUG:bitcoind:2017-11-29 17:25:11 AddToWallet 6a2e58ff42f71fad7d31630a7e92a3441cd63e91d6aa7f76d2aed63df136bf5a new
DEBUG:bitcoind:2017-11-29 17:25:11 keypool keep 2728
DEBUG:lnd(16331):2017-11-29 18:25:11.718 [INF] CRTR: Pruning channel graph using block 3b6ad5ebe8f0504481d7b67d71c39114a5d9f4ee1d75e7cb787c15bda8f30227 (height=2317)
DEBUG:lnd(16331):2017-11-29 18:25:11.719 [INF] NTFN: New block: height=2317, sha=3b6ad5ebe8f0504481d7b67d71c39114a5d9f4ee1d75e7cb787c15bda8f30227
DEBUG:lnd(16331):2017-11-29 18:25:11.729 [INF] CRTR: Block 3b6ad5ebe8f0504481d7b67d71c39114a5d9f4ee1d75e7cb787c15bda8f30227 (height=2317) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 2702f3a8bd157c78cbe7751deef4d9a51491c3717db6d7814450f0e8ebd56a3b
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:12 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:12 keypool reserve 2729
DEBUG:bitcoind:2017-11-29 17:25:12 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:12 UpdateTip: new best=7e3ccd5092f6aad06e3c95b85b0fda0dd3c1a556f8d942377b8c8b8a4ecbf6b3 height=2318 version=0x20000000 log2_work=12.179287 tx=2529 date='2017-11-29 17:25:12' progress=1.000000 cache=0.5MiB(2519txo)
DEBUG:bitcoind:2017-11-29 17:25:12 AddToWallet 3f5ce8124c17d3aa2293da3087ab0622edd0d2d8d8b95354f251b52e7351e3ea new
DEBUG:bitcoind:2017-11-29 17:25:12 keypool keep 2729
DEBUG:lnd(16331):2017-11-29 18:25:12.774 [INF] CRTR: Pruning channel graph using block 7e3ccd5092f6aad06e3c95b85b0fda0dd3c1a556f8d942377b8c8b8a4ecbf6b3 (height=2318)
DEBUG:lnd(16331):2017-11-29 18:25:12.775 [INF] NTFN: New block: height=2318, sha=7e3ccd5092f6aad06e3c95b85b0fda0dd3c1a556f8d942377b8c8b8a4ecbf6b3
DEBUG:lnd(16331):2017-11-29 18:25:12.791 [INF] CRTR: Block 7e3ccd5092f6aad06e3c95b85b0fda0dd3c1a556f8d942377b8c8b8a4ecbf6b3 (height=2318) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block b3f6cb4e8a8b8c7b3742d9f856a5c1d30dda0f5bb8953c6ed0aaf69250cd3c7e
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:13 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:13 keypool reserve 2730
DEBUG:bitcoind:2017-11-29 17:25:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:13 UpdateTip: new best=0360d50f130a19cd585bd2e0c70589915342e652feac62cf4205945f95f16b9d height=2319 version=0x20000000 log2_work=12.179909 tx=2530 date='2017-11-29 17:25:13' progress=1.000000 cache=0.5MiB(2520txo)
DEBUG:bitcoind:2017-11-29 17:25:13 AddToWallet 893ab5dceec0576529249006d2df243c52f867d12245086f03bfd35f32a71117 new
DEBUG:bitcoind:2017-11-29 17:25:13 keypool keep 2730
DEBUG:lnd(16331):2017-11-29 18:25:13.821 [INF] CRTR: Pruning channel graph using block 0360d50f130a19cd585bd2e0c70589915342e652feac62cf4205945f95f16b9d (height=2319)
DEBUG:lnd(16331):2017-11-29 18:25:13.824 [INF] NTFN: New block: height=2319, sha=0360d50f130a19cd585bd2e0c70589915342e652feac62cf4205945f95f16b9d
DEBUG:lnd(16331):2017-11-29 18:25:13.827 [INF] CRTR: Block 0360d50f130a19cd585bd2e0c70589915342e652feac62cf4205945f95f16b9d (height=2319) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 9d6bf1955f940542cf62acfe52e64253918905c7e0d25b58cd190a130fd56003
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:14 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:14 keypool reserve 2731
DEBUG:bitcoind:2017-11-29 17:25:14 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:14 UpdateTip: new best=25cab91908f98f766d74b8a4850064fcc33cd07cf19dd4e8eb735b401539901a height=2320 version=0x20000000 log2_work=12.180531 tx=2531 date='2017-11-29 17:25:14' progress=1.000000 cache=0.5MiB(2521txo)
DEBUG:bitcoind:2017-11-29 17:25:14 AddToWallet daf7ec3dc0bb03a302637eaf7e1f7ddadb5030c63ad0cc50b5fb904c014cba7a new
DEBUG:bitcoind:2017-11-29 17:25:14 keypool keep 2731
DEBUG:lnd(16331):2017-11-29 18:25:14.890 [INF] CRTR: Pruning channel graph using block 25cab91908f98f766d74b8a4850064fcc33cd07cf19dd4e8eb735b401539901a (height=2320)
DEBUG:lnd(16331):2017-11-29 18:25:14.890 [INF] NTFN: New block: height=2320, sha=25cab91908f98f766d74b8a4850064fcc33cd07cf19dd4e8eb735b401539901a
DEBUG:lnd(16331):2017-11-29 18:25:14.899 [INF] CRTR: Block 25cab91908f98f766d74b8a4850064fcc33cd07cf19dd4e8eb735b401539901a (height=2320) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 1a903915405b73ebe8d49df17cd03cc3fc640085a4b8746d768ff90819b9ca25
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:15 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:15 keypool reserve 2732
DEBUG:bitcoind:2017-11-29 17:25:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:15 UpdateTip: new best=28c331f68c3d4e820a80ea5b51e374d89a8c78445dd1d2ceb378bf7cff30faf1 height=2321 version=0x20000000 log2_work=12.181152 tx=2532 date='2017-11-29 17:25:15' progress=1.000000 cache=0.5MiB(2522txo)
DEBUG:bitcoind:2017-11-29 17:25:15 AddToWallet ca37252486bbbaab7835fdb6de124c3c3d3ad0e65338eec4abff9e76a6f17de7 new
DEBUG:bitcoind:2017-11-29 17:25:15 keypool keep 2732
DEBUG:lnd(16331):2017-11-29 18:25:15.839 [INF] CRTR: Pruning channel graph using block 28c331f68c3d4e820a80ea5b51e374d89a8c78445dd1d2ceb378bf7cff30faf1 (height=2321)
DEBUG:lnd(16331):2017-11-29 18:25:15.839 [INF] NTFN: New block: height=2321, sha=28c331f68c3d4e820a80ea5b51e374d89a8c78445dd1d2ceb378bf7cff30faf1
DEBUG:lnd(16331):2017-11-29 18:25:15.852 [INF] CRTR: Block 28c331f68c3d4e820a80ea5b51e374d89a8c78445dd1d2ceb378bf7cff30faf1 (height=2321) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block f1fa30ff7cbf78b3ced2d15d44788c9ad874e3515bea800a824e3d8cf631c328
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:16 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:16 keypool reserve 2733
DEBUG:bitcoind:2017-11-29 17:25:16 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:16 UpdateTip: new best=352b1c83c2df070046368f409f3825e1719c3a685ed45667d4d3545cb2cf7d49 height=2322 version=0x20000000 log2_work=12.181773 tx=2533 date='2017-11-29 17:25:16' progress=1.000000 cache=0.5MiB(2523txo)
DEBUG:bitcoind:2017-11-29 17:25:16 AddToWallet 06a16da9665220c491d47f153f8b8f513ede46d07e546bf9b619be351fb52abd new
DEBUG:bitcoind:2017-11-29 17:25:16 keypool keep 2733
DEBUG:lnd(16331):2017-11-29 18:25:16.997 [INF] CRTR: Pruning channel graph using block 352b1c83c2df070046368f409f3825e1719c3a685ed45667d4d3545cb2cf7d49 (height=2322)
DEBUG:lnd(16331):2017-11-29 18:25:16.997 [INF] NTFN: New block: height=2322, sha=352b1c83c2df070046368f409f3825e1719c3a685ed45667d4d3545cb2cf7d49
DEBUG:lnd(16331):2017-11-29 18:25:17.009 [INF] CRTR: Block 352b1c83c2df070046368f409f3825e1719c3a685ed45667d4d3545cb2cf7d49 (height=2322) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 497dcfb25c54d3d46756d45e683a9c71e125389f408f36460007dfc2831c2b35
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:17 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:17 keypool reserve 2734
DEBUG:bitcoind:2017-11-29 17:25:17 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:17 UpdateTip: new best=2bd643d473bef9b0611e617751766890af50dfe6369ee21fb5c7d9c1981633e4 height=2323 version=0x20000000 log2_work=12.182394 tx=2534 date='2017-11-29 17:25:17' progress=1.000000 cache=0.5MiB(2524txo)
DEBUG:bitcoind:2017-11-29 17:25:17 AddToWallet dab931a3e34f35fb8019b9ea4b7a0fd8af8e2c8149e06639bb7065b0bae57074 new
DEBUG:lnd(16331):2017-11-29 18:25:17.935 [INF] CRTR: Pruning channel graph using block 2bd643d473bef9b0611e617751766890af50dfe6369ee21fb5c7d9c1981633e4 (height=2323)
DEBUG:lnd(16331):2017-11-29 18:25:17.936 [INF] NTFN: New block: height=2323, sha=2bd643d473bef9b0611e617751766890af50dfe6369ee21fb5c7d9c1981633e4
DEBUG:bitcoind:2017-11-29 17:25:17 keypool keep 2734
DEBUG:lnd(16331):2017-11-29 18:25:17.944 [INF] CRTR: Block 2bd643d473bef9b0611e617751766890af50dfe6369ee21fb5c7d9c1981633e4 (height=2323) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block e4331698c1d9c7b51fe29e36e6df50af9068765177611e61b0f9be73d443d62b
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:18 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:18 keypool reserve 2735
DEBUG:bitcoind:2017-11-29 17:25:18 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:18 UpdateTip: new best=6e7d223e789287d1165b6fb4aa11b3a2b91f4a11deb634a8f13391812f1a53fd height=2324 version=0x20000000 log2_work=12.183015 tx=2535 date='2017-11-29 17:25:18' progress=1.000000 cache=0.5MiB(2525txo)
DEBUG:bitcoind:2017-11-29 17:25:18 AddToWallet 41dfca99646edca48424b8cb4d5723350218ff58f1033274e61662dd3f7d098d new
DEBUG:bitcoind:2017-11-29 17:25:18 keypool keep 2735
DEBUG:proc:2017-11-29 18:25:19.094 [INF] BMGR: Processed 10 blocks in the last 10.54s (10 transactions, height 2324, 2017-11-29 18:25:18 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:25:19.095 [INF] CRTR: Pruning channel graph using block 6e7d223e789287d1165b6fb4aa11b3a2b91f4a11deb634a8f13391812f1a53fd (height=2324)
DEBUG:lnd(16331):2017-11-29 18:25:19.097 [INF] NTFN: New block: height=2324, sha=6e7d223e789287d1165b6fb4aa11b3a2b91f4a11deb634a8f13391812f1a53fd
DEBUG:lnd(16331):2017-11-29 18:25:19.107 [INF] CRTR: Block 6e7d223e789287d1165b6fb4aa11b3a2b91f4a11deb634a8f13391812f1a53fd (height=2324) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block fd531a2f819133f1a834b6de114a1fb9a2b311aab46f5b16d18792783e227d6e
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:20 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:20 keypool reserve 2736
DEBUG:bitcoind:2017-11-29 17:25:20 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:20 UpdateTip: new best=215c794097a2ba9a81e4a3aa212ae5f7f693ea803fb5c1b3afe87a38336463af height=2325 version=0x20000000 log2_work=12.183635 tx=2536 date='2017-11-29 17:25:20' progress=1.000000 cache=0.5MiB(2526txo)
DEBUG:bitcoind:2017-11-29 17:25:20 AddToWallet 5455c30b50a4a5b4c939b02e87ddd5438c3725ffc5486001636d67f329b3e889 new
DEBUG:bitcoind:2017-11-29 17:25:20 keypool keep 2736
DEBUG:lnd(16331):2017-11-29 18:25:20.144 [INF] CRTR: Pruning channel graph using block 215c794097a2ba9a81e4a3aa212ae5f7f693ea803fb5c1b3afe87a38336463af (height=2325)
DEBUG:lnd(16331):2017-11-29 18:25:20.145 [INF] NTFN: New block: height=2325, sha=215c794097a2ba9a81e4a3aa212ae5f7f693ea803fb5c1b3afe87a38336463af
DEBUG:lnd(16331):2017-11-29 18:25:20.161 [INF] CRTR: Block 215c794097a2ba9a81e4a3aa212ae5f7f693ea803fb5c1b3afe87a38336463af (height=2325) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block af636433387ae8afb3c1b53f80ea93f6f7e52a21aaa3e4819abaa29740795c21
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:21 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:21 keypool reserve 2737
DEBUG:bitcoind:2017-11-29 17:25:21 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:21 UpdateTip: new best=49005001130fc2e5fe386135a5e4f6f6bae63222cfa8d6aa1f513910b07fbcad height=2326 version=0x20000000 log2_work=12.184255 tx=2537 date='2017-11-29 17:25:21' progress=1.000000 cache=0.5MiB(2527txo)
DEBUG:bitcoind:2017-11-29 17:25:21 AddToWallet 4e284ae0ef00e49b0f285c983929ffd2ca170ff95e07ab04307c1b60e6063931 new
DEBUG:bitcoind:2017-11-29 17:25:21 keypool keep 2737
DEBUG:lnd(16331):2017-11-29 18:25:21.192 [INF] CRTR: Pruning channel graph using block 49005001130fc2e5fe386135a5e4f6f6bae63222cfa8d6aa1f513910b07fbcad (height=2326)
DEBUG:lnd(16331):2017-11-29 18:25:21.193 [INF] NTFN: New block: height=2326, sha=49005001130fc2e5fe386135a5e4f6f6bae63222cfa8d6aa1f513910b07fbcad
DEBUG:lnd(16331):2017-11-29 18:25:21.201 [INF] CRTR: Block 49005001130fc2e5fe386135a5e4f6f6bae63222cfa8d6aa1f513910b07fbcad (height=2326) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block adbc7fb01039511faad6a8cf2232e6baf6f6e4a5356138fee5c20f1301500049
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:22 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:22 keypool reserve 2738
DEBUG:bitcoind:2017-11-29 17:25:22 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:22 UpdateTip: new best=2ae2010b2fc1e1b19e3abaec8f42a46eaf4f5e490b2b158d3daf2fdcb5765514 height=2327 version=0x20000000 log2_work=12.184875 tx=2538 date='2017-11-29 17:25:22' progress=1.000000 cache=0.5MiB(2528txo)
DEBUG:bitcoind:2017-11-29 17:25:22 AddToWallet 4ebf42b69f8a5689692a6cc6ec5ae888da60ebc9376c5e205df9535eb734b4a6 new
DEBUG:bitcoind:2017-11-29 17:25:22 keypool keep 2738
DEBUG:lnd(16331):2017-11-29 18:25:22.253 [INF] CRTR: Pruning channel graph using block 2ae2010b2fc1e1b19e3abaec8f42a46eaf4f5e490b2b158d3daf2fdcb5765514 (height=2327)
DEBUG:lnd(16331):2017-11-29 18:25:22.254 [INF] NTFN: New block: height=2327, sha=2ae2010b2fc1e1b19e3abaec8f42a46eaf4f5e490b2b158d3daf2fdcb5765514
DEBUG:lnd(16331):2017-11-29 18:25:22.270 [INF] CRTR: Block 2ae2010b2fc1e1b19e3abaec8f42a46eaf4f5e490b2b158d3daf2fdcb5765514 (height=2327) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 145576b5dc2faf3d8d152b0b495e4faf6ea4428fecba3a9eb1e1c12f0b01e22a
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:23 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:23 keypool reserve 2741
DEBUG:bitcoind:2017-11-29 17:25:23 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:23 UpdateTip: new best=2148adf05d7b1a6e78b97fb965775d2a673413810ee2847c940c47e9ef386036 height=2328 version=0x20000000 log2_work=12.185495 tx=2539 date='2017-11-29 17:25:23' progress=1.000000 cache=0.5MiB(2529txo)
DEBUG:bitcoind:2017-11-29 17:25:23 AddToWallet 515a588d333086752c071cb940b536f2dfd72ecc755268e67391baffe94e8077 new
DEBUG:bitcoind:2017-11-29 17:25:23 keypool keep 2741
DEBUG:lnd(16331):2017-11-29 18:25:23.313 [INF] CRTR: Pruning channel graph using block 2148adf05d7b1a6e78b97fb965775d2a673413810ee2847c940c47e9ef386036 (height=2328)
DEBUG:lnd(16331):2017-11-29 18:25:23.313 [INF] NTFN: New block: height=2328, sha=2148adf05d7b1a6e78b97fb965775d2a673413810ee2847c940c47e9ef386036
DEBUG:lnd(16331):2017-11-29 18:25:23.327 [INF] CRTR: Block 2148adf05d7b1a6e78b97fb965775d2a673413810ee2847c940c47e9ef386036 (height=2328) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 366038efe9470c947c84e20e811334672a5d7765b97fb9786e1a7b5df0ad4821
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:24 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:24 keypool reserve 2742
DEBUG:bitcoind:2017-11-29 17:25:24 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:24 UpdateTip: new best=5bc0f394d99ac6aa831e3a5cafbfe2d09d61ba583a3c725b8c9653aaeaf05691 height=2329 version=0x20000000 log2_work=12.186114 tx=2540 date='2017-11-29 17:25:24' progress=1.000000 cache=0.5MiB(2530txo)
DEBUG:bitcoind:2017-11-29 17:25:24 AddToWallet 0ab25422dd92c54fbd2e82d3e1f998ec44609300cb8cb832dfdc5f9f2d691063 new
DEBUG:bitcoind:2017-11-29 17:25:24 keypool keep 2742
DEBUG:lnd(16331):2017-11-29 18:25:24.377 [INF] CRTR: Pruning channel graph using block 5bc0f394d99ac6aa831e3a5cafbfe2d09d61ba583a3c725b8c9653aaeaf05691 (height=2329)
DEBUG:lnd(16331):2017-11-29 18:25:24.378 [INF] NTFN: New block: height=2329, sha=5bc0f394d99ac6aa831e3a5cafbfe2d09d61ba583a3c725b8c9653aaeaf05691
DEBUG:lnd(16331):2017-11-29 18:25:24.389 [INF] CRTR: Block 5bc0f394d99ac6aa831e3a5cafbfe2d09d61ba583a3c725b8c9653aaeaf05691 (height=2329) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block 9156f0eaaa53968c5b723c3a58ba619dd0e2bfaf5c3a1e83aac69ad994f3c05b
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:25 keypool reserve 2743
DEBUG:bitcoind:2017-11-29 17:25:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:25 UpdateTip: new best=4e595306d6bacdcd2e50e1dbafab9a58e6c821f0db1fb47f8058eb0b297e8dc7 height=2330 version=0x20000000 log2_work=12.186733 tx=2541 date='2017-11-29 17:25:25' progress=1.000000 cache=0.5MiB(2531txo)
DEBUG:bitcoind:2017-11-29 17:25:25 AddToWallet 68a728b681bb34e5f64fc329f80a2f21c0b275e76fa968468916ab525bddcefb new
DEBUG:bitcoind:2017-11-29 17:25:25 keypool keep 2743
DEBUG:lnd(16331):2017-11-29 18:25:25.436 [INF] CRTR: Pruning channel graph using block 4e595306d6bacdcd2e50e1dbafab9a58e6c821f0db1fb47f8058eb0b297e8dc7 (height=2330)
DEBUG:lnd(16331):2017-11-29 18:25:25.437 [INF] NTFN: New block: height=2330, sha=4e595306d6bacdcd2e50e1dbafab9a58e6c821f0db1fb47f8058eb0b297e8dc7
DEBUG:lnd(16331):2017-11-29 18:25:25.444 [INF] CRTR: Block 4e595306d6bacdcd2e50e1dbafab9a58e6c821f0db1fb47f8058eb0b297e8dc7 (height=2330) closed 0 channels
DEBUG:proc:lightningd(16959): Adding block c78d7e290beb58807fb41fdbf021c8e6589aabafdbe1502ecdcdbad60653594e
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:26 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:26 keypool reserve 2744
DEBUG:bitcoind:2017-11-29 17:25:26 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:26 UpdateTip: new best=372b22b398ac5ca07bf9ef95144b716bbfa8080c70c8fbab335c1bf2852e3b36 height=2331 version=0x20000000 log2_work=12.187352 tx=2542 date='2017-11-29 17:25:26' progress=1.000000 cache=0.5MiB(2532txo)
DEBUG:bitcoind:2017-11-29 17:25:26 AddToWallet 300d6d2f5a7f915814dfc81320e1021348df0d504adb42f2eac3fd2b7402c23e new
DEBUG:bitcoind:2017-11-29 17:25:26 keypool keep 2744
DEBUG:lnd(16331):2017-11-29 18:25:26.492 [INF] CRTR: Pruning channel graph using block 372b22b398ac5ca07bf9ef95144b716bbfa8080c70c8fbab335c1bf2852e3b36 (height=2331)
DEBUG:lnd(16331):2017-11-29 18:25:26.497 [INF] NTFN: New block: height=2331, sha=372b22b398ac5ca07bf9ef95144b716bbfa8080c70c8fbab335c1bf2852e3b36
DEBUG:proc:lightningd(16959): Adding block 363b2e85f21b5c33abfbc8700c08a8bf6b714b1495eff97ba05cac98b3222b37
DEBUG:lnd(16331):2017-11-29 18:25:26.504 [INF] CRTR: Block 372b22b398ac5ca07bf9ef95144b716bbfa8080c70c8fbab335c1bf2852e3b36 (height=2331) closed 0 channels
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:27 keypool reserve 2745
DEBUG:bitcoind:2017-11-29 17:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:27 UpdateTip: new best=42cf1ee205bd7295e1e3a80765e7a55bf529b983fa1723fd9b7d92c7de195777 height=2332 version=0x20000000 log2_work=12.187971 tx=2543 date='2017-11-29 17:25:27' progress=1.000000 cache=0.5MiB(2533txo)
DEBUG:bitcoind:2017-11-29 17:25:27 AddToWallet 1bfad3e20cb3da6a72f9fb9c6a8242d2e8866af26a98a3e06b5b9bd4e0d71068 new
DEBUG:bitcoind:2017-11-29 17:25:27 keypool keep 2745
DEBUG:proc:lightningd(16959): Adding block 775719dec7927d9bfd2317fa83b929f55ba5e76507a8e3e19572bd05e21ecf42
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:lnd(16331):2017-11-29 18:25:27.551 [INF] CRTR: Pruning channel graph using block 42cf1ee205bd7295e1e3a80765e7a55bf529b983fa1723fd9b7d92c7de195777 (height=2332)
DEBUG:lnd(16331):2017-11-29 18:25:27.552 [INF] NTFN: New block: height=2332, sha=42cf1ee205bd7295e1e3a80765e7a55bf529b983fa1723fd9b7d92c7de195777
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:25:27.563 [INF] CRTR: Block 42cf1ee205bd7295e1e3a80765e7a55bf529b983fa1723fd9b7d92c7de195777 (height=2332) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:25:28 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:25:28 keypool reserve 2746
DEBUG:bitcoind:2017-11-29 17:25:28 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:25:28 UpdateTip: new best=2e04c09f292d4d2c1c69ac77669f435a125ed8c672f8dd1b3ddcd29f91af0569 height=2333 version=0x20000000 log2_work=12.188589 tx=2544 date='2017-11-29 17:25:28' progress=1.000000 cache=0.5MiB(2534txo)
DEBUG:bitcoind:2017-11-29 17:25:28 AddToWallet 74d4a6d27eb1769c7de7f5b89ff1730a46c6c1a1f2656714981a3ebf5f42d712 new
DEBUG:bitcoind:2017-11-29 17:25:28 keypool keep 2746
DEBUG:proc:lightningd(16959): Adding block 6905af919fd2dc3d1bddf872c6d85e125a439f6677ac691c2c4d2d299fc0042e
DEBUG:proc:lightningd(16959): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(16959): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(16959): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(16959): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:25:28.597 [INF] CRTR: Pruning channel graph using block 2e04c09f292d4d2c1c69ac77669f435a125ed8c672f8dd1b3ddcd29f91af0569 (height=2333)
DEBUG:lnd(16331):2017-11-29 18:25:28.597 [INF] NTFN: New block: height=2333, sha=2e04c09f292d4d2c1c69ac77669f435a125ed8c672f8dd1b3ddcd29f91af0569
DEBUG:lnd(16331):2017-11-29 18:25:28.615 [INF] CRTR: Block 2e04c09f292d4d2c1c69ac77669f435a125ed8c672f8dd1b3ddcd29f91af0569 (height=2333) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:25:29.518 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:30.523 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:31.527 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:32.531 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:33.537 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:34.541 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:35.545 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:36.550 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:37.555 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:38.559 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:39.564 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:40.569 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:41.575 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:42.580 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:43.584 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:44.589 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:45.594 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:46.599 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:47.603 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:48.607 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:49.612 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:50.616 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:51.621 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:52.626 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:53.630 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:54.635 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:54.667 [DBG] PEER: Sending Ping to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:25:54.667 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Ping)(0xc4208c8fe0)({
DEBUG:lnd(16331): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331): PaddingBytes: (lnwire.PingPayload) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:25:54.668 [DBG] PEER: Received Pong from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:25:54.668 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Pong)(0xc42092c980)({
DEBUG:lnd(16331): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16331): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:25:55.639 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:56.645 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:57.649 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:58.653 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
DEBUG:lnd(16331):2017-11-29 18:25:59.658 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02e241fe77e4d38cfb7b3c5faf73f8b8fac7bfb9f095d3890e9fe7a729966263b9 -> 033b1cb55625497640ceed1815eda839d332d5eb3e6171fa7f412ca2af11565d0b not found
--------------------------- Captured stdout teardown ---------------------------
DEBUG:proc:2017-11-29 18:25:59.714 [ERR] RPCS: Websocket receive error from 127.0.0.1:52140: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:25:59.714 [ERR] RPCS: Websocket receive error from 127.0.0.1:52134: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:25:59.714 [ERR] RPCS: Websocket receive error from 127.0.0.1:52142: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:25:59.714 [ERR] RPCS: Websocket receive error from 127.0.0.1:52132: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:25:59.714 [INF] RPCS: Disconnected websocket client 127.0.0.1:52142
DEBUG:proc:2017-11-29 18:25:59.714 [INF] RPCS: Disconnected websocket client 127.0.0.1:52132
DEBUG:proc:2017-11-29 18:25:59.714 [INF] RPCS: Disconnected websocket client 127.0.0.1:52140
DEBUG:proc:2017-11-29 18:25:59.714 [INF] RPCS: Disconnected websocket client 127.0.0.1:52134
INFO:root:LightningD stopped
=================== 24 failed, 51 passed in 5078.00 seconds ====================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment