Skip to content

Instantly share code, notes, and snippets.

Created November 29, 2017 21:46
Show Gist options
  • Save anonymous/7d3119da4ef17707a4278d5a537f07fd to your computer and use it in GitHub Desktop.
Save anonymous/7d3119da4ef17707a4278d5a537f07fd to your computer and use it in GitHub Desktop.
______________________ test_direct_payment[lnd_lightning] ______________________
bitcoind = <utils.BitcoinD object at 0x7fb768e47198>
node_factory = <test.NodeFactory object at 0x7fb75ca80fd0>
impls = (<class 'lnd.LndNode'>, <class 'lightningd.LightningNode'>)
 @pytest.mark.parametrize("impls", product(impls, repeat=2), ids=idfn)
 def test_direct_payment(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)
 
> generate_until(bitcoind, lambda: gossip_is_synced([node1, node2], 2), blocks=60, interval=1)
test.py:267:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
btc = <utils.BitcoinD object at 0x7fb768e47198>
success = <function test_direct_payment.<locals>.<lambda> at 0x7fb75ca838c8>
blocks = 60, interval = 1
 def generate_until(btc, success, blocks=30, interval=1):
 """Generate new blocks until `success` returns true.
 
 Mainly used to wait for transactions to confirm since they might
 be delayed and we don't want to add a long waiting time to all
 tests just because some are slow.
 """
 for i in range(blocks):
 time.sleep(interval)
 if success():
 return
 btc.rpc.generate(1)
 time.sleep(interval)
 if not success():
> raise ValueError("Generated %d blocks, but still no success", blocks)
E ValueError: ('Generated %d blocks, but still no success', 60)
test.py:136: ValueError
----------------------------- Captured stdout call -----------------------------
DEBUG:root:Starting 'bin/lnd --peerport=16331 --rpcport=26331 --bitcoin.active --datadir=/tmp/lightning-il5fkavy/test_direct_payment[lnd_lightning]/node-1/ --debuglevel=trace --bitcoin.rpcuser=rpcuser --bitcoin.rpcpass=rpcpass --configfile=/tmp/lightning-il5fkavy/test_direct_payment[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 17:24:55.174 [INF] LTND: Version 0.3.0-alpha
DEBUG:lnd(16331):2017-11-29 17:24:55.209 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
DEBUG:lnd(16331):2017-11-29 17:24:55.248 [INF] LTND: Primary chain is set to: bitcoin
DEBUG:lnd(16331):2017-11-29 17:24:55.248 [INF] LTND: Initializing btcd backed fee estimator
DEBUG:proc:2017-11-29 17:24:55.287 [INF] RPCS: New websocket client 127.0.0.1:52258
DEBUG:lnd(16331):2017-11-29 17:24:58.014 [INF] LNWL: Opened wallet
DEBUG:proc:2017-11-29 17:24:58.064 [INF] RPCS: New websocket client 127.0.0.1:52264
DEBUG:lnd(16331):2017-11-29 17:24:58.979 [INF] LNWL: The wallet has been unlocked without a time limit
DEBUG:lnd(16331):2017-11-29 17:24:58.979 [INF] LNWL: Catching up block hashes to height 858, this will take a while...
DEBUG:lnd(16331):2017-11-29 17:24:58.995 [INF] LTND: LightningWallet opened
DEBUG:lnd(16331):2017-11-29 17:24:59.013 [TRC] FNDG: Funding manager running
DEBUG:lnd(16331):2017-11-29 17:24:59.013 [INF] RPCS: RPC server listening on 127.0.0.1:26331
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 17:24:59.013 [INF] RPCS: gRPC proxy started at localhost:8080
DEBUG:lnd(16331):2017-11-29 17:24:59.013 [INF] LTND: Waiting for chain backend to finish sync, start_height=858
DEBUG:lnd(16331):2017-11-29 17:24:59.119 [INF] LNWL: Done catching up block hashes
DEBUG:root:Found 'Done catching up block hashes' in logs
DEBUG:lnd(16331):2017-11-29 17:24:59.127 [INF] LNWL: Started rescan from block 526563b93bcb4ef4077a00bacb492e85589763ce6314a9924fd5d6ff5cca50cd (height 858) for 1 address
DEBUG:proc:2017-11-29 17:24:59.128 [INF] RPCS: Beginning rescan for 1 address
DEBUG:proc:2017-11-29 17:24:59.129 [INF] RPCS: Finished rescan
DEBUG:lnd(16331):2017-11-29 17:24:59.129 [INF] LNWL: Catching up block hashes to height 858, this might take a while
DEBUG:lnd(16331):2017-11-29 17:24:59.136 [INF] LNWL: Done catching up block hashes
DEBUG:lnd(16331):2017-11-29 17:24:59.137 [INF] LNWL: Finished rescan for 1 address (synced to block 526563b93bcb4ef4077a00bacb492e85589763ce6314a9924fd5d6ff5cca50cd, height 858)
DEBUG:lnd(16331):2017-11-29 17:25:00.016 [INF] LTND: Chain backend is fully synced (end_height=858)!
DEBUG:proc:2017-11-29 17:25:00.102 [INF] RPCS: New websocket client 127.0.0.1:52268
DEBUG:lnd(16331):2017-11-29 17:25:00.102 [INF] HSWC: Starting HTLC Switch
DEBUG:lnd(16331):2017-11-29 17:25:00.103 [TRC] UTXN: Starting UTXO nursery
DEBUG:lnd(16331):2017-11-29 17:25:00.103 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 17:25:00.103 [TRC] BRAR: Starting breach arbiter
DEBUG:lnd(16331):2017-11-29 17:25:00.103 [INF] DISC: Authenticated Gossiper is starting
DEBUG:lnd(16331):2017-11-29 17:25:00.103 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 17:25:00.103 [TRC] CRTR: Channel Router starting
DEBUG:lnd(16331):2017-11-29 17:25:00.104 [INF] CRTR: FilteredChainView starting
DEBUG:lnd(16331):2017-11-29 17:25:00.104 [ERR] DISC: unable to rebroadcast stale channels: error while retrieving outgoing channels: no graph edges exist
DEBUG:proc:2017-11-29 17:25:00.185 [INF] RPCS: New websocket client 127.0.0.1:52270
DEBUG:lnd(16331):2017-11-29 17:25:00.204 [INF] CRTR: Filtering chain using 0 channels active
DEBUG:lnd(16331):2017-11-29 17:25:00.205 [INF] CRTR: Prune tip for Channel Graph: height=858, hash=526563b93bcb4ef4077a00bacb492e85589763ce6314a9924fd5d6ff5cca50cd
DEBUG:lnd(16331):2017-11-29 17:25:00.205 [INF] SRVR: Auto peer bootstrapping is disabled
DEBUG:lnd(16331):2017-11-29 17:25:00.205 [TRC] CMGR: Connection manager started
DEBUG:lnd(16331):2017-11-29 17:25:00.205 [INF] CMGR: Server listening on [::]:16331
INFO:root:LND started (pid: 1184)
DEBUG:root:Starting 'bin/lightningd --bitcoin-datadir=/tmp/lightning-il5fkavy/bitcoind --lightning-dir=/tmp/lightning-il5fkavy/test_direct_payment[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(1473): Trying to guess public addresses...
DEBUG:proc:lightningd(1473): Address 192.168.0.3:16332 is not routable
DEBUG:proc:lightningd(1473): Failed to connect 10 socket: Network is unreachable
DEBUG:proc:lightningd(1473): testing /home/cdecker/dev/lightning-integration/bin/lightningd
DEBUG:proc:lightningd(1473): testing /home/cdecker/dev/lightning-integration/bin/lightning_channeld
DEBUG:proc:lightningd(1473): testing /home/cdecker/dev/lightning-integration/bin/lightning_closingd
DEBUG:proc:lightningd(1473): testing /home/cdecker/dev/lightning-integration/bin/lightning_gossipd
DEBUG:proc:lightningd(1473): testing /home/cdecker/dev/lightning-integration/bin/lightning_hsmd
DEBUG:proc:lightningd(1473): testing /home/cdecker/dev/lightning-integration/bin/lightning_onchaind
DEBUG:proc:lightningd(1473): testing /home/cdecker/dev/lightning-integration/bin/lightning_openingd
DEBUG:proc:lightningd(1473): HSM TRACE: Control: type WIRE_HSMCTL_INIT len 3
DEBUG:proc:lightningd(1473): Adding block 1ecf169a2f4389796f032a6619eb942ee93b3400cc89d2b7ec4690f8cddec36e
DEBUG:proc:lightningd(1473): Adding block cd50ca5cffd6d54f92a91463ce639758852e49cbba007a07f44ecb3bb9636552
DEBUG:proc:lightningd(1473): Adding block d9dfa28832ce00bb9ce9da7654b0513764f7d5b0b7de59f21b2505ee13ffcb69
DEBUG:proc:lightningd(1473): Adding block 34d77b9f66aca6e090ee1b2e792b86f0923333c55409b751a5e8dc1d41ef8008
DEBUG:proc:lightningd(1473): Adding block a3b7f0cbe4e80f9b2c2db8da04a6e49a3e30fa3c64d5810aeb1150e97862c31c
DEBUG:proc:lightningd(1473): Adding block 86b98cbde16ce9b59e5a2c6e1ced7938d8f671c74d0c07ac257874678722ae6f
DEBUG:proc:lightningd(1473): Adding block 6e3ca66296a64c77164072d3000c9162d63dbac2dc7dca86ae18b92b88059e74
DEBUG:proc:lightningd(1473): Adding block 7c1055b92688c235221885248388037e864a4d30e3513ad912cf0dcfa5ec063e
DEBUG:proc:lightningd(1473): Adding block 556e24878afb58d3bcd4573f470d825e5ab24236c1953778aa6236d94f59225a
DEBUG:proc:lightningd(1473): Adding block 86098a3f73b406cc53bf9b284ea3a6f1703e0eebb333320af7afdc80aa29097e
DEBUG:proc:lightningd(1473): Adding block 74f16388d8a97c516b545c6a75fd9214ddb69645f9bd43e4820b8829791f0159
DEBUG:proc:lightningd(1473): Adding block 21ad5637c7ebcfff1015e4c19c53b27ab0f817e5b61d161c46aac6e9a2187e3a
DEBUG:proc:lightningd(1473): Adding block 987930e58a63a841337fe68848f2e466500efd4c2cb86b27c7313d773076c169
DEBUG:proc:lightningd(1473): Adding block 5133bc617c39d24f755e7b13f1fd328aa227fa0727980c5cabd6e87dd1fe5148
DEBUG:proc:lightningd(1473): Adding block 4e4fde25dd89f8b86c4add6878168af9e1eded6f05169cd841ed0fe6ce24c93a
DEBUG:proc:lightningd(1473): Adding block db859e7ca92a11f142c68f3a19d0cd2bd44365e096e9fc60351aadc6bf030d77
DEBUG:proc:lightningd(1473): Adding block a207dd63b2b6a01903d9e2471d6353bb4378a5e806fb21d556826ffda2530f18
DEBUG:proc:lightningd(1473): Adding block 503c8aedd14b49054782ac9fecb0cf3da2ab584301d25560ea422b4166421400
DEBUG:proc:lightningd(1473): Adding block 0c8d80ab9ef8a39859c482aaa550ade37a173d3cfa5650166c0cf187c565ee26
DEBUG:proc:lightningd(1473): Adding block 93a18d3264b8dcc24b47f382d410640080886fafff788c0d809a02a260de6a65
DEBUG:proc:lightningd(1473): Adding block c7a225ddfa5ac78a3a7ba0a60763bab4f5fbc723f995dafeaf63d1316b7af03a
DEBUG:proc:lightningd(1473): Adding block 391ff2ccb775309b59315503cf73ae20a8ef5f046fd07986c4f7e44c22c5355c
DEBUG:proc:lightningd(1473): Adding block dc343b545517f10b5a01bfcb59ab81d19d3d0ef4d3159c5c6e7b962813699c7a
DEBUG:proc:lightningd(1473): Adding block 89869418bed69ce6c5de14d50cb0730ceb5829ba14d843e669e9ab8623eb7452
DEBUG:proc:lightningd(1473): Adding block 60e0d60b689d4f62d3c82c0ff79f120ec8d7a84438cf9de2aeb684f11e693a11
DEBUG:proc:lightningd(1473): Adding block 4ccc41b8008428a9e0f7063bd9433fa877682315935404ec803d05ea6ca64f08
DEBUG:proc:lightningd(1473): Adding block d90f313b53a5c4afce65a56c9ee03a8c3d9966366e7bceaa7ef9f301bb8d0b3c
DEBUG:proc:lightningd(1473): Adding block 058ce918475f8284e735becdc78128f8934f5e1861288383264d33563666b60e
DEBUG:proc:lightningd(1473): Adding block fdfd9745ffc57eae5cfcc15431c140118568dc2f8e785b9589a04cacbecc3115
DEBUG:proc:lightningd(1473): Adding block 59a46d132bd1b70c79559ad58ce8a26fba44c0084b7ed3cfca435c78274f501b
DEBUG:proc:lightningd(1473): Adding block 6ca4703df1635df1179bf714ed87699b400cb9f690c51df3c5c56b77b4fc1c33
DEBUG:proc:lightningd(1473): Adding block 13555500599ffc7b8fefef2a6448a3f430dad50f961b6ccb4b04acfe36af0338
DEBUG:proc:lightningd(1473): Adding block 9e381b3ed753e69b8f58a45922753638ef3f58a37295d9437f32aeabd84d384b
DEBUG:proc:lightningd(1473): Adding block 4d1ea44f6f7f52d27b9d712415255eb24ae5cc3202b9398d253df576bd4b205f
DEBUG:proc:lightningd(1473): Adding block 62c2805aa4eb4aa2bce3bc8fe2468248b85e5aae4a113815e29e1cb8063ee46f
DEBUG:proc:lightningd(1473): Adding block 5ce0d86586ec2d984eef3bcc5387b917beb36e15a4fb90d37f2cd9d37e6f9543
DEBUG:proc:lightningd(1473): Adding block 2a3ac30fcd5e51efd1f9cd78d8d6ff9472cf38efeaa41a71ad5b3e956f070c7c
DEBUG:proc:lightningd(1473): Adding block b6bb1e3548eafa31e02d6277cd940a131c5472c0e46c8aaa8d0505e89ec3f128
DEBUG:proc:lightningd(1473): Adding block 974849185a7d70927a85115a46a15beb4999ef70ec7c593909453bbde9173721
DEBUG:proc:lightningd(1473): Adding block 255b51b881e3772e52f5898a7bc1c299783588ee2dcd807e3e2210de83368c06
DEBUG:proc:lightningd(1473): Adding block fbf1c23b098cf3a4a7af7116e76f2c0d22cdeb6b053a24253ddba1dffac98b26
DEBUG:proc:lightningd(1473): Adding block 6f8d2cf2af5df0f7cdd66dbd82f8790daab8b008a7620b81b22df5626a06b245
DEBUG:proc:lightningd(1473): Adding block 06e1a6cd5bd29b94820cb166bbce878e5fee8b1e8db1e5f75c3d95ecb84daf01
DEBUG:proc:lightningd(1473): Adding block 7d0c27c5fc6a82585e54dd9aa33f751bfaad000d402783ad3cfbaa79b5c8a071
DEBUG:proc:lightningd(1473): Adding block c13095c4a9b1822a82a025f12d5de665ee423c3516a68f0498b6b63e06e0c204
DEBUG:proc:lightningd(1473): Adding block ad45a890b6ec5c97eb26fb2fe70a84d9464af939515d84369cbfce15f07a4c04
DEBUG:proc:lightningd(1473): Adding block 21d7f5a23260adfb3b52aba03d5815dc5a1c676f38ff7068a0489c0422a03058
DEBUG:proc:lightningd(1473): Adding block 3bdb32ac8b23fd03e09cd41410a4a86c16a79274f06d44b20e8a32b1b7b6307e
DEBUG:proc:lightningd(1473): Adding block af769273e0c244f599f00595beb71a0391f465a544fa29f749b1920f1a1a491f
DEBUG:proc:lightningd(1473): Adding block bdb8529d13d9e9267ec4a866452f663bf20fefab6d5177c772f750e7c91bcd59
DEBUG:proc:lightningd(1473): Adding block 81d3cf8f772409d8d4ba72645d1454e3fbf0336666d134ac765a6970d35b1540
DEBUG:proc:lightningd(1473): Adding block 8bf86b24f36e5f1aa3862a9bc56de3df640496690ac62d024cf20d1f9dfe950f
DEBUG:proc:lightningd(1473): Adding block 98bfe54d93e7114313be1f8824838ed8f34e5bc0274f64e8f244561219b8ed4e
DEBUG:proc:lightningd(1473): Adding block cf5ba1d7e042fdc0a95b4ab1ffd8dca584f58aaea0d35a4abb4a524254393254
DEBUG:proc:lightningd(1473): Adding block 1815cb17721c354d187a285b21d3efcebcbc2eba832f6a866b736cd4cfec962f
DEBUG:proc:lightningd(1473): Adding block e6bf19c41c8afe6ac38be530f40118613aa0615d072b6cc3ec18e8e32989a962
DEBUG:proc:lightningd(1473): Adding block 349459c978e35eb943a1e14ee114fd9c3ad7765ec117a0dfdeb2137b3c8fa55f
DEBUG:proc:lightningd(1473): Adding block 46003bccd5876f25a881d43397ceeccfbf230d621f7271c395dbc951ebc3d733
DEBUG:proc:lightningd(1473): Adding block 9389574e7ebea96758caeed1beff0f16aee78c75edc70b8214f548a31a37890d
DEBUG:proc:lightningd(1473): Adding block 04799cd5fea697f47c54c254906a5e0ac5ca2da7ba56e4c9ac00a2c1ac702c2d
DEBUG:proc:lightningd(1473): Adding block f51c52eeaa5fdd7b26c3b5489e4e1e027cb8dfd744e217c57093e1aa67e58171
DEBUG:proc:lightningd(1473): Adding block 05819a2a4cc75a8ee88920f51915055abd39956c012033b4de1888a589016877
DEBUG:proc:lightningd(1473): Adding block 1d78ebaef6cb46ccc994eae975dd21980bb677baa2b47a923121619a968d840d
DEBUG:proc:lightningd(1473): Adding block 2923e45fb8c2fee67ca0c8eba282893cd3eabc182185399389fbb900cc04080f
DEBUG:proc:lightningd(1473): Adding block b8d76f41a11fe119bbeff40fac4ad3b53f5db5c209ef0a338c4373b10039e73a
DEBUG:proc:lightningd(1473): Adding block 4326cf838d279fd2fc72a1f37c0c1e38c273365122a59a6c0512c5ead7582a73
DEBUG:proc:lightningd(1473): Adding block c8e1878c1080e580fe6cfd1fddac370db78df24c8ee81a87bf7508d808f36b32
DEBUG:proc:lightningd(1473): Adding block 830a401084b9670af66563444680b7383f5375c9b10cc7e59e949d81b030b247
DEBUG:proc:lightningd(1473): Adding block 1b4ce3390ca4f8adde8f1eb2d33534e6a1f81a415b3902f62796bcdaf50cb56c
DEBUG:proc:lightningd(1473): Adding block b10d4fe33eb20b3ba7956d36aca64095d6238cd703e574611240e66f459b0a20
DEBUG:proc:lightningd(1473): Adding block 70f514e7541eaa971d58123599b935ba3276fc9b6a99c9923ecf46786ca1f259
DEBUG:proc:lightningd(1473): Adding block ede318e5601bcc4f4e509f6ae640cb59668af363889e09ad4119595d9ffca748
DEBUG:proc:lightningd(1473): Adding block 96d63a4085358de8640ec5f1f1cd066c2acfece8eb331220fb903c6f4a0c6947
DEBUG:proc:lightningd(1473): Adding block 081db4b2f010d53f336793208ace0064789de52e18c87c039a7525b54069f927
DEBUG:proc:lightningd(1473): Adding block a496c7a99c7f0ad89d76b30fad5a0b9c336f9e6a9ef426076ca73a9025184816
DEBUG:proc:lightningd(1473): Adding block a85828f3be5672fc55bf52e9788b8d4a43112531da2c5dbe4a63193ec4b44742
DEBUG:proc:lightningd(1473): Adding block 94d54f6b57eb17052f42ed1221ad5b74a37c3c62957e480540ee689d5f79bc6e
DEBUG:proc:lightningd(1473): Adding block 65ab7590856a238dadd479598386edb99badc2d8376a0ff3f04f81ba14f5b628
DEBUG:proc:lightningd(1473): Adding block bd09375dd10e732e67e58067a1abcec73e62f8f907c320220ee88abb72b8cb2b
DEBUG:proc:lightningd(1473): Adding block 424098c078495014a10700ca8dcfe9b194510c9d6300472481089b01c2022f74
DEBUG:proc:lightningd(1473): Adding block 19540e772647564ccec43f5b113de4bf7f6a68eec16b41c27c3143cdaee8901c
DEBUG:proc:lightningd(1473): Adding block b3b62dac1ecc1b2da70075a673b31f83a48d03717cd2d8ae113385d01adda043
DEBUG:proc:lightningd(1473): Adding block 2d069a3a8bfee768fd8bef5b9f9ce6584b2ab71ecedf59a8a6a6ef507d39de7e
DEBUG:proc:lightningd(1473): Adding block ddb71d70a08360866f80b7d2c10a45af14302cf267096eaf62771a8c0b5aad3b
DEBUG:proc:lightningd(1473): Adding block c7492f8fb7a5067d10b5598c7e418f2061eb28e85ec9ee712e75fe225a469e4a
DEBUG:proc:lightningd(1473): Adding block c305c6b2070ce82fd9bbae803399b3e42db2e29ace6f06966d57a7d4f85ce90f
DEBUG:proc:lightningd(1473): Adding block 190a88bce8db97a7a621462d3ea5be12467b347f3b78f7f4ee6054f1ad92885f
DEBUG:proc:lightningd(1473): Adding block cd98fd4fcfdda4ecc6ac2edbd5679ffe3f6aace8d09a7adba07be75e396add47
DEBUG:proc:lightningd(1473): Adding block ed932e197dfe4e5d6d23e79d4e9c7b38c326f6859f945a1fa980e0e19c49e60c
DEBUG:proc:lightningd(1473): Adding block 9231afd39f862b4171d6fd0e8f072564d97b21852efb9a05cf33714fcb5cd334
DEBUG:proc:lightningd(1473): Adding block 6f261e79610fba737c5bdc2f5f5c47b46af743f7ff903a12be3b0649c2e4d224
DEBUG:proc:lightningd(1473): Adding block 61bd54bd5e4180c67a56663b60443c2ed85bac8b5ca5df66756517447058ae42
DEBUG:proc:lightningd(1473): Adding block 1d86a599bf5c5ec0b22ac687d0ba868ae6f49a38baef052e55e81c1325bf8018
DEBUG:proc:lightningd(1473): Adding block d6910b1cb81d11e48c804df637c8ff202921e35ea3358dab0ce6e63f03ef003d
DEBUG:proc:lightningd(1473): Adding block c6ddea047f07206ebe73e924d0b56b0ba29ff2a20aaa3d20a7313a141823d919
DEBUG:proc:lightningd(1473): Adding block 62072284b334f2d2167eb2b2d629a0a174f7bc0a91009b1919e188fd01d8ef1c
DEBUG:proc:lightningd(1473): Adding block 4d446dbc22621a89e278331b70a2c375efd350d4d197ce13d75ba8a85eb6104e
DEBUG:proc:lightningd(1473): Adding block 359d9371b1f7bb54f36dc2a775411ad81e1047b231f727c3782b675277e38f2e
DEBUG:proc:lightningd(1473): Adding block b0a986deb523df62fade095e677cba2062c3b00f0f079529f33699c6218e5943
DEBUG:proc:lightningd(1473): Adding block 4dfdb50851e192e1fd858eaa9b802d0e44c2bcc02d22f1f68a116a97f5538551
DEBUG:proc:lightningd(1473): Adding block fe2872e8c0994b612c98a755e0743b66107daff053fde39c610701a72e47fd41
DEBUG:proc:lightningd(1473): Loaded 0 invoices from DB
DEBUG:proc:lightningd(1473): HSM TRACE: Control: type WIRE_HSMCTL_HSMFD_ECDH len 2
DEBUG:proc:lightning_gossipd(1648): pid 1648, msgfd 15
DEBUG:proc:lightningd(1473): Loaded 0 channels from DB
DEBUG:proc:lightningd(1473): Listening on 'lightning-rpc'
DEBUG:proc:lightningd(1473): Hello world from 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066 aka VIOLENTSEAGULL #02603c (version v0.5.2-2016-11-21-1199-gcfde208)!
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightning_gossipd(1648): TRACE: req: type WIRE_GOSSIPCTL_INIT len 78
DEBUG:proc:lightning_gossipd(1648): TRACE: Creating IPv6 listener on port 16332
DEBUG:proc:lightning_gossipd(1648): TRACE: Failed to bind on 2 socket: Address already in use
DEBUG:root:Found 'Creating IPv6 listener on port' in logs
INFO:root:LightningD started
DEBUG:lightning-node(16332):Calling getinfo with arguments ()
DEBUG:root:Calling getinfo with arguments ()
DEBUG:proc:lightningd(1473): Connected json input
DEBUG:proc:lightningd(1473):jcon fd 14: Success
DEBUG:root:Received response for getinfo call: {'result': {'address': [], 'blockheight': 858, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'address': [], 'blockheight': 858, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066'}
DEBUG:proc:lightningd(1473):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 17:25:04.733 [DBG] SRVR: Connecting to 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:04.733 [DBG] RPCS: Connected to peer: 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:04.733 [DBG] CMGR: Attempting to connect to 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066@127.0.0.1:16332 (reqid 1)
DEBUG:root:
DEBUG:proc:lightning_gossipd(1648): TRACE: Responder: Act 1
DEBUG:lnd(16331):2017-11-29 17:25:04.734 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 17:25:04.734 [DBG] RPCS: [listpeers] yielded [] peers
DEBUG:proc:lightning_gossipd(1648): TRACE: Responder: Act 2
DEBUG:lnd(16331):2017-11-29 17:25:04.735 [DBG] CMGR: Connected to 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066@127.0.0.1:16332 (reqid 1)
DEBUG:proc:lightning_gossipd(1648): TRACE: Responder: Act 3
DEBUG:lnd(16331):2017-11-29 17:25:04.735 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:proc:lightning_gossipd(1648): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331):2017-11-29 17:25:04.735 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:proc:lightning_gossipd(1648): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331):2017-11-29 17:25:04.735 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:proc:lightning_gossipd(1648): TRACE: Forgetting remote peer 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192
DEBUG:lnd(16331):2017-11-29 17:25:04.735 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc4202ba5a0)({
DEBUG:proc:lightning_gossipd(1648): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42009a0c0)({
DEBUG:proc:lightning_gossipd(1648): TRACE: handle_peer 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192: new peer
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:proc:lightning_gossipd(1648): TRACE: Received node_announcement for node 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192
DEBUG:lnd(16331): }
DEBUG:proc:lightning_gossipd(1648): TRACE: Node not found, was the node_announcement preceeded by at least channel_announcement?
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201ea058)({
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 17:25:04.735 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:04.735 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc420170720)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42009a020)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42009a028)({
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 17:25:04.735 [DBG] PEER: Loaded 0 active channels from database with peerID(1)
DEBUG:lnd(16331):2017-11-29 17:25:04.735 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16331):2017-11-29 17:25:04.736 [INF] DISC: Syncing channel graph state with 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 17:25:04.736 [INF] SRVR: Attempting to send msgs 1 to: 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066
DEBUG:lnd(16331):2017-11-29 17:25:04.736 [DBG] PEER: Sending NodeAnnouncement(node=0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192, update_time=2017-11-29 17:24:58 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:04.736 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4204fdce0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4202ba8c0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4201e8d40)(66737352616322736690210688351159536546227591497694532236661677685046585122621),
DEBUG:lnd(16331): S: (*big.Int)(0xc4201e8d60)(56598939195440336188621761847894324231881569823310794382773676599284061048001)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4201ea0a8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511972698,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4201e8c40)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4201e8c60)(60682483337015859064408831178877459541020073203443167973153582928008366682514),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201e8c80)(105675413616566242014776531940813000325591189239642302943249554638736973148780)
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) 0286291184539300c8cc,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 17:25:05.735 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 17:25:05.736 [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(1473): Connected json input
DEBUG:proc:lightning_gossipd(1648): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1648): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1473):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'peerid': '0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:42340'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1473):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'peerid': '0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:42340'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lnd(16331):2017-11-29 17:25:05.750 [INF] RPCS: [newaddress] addr=2MvDgNzatX3cnK6SGVYXdjJhSeqQW4FUyrD
{"method": "sendtoaddress", "params": ["2MvDgNzatX3cnK6SGVYXdjJhSeqQW4FUyrD", 0.2], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:05 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:05 keypool reserve 1053
DEBUG:bitcoind:2017-11-29 16:25:05 Fee Calculation: Fee:3800 Bytes:190 Needed:3800 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.2/(0.2 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 16:25:05 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=5bdef530bf, ver=2, vin.size=1, vout.size=2, nLockTime=858)
DEBUG:bitcoind: CTxIn(COutPoint(63474cdc8b, 0), scriptSig=4830450221009484cf31413b, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=1.36246200, scriptPubKey=76a9149ff83ebac48808c41ed22e49)
DEBUG:bitcoind: CTxOut(nValue=0.20000000, scriptPubKey=a914209d937382fd698782ec8ba602)
DEBUG:bitcoind:2017-11-29 16:25:05 keypool keep 1053
DEBUG:bitcoind:2017-11-29 16:25:05 AddToWallet 5bdef530bf6f76eb3461d08ba0b56cc6092d3697e406656c37cc331ef8c8727d new
DEBUG:bitcoind:2017-11-29 16:25:05 AddToWallet 5bdef530bf6f76eb3461d08ba0b56cc6092d3697e406656c37cc331ef8c8727d
DEBUG:bitcoind:2017-11-29 16:25:05 Relaying wtx 5bdef530bf6f76eb3461d08ba0b56cc6092d3697e406656c37cc331ef8c8727d
DEBUG:root:Waiting for 'Inserting unconfirmed transaction' in the logs
DEBUG:lnd(16331):2017-11-29 17:25:21.303 [INF] LNWL: Inserting unconfirmed transaction 5bdef530bf6f76eb3461d08ba0b56cc6092d3697e406656c37cc331ef8c8727d
DEBUG:lnd(16331):2017-11-29 17:25:21.303 [DBG] LNWL: Marked address 2MvDgNzatX3cnK6SGVYXdjJhSeqQW4FUyrD used
DEBUG:root:Found 'Inserting unconfirmed transaction' in logs
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:21 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:21 keypool reserve 298
DEBUG:bitcoind:2017-11-29 16:25:21 CreateNewBlock(): total size: 453 block weight: 1704 txs: 1 fees: 3800 sigops 404
DEBUG:bitcoind:2017-11-29 16:25:21 UpdateTip: new best=79316d29cc6c1840fd3e60a2cf9c0f55ac0ab68c52bc96eeb12ad15cea829dec height=859 version=0x20000000 log2_work=10.748193 tx=962 date='2017-11-29 16:25:21' progress=1.000000 cache=0.2MiB(961txo)
DEBUG:bitcoind:2017-11-29 16:25:21 AddToWallet c6b8000a8fe8f2a98d1b0175fff7890ec2cda1df542dba7f8f7648edfce14830 new
DEBUG:bitcoind:2017-11-29 16:25:21 AddToWallet 5bdef530bf6f76eb3461d08ba0b56cc6092d3697e406656c37cc331ef8c8727d update
DEBUG:bitcoind:2017-11-29 16:25:21 keypool keep 298
DEBUG:root:Waiting for 'Marking unconfirmed transaction' in the logs
DEBUG:proc:2017-11-29 17:25:21.430 [INF] BMGR: Processed 10 blocks in the last 37.26s (11 transactions, height 859, 2017-11-29 17:25:21 +0100 CET)
DEBUG:lnd(16331):2017-11-29 17:25:21.432 [INF] LNWL: Marking unconfirmed transaction 5bdef530bf6f76eb3461d08ba0b56cc6092d3697e406656c37cc331ef8c8727d mined in block 859
DEBUG:lnd(16331):2017-11-29 17:25:21.432 [INF] CRTR: Pruning channel graph using block 79316d29cc6c1840fd3e60a2cf9c0f55ac0ab68c52bc96eeb12ad15cea829dec (height=859)
DEBUG:root:Found 'Marking unconfirmed transaction' in logs
DEBUG:lnd(16331):2017-11-29 17:25:21.433 [INF] NTFN: New block: height=859, sha=79316d29cc6c1840fd3e60a2cf9c0f55ac0ab68c52bc96eeb12ad15cea829dec
DEBUG:lnd(16331):2017-11-29 17:25:21.433 [DBG] LNWL: Marked address 2MvDgNzatX3cnK6SGVYXdjJhSeqQW4FUyrD used
DEBUG:lnd(16331):2017-11-29 17:25:21.449 [INF] CRTR: Block 79316d29cc6c1840fd3e60a2cf9c0f55ac0ab68c52bc96eeb12ad15cea829dec (height=859) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block ec9d82ea5cd12ab1ee96bc528cb60aac550f9ccfa2603efd40186ccc296d3179
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 17:25:22.435 [DBG] RPCS: [walletbalance] balance=0.2 BTC
{"method": "generate", "params": [10], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:27 keypool reserve 299
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=4e241ed490cfd4adf606bc16bad1dc059b43a6633b79ac5472805de10f808bdf height=860 version=0x20000000 log2_work=10.749869 tx=963 date='2017-11-29 16:25:27' progress=1.000000 cache=0.2MiB(962txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet 1ebaebfdfc0e4f4558c927b0b026c3b3963d14eeb9f9676422fe32f3cdff9f8b new
DEBUG:bitcoind:2017-11-29 16:25:27 keypool keep 299
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=3013dc40a4843226e8a86950989c083ae4317330f6fd50dc9f5f1520cf5b199c height=861 version=0x20000000 log2_work=10.751544 tx=964 date='2017-11-29 16:25:27' progress=1.000000 cache=0.2MiB(963txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet 96c86278cb30de6267ade09220ff3f41f30c7b7bb8e71715e3688d807ae3d1d0 new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=031560eabaa3dd1876eeaedbe655100b9dd313d2bcf9f30567c5b512bf9bd0e8 height=862 version=0x20000000 log2_work=10.753217 tx=965 date='2017-11-29 16:25:27' progress=1.000000 cache=0.2MiB(964txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet 8ed5214400a4986e06302fd4bff3294cc505d1330ef6a8699dab8e6355f23c8c new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=613bdcaa22a1aacb36fe67af284036ab8518888feb441da562ac1aa98aa84930 height=863 version=0x20000000 log2_work=10.754888 tx=966 date='2017-11-29 16:25:27' progress=1.000000 cache=0.2MiB(965txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet c0f0dd4a61706cc4bd7b8bdde3c2a4c7d9bcfd3df4cf9756a6fc63a4a5615be1 new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=3085cc91694bed9fdc358398ad243208cfdf3da68d24e58e46e10c863b9f794d height=864 version=0x20000000 log2_work=10.756556 tx=967 date='2017-11-29 16:25:27' progress=1.000000 cache=0.2MiB(966txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet 7cf12781dff5890302597d2bf6c85cfa4899599c8d264c139a3ba9d95c5a19f8 new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=50fe2fe3fe6caec29d97f1b34ff5d2b42102d477fda0ee3d66c11044d8273946 height=865 version=0x20000000 log2_work=10.758223 tx=968 date='2017-11-29 16:25:27' progress=1.000000 cache=0.2MiB(967txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet f89f03398865c0719454f41bfe6307b540e0846a57cb19fe6e2433b81e4e2115 new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=498ea584d7ce5923876805f9f01d32f1443b08a9ea0844d1c4376d505afa86dc height=866 version=0x20000000 log2_work=10.759888 tx=969 date='2017-11-29 16:25:28' progress=1.000000 cache=0.2MiB(968txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet f3eda154c467e4e6f65a681b91565f853f8d7cde1a890b32d5705f7765cc21d1 new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=7d12b33a0ff3b3de5820572feb131f453f7d901fd238fb0614f9b0c7713b3e9e height=867 version=0x20000000 log2_work=10.761551 tx=970 date='2017-11-29 16:25:28' progress=1.000000 cache=0.2MiB(969txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet 0fab5d4cafa44ce129245fd0a7a9af8ae2715608e60a9271d9384918f93f468f new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=1a95b356a38e6b07c4a959122a65f37466414af64fccaecf514431433fa229cc height=868 version=0x20000000 log2_work=10.763212 tx=971 date='2017-11-29 16:25:28' progress=1.000000 cache=0.2MiB(970txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet a7f373d87e4e0a4e0757243100ed8013765d35d4f377e37ac00c79d4df7e2316 new
DEBUG:bitcoind:2017-11-29 16:25:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:27 UpdateTip: new best=2f1a1ed1a7298befff37ae7bf761922e07eedad7132c08178078acfaffd92971 height=869 version=0x20000000 log2_work=10.764872 tx=972 date='2017-11-29 16:25:28' progress=1.000000 cache=0.2MiB(971txo)
DEBUG:bitcoind:2017-11-29 16:25:27 AddToWallet 0d2fcccccef6b3fe833c2ad5dd831d279b829d8a048dd3e2fecf2541e2b04e6d new
DEBUG:proc:2017-11-29 17:25:27.634 [INF] CHAN: Adding orphan block 2f1a1ed1a7298befff37ae7bf761922e07eedad7132c08178078acfaffd92971 with parent 1a95b356a38e6b07c4a959122a65f37466414af64fccaecf514431433fa229cc
DEBUG:lnd(16331):2017-11-29 17:25:27.641 [INF] CRTR: Pruning channel graph using block 4e241ed490cfd4adf606bc16bad1dc059b43a6633b79ac5472805de10f808bdf (height=860)
DEBUG:lnd(16331):2017-11-29 17:25:27.642 [INF] NTFN: New block: height=860, sha=4e241ed490cfd4adf606bc16bad1dc059b43a6633b79ac5472805de10f808bdf
DEBUG:lnd(16331):2017-11-29 17:25:27.645 [INF] NTFN: New block: height=861, sha=3013dc40a4843226e8a86950989c083ae4317330f6fd50dc9f5f1520cf5b199c
DEBUG:lnd(16331):2017-11-29 17:25:27.647 [INF] NTFN: New block: height=862, sha=031560eabaa3dd1876eeaedbe655100b9dd313d2bcf9f30567c5b512bf9bd0e8
DEBUG:lnd(16331):2017-11-29 17:25:27.652 [INF] CRTR: Block 4e241ed490cfd4adf606bc16bad1dc059b43a6633b79ac5472805de10f808bdf (height=860) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.652 [INF] CRTR: Pruning channel graph using block 3013dc40a4843226e8a86950989c083ae4317330f6fd50dc9f5f1520cf5b199c (height=861)
DEBUG:lnd(16331):2017-11-29 17:25:27.652 [INF] NTFN: New block: height=863, sha=613bdcaa22a1aacb36fe67af284036ab8518888feb441da562ac1aa98aa84930
DEBUG:lnd(16331):2017-11-29 17:25:27.656 [INF] NTFN: New block: height=864, sha=3085cc91694bed9fdc358398ad243208cfdf3da68d24e58e46e10c863b9f794d
DEBUG:lnd(16331):2017-11-29 17:25:27.659 [INF] NTFN: New block: height=865, sha=50fe2fe3fe6caec29d97f1b34ff5d2b42102d477fda0ee3d66c11044d8273946
DEBUG:lnd(16331):2017-11-29 17:25:27.661 [INF] CRTR: Block 3013dc40a4843226e8a86950989c083ae4317330f6fd50dc9f5f1520cf5b199c (height=861) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.661 [INF] CRTR: Pruning channel graph using block 031560eabaa3dd1876eeaedbe655100b9dd313d2bcf9f30567c5b512bf9bd0e8 (height=862)
DEBUG:lnd(16331):2017-11-29 17:25:27.661 [INF] NTFN: New block: height=866, sha=498ea584d7ce5923876805f9f01d32f1443b08a9ea0844d1c4376d505afa86dc
DEBUG:lnd(16331):2017-11-29 17:25:27.664 [INF] NTFN: New block: height=867, sha=7d12b33a0ff3b3de5820572feb131f453f7d901fd238fb0614f9b0c7713b3e9e
DEBUG:lnd(16331):2017-11-29 17:25:27.675 [INF] NTFN: New block: height=868, sha=1a95b356a38e6b07c4a959122a65f37466414af64fccaecf514431433fa229cc
DEBUG:lnd(16331):2017-11-29 17:25:27.681 [INF] NTFN: New block: height=869, sha=2f1a1ed1a7298befff37ae7bf761922e07eedad7132c08178078acfaffd92971
DEBUG:lnd(16331):2017-11-29 17:25:27.859 [INF] CRTR: Block 031560eabaa3dd1876eeaedbe655100b9dd313d2bcf9f30567c5b512bf9bd0e8 (height=862) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.859 [INF] CRTR: Pruning channel graph using block 613bdcaa22a1aacb36fe67af284036ab8518888feb441da562ac1aa98aa84930 (height=863)
DEBUG:lnd(16331):2017-11-29 17:25:27.866 [INF] CRTR: Block 613bdcaa22a1aacb36fe67af284036ab8518888feb441da562ac1aa98aa84930 (height=863) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.866 [INF] CRTR: Pruning channel graph using block 3085cc91694bed9fdc358398ad243208cfdf3da68d24e58e46e10c863b9f794d (height=864)
DEBUG:lnd(16331):2017-11-29 17:25:27.873 [INF] CRTR: Block 3085cc91694bed9fdc358398ad243208cfdf3da68d24e58e46e10c863b9f794d (height=864) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.873 [INF] CRTR: Pruning channel graph using block 50fe2fe3fe6caec29d97f1b34ff5d2b42102d477fda0ee3d66c11044d8273946 (height=865)
DEBUG:lnd(16331):2017-11-29 17:25:27.881 [INF] CRTR: Block 50fe2fe3fe6caec29d97f1b34ff5d2b42102d477fda0ee3d66c11044d8273946 (height=865) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.881 [INF] CRTR: Pruning channel graph using block 498ea584d7ce5923876805f9f01d32f1443b08a9ea0844d1c4376d505afa86dc (height=866)
DEBUG:lnd(16331):2017-11-29 17:25:27.888 [INF] CRTR: Block 498ea584d7ce5923876805f9f01d32f1443b08a9ea0844d1c4376d505afa86dc (height=866) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.888 [INF] CRTR: Pruning channel graph using block 7d12b33a0ff3b3de5820572feb131f453f7d901fd238fb0614f9b0c7713b3e9e (height=867)
DEBUG:lnd(16331):2017-11-29 17:25:27.897 [INF] CRTR: Block 7d12b33a0ff3b3de5820572feb131f453f7d901fd238fb0614f9b0c7713b3e9e (height=867) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.897 [INF] CRTR: Pruning channel graph using block 1a95b356a38e6b07c4a959122a65f37466414af64fccaecf514431433fa229cc (height=868)
DEBUG:lnd(16331):2017-11-29 17:25:27.906 [INF] CRTR: Block 1a95b356a38e6b07c4a959122a65f37466414af64fccaecf514431433fa229cc (height=868) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:25:27.907 [INF] CRTR: Pruning channel graph using block 2f1a1ed1a7298befff37ae7bf761922e07eedad7132c08178078acfaffd92971 (height=869)
DEBUG:lnd(16331):2017-11-29 17:25:27.913 [INF] CRTR: Block 2f1a1ed1a7298befff37ae7bf761922e07eedad7132c08178078acfaffd92971 (height=869) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 7129d9fffaac788017082c13d7daee072e9261f77bae37ffef8b29a7d11e1a2f
DEBUG:proc:lightningd(1473): Adding block cc29a23f43314451cfaecc4ff64a416674f3652a1259a9c4076b8ea356b3951a
DEBUG:proc:lightningd(1473): Adding block 9e3e3b71c7b0f91406fb38d21f907d3f451f13eb2f572058deb3f30f3ab3127d
DEBUG:proc:lightningd(1473): Adding block dc86fa5a506d37c4d14408eaa9083b44f1321df0f90568872359ced784a58e49
DEBUG:proc:lightningd(1473): Adding block 463927d84410c1663deea0fd77d40221b4d2f54fb3f1979dc2ae6cfee32ffe50
DEBUG:proc:lightningd(1473): Adding block 4d799f3b860ce1468ee5248da63ddfcf083224ad988335dc9fed4b6991cc8530
DEBUG:proc:lightningd(1473): Adding block 3049a88aa91aac62a51d44eb8f881885ab364028af67fe36cbaaa122aadc3b61
DEBUG:proc:lightningd(1473): Adding block e8d09bbf12b5c56705f3f9bcd213d39d0b1055e6dbaeee7618dda3baea601503
DEBUG:proc:lightningd(1473): Adding block 9c195bcf20155f9fdc50fdf6307331e43a089c985069a8e8263284a440dc1330
DEBUG:proc:lightningd(1473): Adding block df8b800fe15d807254ac793b63a6439b05dcd1ba16bc06f6add4cf90d41e244e
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 17:25:32.542 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 17:25:32.542 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lnd(16331):2017-11-29 17:25:32.544 [TRC] RPCS: [openchannel] request to peerid(1) allocation(us=10000000, them=0)
DEBUG:lnd(16331):2017-11-29 17:25:32.545 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 17:25:32.545 [DBG] RPCS: [openchannel]: using fee of 25 sat/byte for funding tx
DEBUG:lnd(16331):2017-11-29 17:25:32.545 [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 17:25:32.546 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 17:25:32.546 [INF] LNWL: Performing funding tx coin selection using 6 sat/weight as fee rate
DEBUG:lnd(16331):2017-11-29 17:25:32.598 [INF] FNDG: Target commit tx sat/kw for pendingID(d67e295044505c21108475d67babe5734992e85236a5b52eb859e5d002b83962): 6000
DEBUG:lnd(16331):2017-11-29 17:25:32.599 [INF] FNDG: Starting funding workflow with 127.0.0.1:16332 for pendingID(d67e295044505c21108475d67babe5734992e85236a5b52eb859e5d002b83962)
DEBUG:lnd(16331):2017-11-29 17:25:32.599 [INF] SRVR: Attempting to send msgs 1 to: 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066
DEBUG:lnd(16331):2017-11-29 17:25:32.599 [DBG] PEER: Sending MsgOpenChannel(temp_chan_id=d67e295044505c21108475d67babe5734992e85236a5b52eb859e5d002b83962, 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 17:25:32.599 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.OpenChannel)(0xc4201f7340)({
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 d6 7e 29 50 44 50 5c 21 10 84 75 d6 7b ab e5 73 |.~)PDP\!..u.{..s|
DEBUG:lnd(16331): 00000010 49 92 e8 52 36 a5 b5 2e b8 59 e5 d0 02 b8 39 62 |I..R6....Y....9b|
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)(0xc420541080)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4205384e0)(77476252718430286412389778994301400506971241725636902467973343539549942157426),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420538520)(85839530193423577175901763014847199300283074287185169171298668858478088717805)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RevocationPoint: (*btcec.PublicKey)(0xc420541710)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420538f80)(106940923238841559440859269475339510372005375639783345364028302816865378158878),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420538fa0)(106266413555782662314589508043487391200091641107510292457545413136717722652775)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): PaymentPoint: (*btcec.PublicKey)(0xc4206d9860)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420577160)(80805094755042497209273579408935961554097950336375905153323792023870259812353),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420577180)(717782340072082806590635904671148569843666076050766154008267920505114040362)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4206d9ec0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420577a60)(114968916796449944317651812837214669661097174270809035764347444102618094171212),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420577a80)(12284426195059109511309045565415345830685216975866864398921429006565984647120)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): HtlcPoint: (*btcec.PublicKey)(0xc4206d91d0)({
DEBUG:lnd(16331): Curve: (*btcec.KoblitzCurve)(0x14eb520)({
DEBUG:lnd(16331): CurveParams: (*elliptic.CurveParams)(0xc42008ebc0)({
DEBUG:lnd(16331): P: (*big.Int)(0xc42009cca0)(115792089237316195423570985008687907853269984665640564039457584007908834671663),
DEBUG:lnd(16331): N: (*big.Int)(0xc42009cce0)(115792089237316195423570985008687907852837564279074904382605163141518161494337),
DEBUG:lnd(16331): B: (*big.Int)(0xc42009cd20)(7),
DEBUG:lnd(16331): Gx: (*big.Int)(0xc42009cd60)(55066263022277343669578718895168534326250603453777594175500187360389116729240),
DEBUG:lnd(16331): Gy: (*big.Int)(0xc42009cda0)(32670510020758816978083085130507043184471273380659243275938904335757337482424),
DEBUG:lnd(16331): BitSize: (int) 256,
DEBUG:lnd(16331): Name: (string) ""
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): q: (*big.Int)(0xc42009cde0)(28948022309329048855892746252171976963317496166410141009864396001977208667916),
DEBUG:lnd(16331): H: (int) 1,
DEBUG:lnd(16331): halfOrder: (*big.Int)(0xc42009ce40)(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)(0xc42009d700)(37718080363155996902926221483475020450927657555482586988616620542887997980018),
DEBUG:lnd(16331): beta: (*btcec.fieldVal)(0xc42007ef90)(7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee),
DEBUG:lnd(16331): a1: (*big.Int)(0xc42009d760)(64502973549206556628585045361533709077),
DEBUG:lnd(16331): b1: (*big.Int)(0xc42009d7a0)(-303414439467246543595250775667605759171),
DEBUG:lnd(16331): a2: (*big.Int)(0xc42009d7e0)(367917413016453100223835821029139468248),
DEBUG:lnd(16331): b2: (*big.Int)(0xc42009d820)(64502973549206556628585045361533709077)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): X: (*big.Int)(0xc420576700)(45209003990672118066401668494330082035817509847899515610729199987829140083443),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420576740)(8336226125440621627231965685132747295217476660629379054940783746966060943603)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): FirstCommitmentPoint: (*btcec.PublicKey)(0xc420678b20)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420678aa0)(11994558329055754312793762516770011929273088106341523586876865775008473959492),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420678ac0)(115294692405837392792343939516234855340695857095265973568406575070495383680437)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelFlags: (lnwire.FundingFlag) 1
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:proc:lightning_gossipd(1648): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightning_gossipd(1648): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightningd(1473): peer 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192: state: UNINITIALIZED -> OPENINGD
DEBUG:proc:lightning_openingd(2795): pid 2795, msgfd 18
DEBUG:proc:lightningd(1473): No fee estimate for Immediate: basing on default fee rate
DEBUG:proc:lightningd(1473): No fee estimate for Slow: basing on default fee rate
DEBUG:proc:lightning_openingd(2795): TRACE: First per_commit_point = 0245652da620568188c3594748fe8d8bff03ef7c6b5e0bbf4204c765afa6675648
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [DBG] PEER: Received Error(chan_id=d67e295044505c21108475d67babe5734992e85236a5b52eb859e5d002b83962, 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:proc:lightning_openingd(2795): STATUS_FAIL_PEER_BAD: feerate_per_kw 6000 below minimum 10000
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Error)(0xc4201fe400)({
DEBUG:proc:lightningd(1473): peer 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192: Peer permanent failure in OPENINGD: feerate_per_kw 6000 below minimum 10000
DEBUG:lnd(16331): ChanID: (lnwire.ChannelID) (len=32 cap=32) d67e295044505c21108475d67babe5734992e85236a5b52eb859e5d002b83962,
DEBUG:proc:lightning_gossipd(1648): TRACE: Forgetting remote peer 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192
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:proc:lightning_gossipd(1648): TRACE: Responder: Act 1
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 17:25:34.567 [INF] PEER: unable to read message from 127.0.0.1:16332: EOF
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [TRC] PEER: Disconnecting 127.0.0.1:16332, reason: read handler closed
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [ERR] FNDG: Received funding error from 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066: unknown error
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [INF] FNDG: Cancelling funding reservation for node_key=02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066, chan_id=d67e295044505c21108475d67babe5734992e85236a5b52eb859e5d002b83962
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [DBG] SRVR: Peer 127.0.0.1:16332 has been disconnected
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [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 17:25:34.567 [DBG] FNDG: Cancelling all reservations for peer 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [TRC] PEER: readHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [ERR] SRVR: unable to get channel links: unable to locate channel link bydestination hop id 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [DBG] SRVR: removing peer 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [DBG] SRVR: Attempting to re-establish persistent connection to peer 127.0.0.1:16332
DEBUG:proc:lightning_gossipd(1648): TRACE: Responder: Act 2
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [DBG] CMGR: Disconnected from 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066@127.0.0.1:16332 (reqid 1)
DEBUG:proc:lightning_gossipd(1648): TRACE: Responder: Act 3
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [TRC] PEER: Update stream for gossiper exited
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [DBG] CMGR: Attempting to connect to 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066@127.0.0.1:16332 (reqid 2)
DEBUG:lnd(16331):2017-11-29 17:25:34.567 [TRC] PEER: writeHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [DBG] CMGR: Connected to 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066@127.0.0.1:16332 (reqid 2)
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc4202ba470)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42009a0c0)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42000e010)({
DEBUG:proc:lightning_gossipd(1648): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:proc:lightning_gossipd(1648): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:proc:lightning_gossipd(1648): TRACE: Forgetting remote peer 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192
DEBUG:lnd(16331): }
DEBUG:proc:lightning_gossipd(1648): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:lnd(16331): })
DEBUG:proc:lightning_gossipd(1648): TRACE: handle_peer 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192: new peer
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc4202d63e0)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4201ea048)({
DEBUG:proc:lightning_gossipd(1648): TRACE: Received node_announcement for node 0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201ea080)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:proc:lightning_gossipd(1648): TRACE: Node not found, was the node_announcement preceeded by at least channel_announcement?
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 17:25:34.569 [DBG] PEER: Loaded 0 active channels from database with peerID(2)
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16331):2017-11-29 17:25:34.569 [INF] DISC: Syncing channel graph state with 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 17:25:34.570 [INF] SRVR: Attempting to send msgs 1 to: 02603c06f093a1abd0b9eadb5e64ec090297dc4e451a1ea4430428ea31f2c15066
DEBUG:lnd(16331):2017-11-29 17:25:34.570 [DBG] PEER: Sending NodeAnnouncement(node=0286291184539300c8cc4d87a6f02e657bf0bba8ee937208e468230121d4367192, update_time=2017-11-29 17:24:58 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:25:34.570 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc420077440)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4202ba7b0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420525a40)(66737352616322736690210688351159536546227591497694532236661677685046585122621),
DEBUG:lnd(16331): S: (*big.Int)(0xc420525a60)(56598939195440336188621761847894324231881569823310794382773676599284061048001)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42000e020)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511972698,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc420525860)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4205258a0)(60682483337015859064408831178877459541020073203443167973153582928008366682514),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420525900)(105675413616566242014776531940813000325591189239642302943249554638736973148780)
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) 0286291184539300c8cc,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:38 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:38 keypool reserve 300
DEBUG:bitcoind:2017-11-29 16:25:38 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:38 UpdateTip: new best=607f567281cdc497d0faa0614c54fb392c5be6ebbba45503a4867fc36ab369b5 height=870 version=0x20000000 log2_work=10.766529 tx=973 date='2017-11-29 16:25:38' progress=1.000000 cache=0.2MiB(972txo)
DEBUG:bitcoind:2017-11-29 16:25:38 AddToWallet afbbe06ca98d69e75355adf852401ad84d2f5ca1a016b99a2fd5b72649f30cc1 new
DEBUG:bitcoind:2017-11-29 16:25:38 keypool keep 300
DEBUG:proc:2017-11-29 17:25:38.675 [INF] BMGR: Processed 10 blocks in the last 17.24s (10 transactions, height 870, 2017-11-29 17:25:38 +0100 CET)
DEBUG:lnd(16331):2017-11-29 17:25:38.676 [INF] CRTR: Pruning channel graph using block 607f567281cdc497d0faa0614c54fb392c5be6ebbba45503a4867fc36ab369b5 (height=870)
DEBUG:lnd(16331):2017-11-29 17:25:38.678 [INF] NTFN: New block: height=870, sha=607f567281cdc497d0faa0614c54fb392c5be6ebbba45503a4867fc36ab369b5
DEBUG:lnd(16331):2017-11-29 17:25:38.685 [INF] CRTR: Block 607f567281cdc497d0faa0614c54fb392c5be6ebbba45503a4867fc36ab369b5 (height=870) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block b569b36ac37f86a40355a4bbebe65b2c39fb544c61a0fad097c4cd8172567f60
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:39 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:39 keypool reserve 301
DEBUG:bitcoind:2017-11-29 16:25:39 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:39 UpdateTip: new best=48e5fe3c75c238c60d1506136d5a0c91bddb3be53090984974af79f5a8a81edb height=871 version=0x20000000 log2_work=10.768184 tx=974 date='2017-11-29 16:25:39' progress=1.000000 cache=0.2MiB(973txo)
DEBUG:bitcoind:2017-11-29 16:25:39 AddToWallet 8a721e1156cba37a654f8c505343e55614cf98e20f12c47e07540a2c83442bef new
DEBUG:lnd(16331):2017-11-29 17:25:39.632 [INF] NTFN: New block: height=871, sha=48e5fe3c75c238c60d1506136d5a0c91bddb3be53090984974af79f5a8a81edb
DEBUG:lnd(16331):2017-11-29 17:25:39.634 [INF] CRTR: Pruning channel graph using block 48e5fe3c75c238c60d1506136d5a0c91bddb3be53090984974af79f5a8a81edb (height=871)
DEBUG:bitcoind:2017-11-29 16:25:39 keypool keep 301
DEBUG:lnd(16331):2017-11-29 17:25:39.659 [INF] CRTR: Block 48e5fe3c75c238c60d1506136d5a0c91bddb3be53090984974af79f5a8a81edb (height=871) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block db1ea8a8f579af7449989030e53bdbbd910c5a6d1306150dc638c2753cfee548
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:40 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:40 keypool reserve 302
DEBUG:bitcoind:2017-11-29 16:25:40 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:40 UpdateTip: new best=7aa164e865d266a95fde823f369aacff095ad7b8b9ddb515d765bc68743291bd height=872 version=0x20000000 log2_work=10.769838 tx=975 date='2017-11-29 16:25:40' progress=1.000000 cache=0.2MiB(974txo)
DEBUG:bitcoind:2017-11-29 16:25:40 AddToWallet 5ede51f992f5573209feab4c8ae0032b664c49a16792ee72bbb2362fb2d20716 new
DEBUG:bitcoind:2017-11-29 16:25:40 keypool keep 302
DEBUG:lnd(16331):2017-11-29 17:25:40.799 [INF] CRTR: Pruning channel graph using block 7aa164e865d266a95fde823f369aacff095ad7b8b9ddb515d765bc68743291bd (height=872)
DEBUG:lnd(16331):2017-11-29 17:25:40.799 [INF] NTFN: New block: height=872, sha=7aa164e865d266a95fde823f369aacff095ad7b8b9ddb515d765bc68743291bd
DEBUG:lnd(16331):2017-11-29 17:25:40.806 [INF] CRTR: Block 7aa164e865d266a95fde823f369aacff095ad7b8b9ddb515d765bc68743291bd (height=872) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block bd91327468bc65d715b5ddb9b8d75a09ffac9a363f82de5fa966d265e864a17a
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:41 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:41 keypool reserve 303
DEBUG:bitcoind:2017-11-29 16:25:41 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:41 UpdateTip: new best=54d8dcc820d313671fd761942b9931ae67e6bf9ee2d0fcb6b6d152692873b58a height=873 version=0x20000000 log2_work=10.771489 tx=976 date='2017-11-29 16:25:41' progress=1.000000 cache=0.2MiB(975txo)
DEBUG:bitcoind:2017-11-29 16:25:41 AddToWallet df232e6fb99c7af4ec42d65ccf75083d3fc5e019bbd9631e32042052446e2d37 new
DEBUG:bitcoind:2017-11-29 16:25:41 keypool keep 303
DEBUG:lnd(16331):2017-11-29 17:25:41.754 [INF] CRTR: Pruning channel graph using block 54d8dcc820d313671fd761942b9931ae67e6bf9ee2d0fcb6b6d152692873b58a (height=873)
DEBUG:lnd(16331):2017-11-29 17:25:41.755 [INF] NTFN: New block: height=873, sha=54d8dcc820d313671fd761942b9931ae67e6bf9ee2d0fcb6b6d152692873b58a
DEBUG:lnd(16331):2017-11-29 17:25:41.776 [INF] CRTR: Block 54d8dcc820d313671fd761942b9931ae67e6bf9ee2d0fcb6b6d152692873b58a (height=873) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 8ab573286952d1b6b6fcd0e29ebfe667ae31992b9461d71f6713d320c8dcd854
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:42 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:42 keypool reserve 304
DEBUG:bitcoind:2017-11-29 16:25:42 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:42 UpdateTip: new best=477d43ef079c91b9c5ad2fe80eced461c3e8b6a5d76211b7324cd1186492c5e3 height=874 version=0x20000000 log2_work=10.773139 tx=977 date='2017-11-29 16:25:42' progress=1.000000 cache=0.2MiB(976txo)
DEBUG:bitcoind:2017-11-29 16:25:42 AddToWallet e445172a24f45248cdc90d099c4fdac4f8ac96631443f489031f2e5037e3fe30 new
DEBUG:bitcoind:2017-11-29 16:25:42 keypool keep 304
DEBUG:lnd(16331):2017-11-29 17:25:42.912 [INF] CRTR: Pruning channel graph using block 477d43ef079c91b9c5ad2fe80eced461c3e8b6a5d76211b7324cd1186492c5e3 (height=874)
DEBUG:lnd(16331):2017-11-29 17:25:42.913 [INF] NTFN: New block: height=874, sha=477d43ef079c91b9c5ad2fe80eced461c3e8b6a5d76211b7324cd1186492c5e3
DEBUG:lnd(16331):2017-11-29 17:25:42.921 [INF] CRTR: Block 477d43ef079c91b9c5ad2fe80eced461c3e8b6a5d76211b7324cd1186492c5e3 (height=874) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block e3c5926418d14c32b71162d7a5b6e8c361d4ce0ee82fadc5b9919c07ef437d47
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:43 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:43 keypool reserve 305
DEBUG:bitcoind:2017-11-29 16:25:43 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:43 UpdateTip: new best=798d5250bf438c54bbedd05234097e8434bb9d1d34f8a995cbc1331123c7046d height=875 version=0x20000000 log2_work=10.774787 tx=978 date='2017-11-29 16:25:43' progress=1.000000 cache=0.2MiB(977txo)
DEBUG:bitcoind:2017-11-29 16:25:43 AddToWallet df6074e43b082e59ad3f690fcfe76bd3c45e5a0c73ce8032aa1dc50da08ec7a8 new
DEBUG:bitcoind:2017-11-29 16:25:43 keypool keep 305
DEBUG:lnd(16331):2017-11-29 17:25:43.952 [INF] CRTR: Pruning channel graph using block 798d5250bf438c54bbedd05234097e8434bb9d1d34f8a995cbc1331123c7046d (height=875)
DEBUG:lnd(16331):2017-11-29 17:25:43.953 [INF] NTFN: New block: height=875, sha=798d5250bf438c54bbedd05234097e8434bb9d1d34f8a995cbc1331123c7046d
DEBUG:lnd(16331):2017-11-29 17:25:43.960 [INF] CRTR: Block 798d5250bf438c54bbedd05234097e8434bb9d1d34f8a995cbc1331123c7046d (height=875) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 6d04c7231133c1cb95a9f8341d9dbb34847e093452d0edbb548c43bf50528d79
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:44 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:44 keypool reserve 306
DEBUG:bitcoind:2017-11-29 16:25:44 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:44 UpdateTip: new best=0dd3d3b1dbc6ca272857819106a277f813ca806dfe03befcde8af10344150c11 height=876 version=0x20000000 log2_work=10.776433 tx=979 date='2017-11-29 16:25:44' progress=1.000000 cache=0.2MiB(978txo)
DEBUG:bitcoind:2017-11-29 16:25:44 AddToWallet 5a8874fe0b71adce1e98a4c5dbdb8110963a7af9966aa5e748b87e87e2309982 new
DEBUG:lnd(16331):2017-11-29 17:25:44.906 [INF] CRTR: Pruning channel graph using block 0dd3d3b1dbc6ca272857819106a277f813ca806dfe03befcde8af10344150c11 (height=876)
DEBUG:lnd(16331):2017-11-29 17:25:44.908 [INF] NTFN: New block: height=876, sha=0dd3d3b1dbc6ca272857819106a277f813ca806dfe03befcde8af10344150c11
DEBUG:bitcoind:2017-11-29 16:25:44 keypool keep 306
DEBUG:lnd(16331):2017-11-29 17:25:44.920 [INF] CRTR: Block 0dd3d3b1dbc6ca272857819106a277f813ca806dfe03befcde8af10344150c11 (height=876) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 110c154403f18adefcbe03fe6d80ca13f877a2069181572827cac6dbb1d3d30d
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:45 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:45 keypool reserve 307
DEBUG:bitcoind:2017-11-29 16:25:45 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:45 UpdateTip: new best=7137d1b57020d3571de95aa6897e40d2ede79e19e754b7a1d44191756d7e1e30 height=877 version=0x20000000 log2_work=10.778077 tx=980 date='2017-11-29 16:25:45' progress=1.000000 cache=0.2MiB(979txo)
DEBUG:bitcoind:2017-11-29 16:25:45 AddToWallet b6e9b2e30d12caca01f03a3a154e6057557897bb3611c0c92c112ddbdf380882 new
DEBUG:bitcoind:2017-11-29 16:25:45 keypool keep 307
DEBUG:lnd(16331):2017-11-29 17:25:46.060 [INF] CRTR: Pruning channel graph using block 7137d1b57020d3571de95aa6897e40d2ede79e19e754b7a1d44191756d7e1e30 (height=877)
DEBUG:lnd(16331):2017-11-29 17:25:46.061 [INF] NTFN: New block: height=877, sha=7137d1b57020d3571de95aa6897e40d2ede79e19e754b7a1d44191756d7e1e30
DEBUG:lnd(16331):2017-11-29 17:25:46.081 [INF] CRTR: Block 7137d1b57020d3571de95aa6897e40d2ede79e19e754b7a1d44191756d7e1e30 (height=877) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 301e7e6d759141d4a1b754e7199ee7edd2407e89a65ae91d57d32070b5d13771
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:46 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:46 keypool reserve 308
DEBUG:bitcoind:2017-11-29 16:25:46 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:46 UpdateTip: new best=71062b1c4755659030e279ce8b8c480b67318095850b1b1349a313707b5617da height=878 version=0x20000000 log2_work=10.779719 tx=981 date='2017-11-29 16:25:46' progress=1.000000 cache=0.2MiB(980txo)
DEBUG:bitcoind:2017-11-29 16:25:46 AddToWallet 9edba6fc24b70669abf102bdac6485b8c66b4acdc1df13c538c13098b59d60e9 new
DEBUG:bitcoind:2017-11-29 16:25:47 keypool keep 308
DEBUG:lnd(16331):2017-11-29 17:25:47.104 [INF] CRTR: Pruning channel graph using block 71062b1c4755659030e279ce8b8c480b67318095850b1b1349a313707b5617da (height=878)
DEBUG:lnd(16331):2017-11-29 17:25:47.105 [INF] NTFN: New block: height=878, sha=71062b1c4755659030e279ce8b8c480b67318095850b1b1349a313707b5617da
DEBUG:lnd(16331):2017-11-29 17:25:47.121 [INF] CRTR: Block 71062b1c4755659030e279ce8b8c480b67318095850b1b1349a313707b5617da (height=878) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block da17567b7013a349131b0b85958031670b488c8bce79e230906555471c2b0671
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:48 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:48 keypool reserve 309
DEBUG:bitcoind:2017-11-29 16:25:48 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:48 UpdateTip: new best=327fd34811253ea6c9fc487c490d91324cf1f2238bc9804c88f8eaa1d034e3e8 height=879 version=0x20000000 log2_work=10.78136 tx=982 date='2017-11-29 16:25:48' progress=1.000000 cache=0.2MiB(981txo)
DEBUG:bitcoind:2017-11-29 16:25:48 AddToWallet 4533f80270225425793243fd12f3d7214b8605a0a988ace4f6ca51d95691407e new
DEBUG:bitcoind:2017-11-29 16:25:48 keypool keep 309
DEBUG:lnd(16331):2017-11-29 17:25:48.156 [INF] CRTR: Pruning channel graph using block 327fd34811253ea6c9fc487c490d91324cf1f2238bc9804c88f8eaa1d034e3e8 (height=879)
DEBUG:lnd(16331):2017-11-29 17:25:48.163 [INF] NTFN: New block: height=879, sha=327fd34811253ea6c9fc487c490d91324cf1f2238bc9804c88f8eaa1d034e3e8
DEBUG:lnd(16331):2017-11-29 17:25:48.174 [INF] CRTR: Block 327fd34811253ea6c9fc487c490d91324cf1f2238bc9804c88f8eaa1d034e3e8 (height=879) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block e8e334d0a1eaf8884c80c98b23f2f14c32910d497c48fcc9a63e251148d37f32
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:49 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:49 keypool reserve 310
DEBUG:bitcoind:2017-11-29 16:25:49 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:49 UpdateTip: new best=60bb7799fb7ed3242978df08cb9ee46cbdf1f1ccf760c88b6e8c4768c94d2fd7 height=880 version=0x20000000 log2_work=10.782998 tx=983 date='2017-11-29 16:25:49' progress=1.000000 cache=0.2MiB(982txo)
DEBUG:bitcoind:2017-11-29 16:25:49 AddToWallet e5f7f767a3faa4bc8afba59a9f3b4f23a4b0f2d8a6cc840f5795ea8907f1c9b0 new
DEBUG:bitcoind:2017-11-29 16:25:49 keypool keep 310
DEBUG:proc:2017-11-29 17:25:49.196 [INF] BMGR: Processed 10 blocks in the last 10.52s (10 transactions, height 880, 2017-11-29 17:25:49 +0100 CET)
DEBUG:lnd(16331):2017-11-29 17:25:49.198 [INF] CRTR: Pruning channel graph using block 60bb7799fb7ed3242978df08cb9ee46cbdf1f1ccf760c88b6e8c4768c94d2fd7 (height=880)
DEBUG:lnd(16331):2017-11-29 17:25:49.199 [INF] NTFN: New block: height=880, sha=60bb7799fb7ed3242978df08cb9ee46cbdf1f1ccf760c88b6e8c4768c94d2fd7
DEBUG:lnd(16331):2017-11-29 17:25:49.216 [INF] CRTR: Block 60bb7799fb7ed3242978df08cb9ee46cbdf1f1ccf760c88b6e8c4768c94d2fd7 (height=880) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block d72f4dc968478c6e8bc860f7ccf1f1bd6ce49ecb08df782924d37efb9977bb60
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:50 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:50 keypool reserve 311
DEBUG:bitcoind:2017-11-29 16:25:50 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:50 UpdateTip: new best=5a82a7a83dc305e98c870d79dda80df49efef34cc915294f18495dcbc654ebec height=881 version=0x20000000 log2_work=10.784635 tx=984 date='2017-11-29 16:25:50' progress=1.000000 cache=0.2MiB(983txo)
DEBUG:bitcoind:2017-11-29 16:25:50 AddToWallet 320d20215ce40c8a2e0888438185e2707068fdf435352675a7bd367c31f71509 new
DEBUG:bitcoind:2017-11-29 16:25:50 keypool keep 311
DEBUG:lnd(16331):2017-11-29 17:25:50.135 [INF] CRTR: Pruning channel graph using block 5a82a7a83dc305e98c870d79dda80df49efef34cc915294f18495dcbc654ebec (height=881)
DEBUG:lnd(16331):2017-11-29 17:25:50.136 [INF] NTFN: New block: height=881, sha=5a82a7a83dc305e98c870d79dda80df49efef34cc915294f18495dcbc654ebec
DEBUG:lnd(16331):2017-11-29 17:25:50.154 [INF] CRTR: Block 5a82a7a83dc305e98c870d79dda80df49efef34cc915294f18495dcbc654ebec (height=881) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block eceb54c6cb5d49184f2915c94cf3fe9ef40da8dd790d878ce905c33da8a7825a
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:51 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:51 keypool reserve 312
DEBUG:bitcoind:2017-11-29 16:25:51 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:51 UpdateTip: new best=63bccc54d7f3b017aa94ade880d6a205759567689055d5599e5686f96545d9b1 height=882 version=0x20000000 log2_work=10.78627 tx=985 date='2017-11-29 16:25:51' progress=1.000000 cache=0.2MiB(984txo)
DEBUG:bitcoind:2017-11-29 16:25:51 AddToWallet 2ebd2fa2e2e10c8ac854a6608e15848cb45ecaaa5a2cd5b443261cc571d420bc new
DEBUG:bitcoind:2017-11-29 16:25:51 keypool keep 312
DEBUG:lnd(16331):2017-11-29 17:25:51.290 [INF] CRTR: Pruning channel graph using block 63bccc54d7f3b017aa94ade880d6a205759567689055d5599e5686f96545d9b1 (height=882)
DEBUG:lnd(16331):2017-11-29 17:25:51.291 [INF] NTFN: New block: height=882, sha=63bccc54d7f3b017aa94ade880d6a205759567689055d5599e5686f96545d9b1
DEBUG:lnd(16331):2017-11-29 17:25:51.302 [INF] CRTR: Block 63bccc54d7f3b017aa94ade880d6a205759567689055d5599e5686f96545d9b1 (height=882) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block b1d94565f986569e59d555906867957505a2d680e8ad94aa17b0f3d754ccbc63
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:52 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:52 keypool reserve 313
DEBUG:bitcoind:2017-11-29 16:25:52 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:52 UpdateTip: new best=034cccf9c58b423facdece6d9368bc3d4e4f0e6bf297640e533cf94b3155f6bd height=883 version=0x20000000 log2_work=10.787903 tx=986 date='2017-11-29 16:25:52' progress=1.000000 cache=0.2MiB(985txo)
DEBUG:bitcoind:2017-11-29 16:25:52 AddToWallet 3f7b608d0feb7a2d190ac2672dc8146c0f858e8ac5852c744b97cf4650d75338 new
DEBUG:bitcoind:2017-11-29 16:25:52 keypool keep 313
DEBUG:lnd(16331):2017-11-29 17:25:52.244 [INF] CRTR: Pruning channel graph using block 034cccf9c58b423facdece6d9368bc3d4e4f0e6bf297640e533cf94b3155f6bd (height=883)
DEBUG:lnd(16331):2017-11-29 17:25:52.247 [INF] NTFN: New block: height=883, sha=034cccf9c58b423facdece6d9368bc3d4e4f0e6bf297640e533cf94b3155f6bd
DEBUG:lnd(16331):2017-11-29 17:25:52.254 [INF] CRTR: Block 034cccf9c58b423facdece6d9368bc3d4e4f0e6bf297640e533cf94b3155f6bd (height=883) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block bdf655314bf93c530e6497f26b0e4f4e3dbc68936dcedeac3f428bc5f9cc4c03
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:53 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:53 keypool reserve 314
DEBUG:bitcoind:2017-11-29 16:25:53 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:53 UpdateTip: new best=2ce96ac38f346bf9e468f030adcfbdb6afbb0fe9a37d06ac8e0b504b6edef2f6 height=884 version=0x20000000 log2_work=10.789534 tx=987 date='2017-11-29 16:25:53' progress=1.000000 cache=0.2MiB(986txo)
DEBUG:bitcoind:2017-11-29 16:25:53 AddToWallet c36603f09c8773207e47df1114bb8366a32b156094c7b1fdd898179c30f5f27a new
DEBUG:bitcoind:2017-11-29 16:25:53 keypool keep 314
DEBUG:lnd(16331):2017-11-29 17:25:53.396 [INF] CRTR: Pruning channel graph using block 2ce96ac38f346bf9e468f030adcfbdb6afbb0fe9a37d06ac8e0b504b6edef2f6 (height=884)
DEBUG:lnd(16331):2017-11-29 17:25:53.398 [INF] NTFN: New block: height=884, sha=2ce96ac38f346bf9e468f030adcfbdb6afbb0fe9a37d06ac8e0b504b6edef2f6
DEBUG:lnd(16331):2017-11-29 17:25:53.405 [INF] CRTR: Block 2ce96ac38f346bf9e468f030adcfbdb6afbb0fe9a37d06ac8e0b504b6edef2f6 (height=884) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block f6f2de6e4b500b8eac067da3e90fbbafb6bdcfad30f068e4f96b348fc36ae92c
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:54 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:54 keypool reserve 315
DEBUG:bitcoind:2017-11-29 16:25:54 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:54 UpdateTip: new best=74ad77b5c0b0a4b0add7931fafd09267afb7a77b861becbd22138f90af1770b3 height=885 version=0x20000000 log2_work=10.791163 tx=988 date='2017-11-29 16:25:54' progress=1.000000 cache=0.2MiB(987txo)
DEBUG:bitcoind:2017-11-29 16:25:54 AddToWallet bfb6211f70a2c965b119ed7fa9e64da2aac8356ba959ef4478bd7c81f6f046fb new
DEBUG:bitcoind:2017-11-29 16:25:54 keypool keep 315
DEBUG:lnd(16331):2017-11-29 17:25:54.344 [INF] CRTR: Pruning channel graph using block 74ad77b5c0b0a4b0add7931fafd09267afb7a77b861becbd22138f90af1770b3 (height=885)
DEBUG:lnd(16331):2017-11-29 17:25:54.344 [INF] NTFN: New block: height=885, sha=74ad77b5c0b0a4b0add7931fafd09267afb7a77b861becbd22138f90af1770b3
DEBUG:lnd(16331):2017-11-29 17:25:54.362 [INF] CRTR: Block 74ad77b5c0b0a4b0add7931fafd09267afb7a77b861becbd22138f90af1770b3 (height=885) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block b37017af908f1322bdec1b867ba7b7af6792d0af1f93d7adb0a4b0c0b577ad74
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:55 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:55 keypool reserve 316
DEBUG:bitcoind:2017-11-29 16:25:55 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:55 UpdateTip: new best=0b845041d324e0399e507c487df540aa80ecbee4062271d0502940b97b2e8867 height=886 version=0x20000000 log2_work=10.79279 tx=989 date='2017-11-29 16:25:55' progress=1.000000 cache=0.2MiB(988txo)
DEBUG:bitcoind:2017-11-29 16:25:55 AddToWallet 77ab686782a63c7bae36bb21a4857676ae7dcb28a875c778667a5281108e584b new
DEBUG:bitcoind:2017-11-29 16:25:55 keypool keep 316
DEBUG:lnd(16331):2017-11-29 17:25:55.518 [INF] CRTR: Pruning channel graph using block 0b845041d324e0399e507c487df540aa80ecbee4062271d0502940b97b2e8867 (height=886)
DEBUG:lnd(16331):2017-11-29 17:25:55.518 [INF] NTFN: New block: height=886, sha=0b845041d324e0399e507c487df540aa80ecbee4062271d0502940b97b2e8867
DEBUG:lnd(16331):2017-11-29 17:25:55.529 [INF] CRTR: Block 0b845041d324e0399e507c487df540aa80ecbee4062271d0502940b97b2e8867 (height=886) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 67882e7bb9402950d0712206e4beec80aa40f57d487c509e39e024d34150840b
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:56 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:56 keypool reserve 317
DEBUG:bitcoind:2017-11-29 16:25:56 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:56 UpdateTip: new best=431aec58e69a0908a803799e34970905a7a4763b7907a2934075e6c73641602a height=887 version=0x20000000 log2_work=10.794416 tx=990 date='2017-11-29 16:25:56' progress=1.000000 cache=0.2MiB(989txo)
DEBUG:bitcoind:2017-11-29 16:25:56 AddToWallet 5d18d38ace052f8308d3b6e2ec52341597f5f07d0c1b51c2dc06a8c8343b44e8 new
DEBUG:lnd(16331):2017-11-29 17:25:56.459 [INF] CRTR: Pruning channel graph using block 431aec58e69a0908a803799e34970905a7a4763b7907a2934075e6c73641602a (height=887)
DEBUG:lnd(16331):2017-11-29 17:25:56.460 [INF] NTFN: New block: height=887, sha=431aec58e69a0908a803799e34970905a7a4763b7907a2934075e6c73641602a
DEBUG:bitcoind:2017-11-29 16:25:56 keypool keep 317
DEBUG:lnd(16331):2017-11-29 17:25:56.467 [INF] CRTR: Block 431aec58e69a0908a803799e34970905a7a4763b7907a2934075e6c73641602a (height=887) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 2a604136c7e6754093a207793b76a4a7050997349e7903a808099ae658ec1a43
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:57 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:57 keypool reserve 318
DEBUG:bitcoind:2017-11-29 16:25:57 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:57 UpdateTip: new best=055f88816aed332b709d5c3fab243e3cc2ef543fdce70ec0cc642416dec6c792 height=888 version=0x20000000 log2_work=10.79604 tx=991 date='2017-11-29 16:25:57' progress=1.000000 cache=0.2MiB(990txo)
DEBUG:bitcoind:2017-11-29 16:25:57 AddToWallet 2b84e1f4c72780e96d6aa38e9394381ac04a58dfc3f3605b4263707b52e5216b new
DEBUG:bitcoind:2017-11-29 16:25:57 keypool keep 318
DEBUG:lnd(16331):2017-11-29 17:25:57.514 [INF] CRTR: Pruning channel graph using block 055f88816aed332b709d5c3fab243e3cc2ef543fdce70ec0cc642416dec6c792 (height=888)
DEBUG:lnd(16331):2017-11-29 17:25:57.515 [INF] NTFN: New block: height=888, sha=055f88816aed332b709d5c3fab243e3cc2ef543fdce70ec0cc642416dec6c792
DEBUG:lnd(16331):2017-11-29 17:25:57.528 [INF] CRTR: Block 055f88816aed332b709d5c3fab243e3cc2ef543fdce70ec0cc642416dec6c792 (height=888) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 92c7c6de162464ccc00ee7dc3f54efc23c3e24ab3f5c9d702b33ed6a81885f05
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:58 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:58 keypool reserve 319
DEBUG:bitcoind:2017-11-29 16:25:58 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:58 UpdateTip: new best=72b2b4fe54dab5cceec6610950f103b6747782acc7edfb5a7bfc0e256b0d7b98 height=889 version=0x20000000 log2_work=10.797662 tx=992 date='2017-11-29 16:25:58' progress=1.000000 cache=0.2MiB(991txo)
DEBUG:bitcoind:2017-11-29 16:25:58 AddToWallet a334096c00552c514a567ef48ca4c85d4d3622528decd8d11a6af74a417f03c8 new
DEBUG:bitcoind:2017-11-29 16:25:58 keypool keep 319
DEBUG:lnd(16331):2017-11-29 17:25:58.669 [INF] CRTR: Pruning channel graph using block 72b2b4fe54dab5cceec6610950f103b6747782acc7edfb5a7bfc0e256b0d7b98 (height=889)
DEBUG:lnd(16331):2017-11-29 17:25:58.670 [INF] NTFN: New block: height=889, sha=72b2b4fe54dab5cceec6610950f103b6747782acc7edfb5a7bfc0e256b0d7b98
DEBUG:lnd(16331):2017-11-29 17:25:58.683 [INF] CRTR: Block 72b2b4fe54dab5cceec6610950f103b6747782acc7edfb5a7bfc0e256b0d7b98 (height=889) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 987b0d6b250efc7b5afbedc7ac827774b603f1500961c6eeccb5da54feb4b272
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:25:59 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:25:59 keypool reserve 320
DEBUG:bitcoind:2017-11-29 16:25:59 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:25:59 UpdateTip: new best=04c31b0d303526d1396a7e6d5f5f3827ead266132593fc5f6c1eeb96f5879cea height=890 version=0x20000000 log2_work=10.799282 tx=993 date='2017-11-29 16:25:59' progress=1.000000 cache=0.2MiB(992txo)
DEBUG:bitcoind:2017-11-29 16:25:59 AddToWallet 01357545fec7c5753db681418b386c0967fe636d534008acafcc45cd025cfb7d new
DEBUG:bitcoind:2017-11-29 16:25:59 keypool keep 320
DEBUG:proc:2017-11-29 17:25:59.624 [INF] BMGR: Processed 10 blocks in the last 10.42s (10 transactions, height 890, 2017-11-29 17:25:59 +0100 CET)
DEBUG:lnd(16331):2017-11-29 17:25:59.626 [INF] CRTR: Pruning channel graph using block 04c31b0d303526d1396a7e6d5f5f3827ead266132593fc5f6c1eeb96f5879cea (height=890)
DEBUG:lnd(16331):2017-11-29 17:25:59.626 [INF] NTFN: New block: height=890, sha=04c31b0d303526d1396a7e6d5f5f3827ead266132593fc5f6c1eeb96f5879cea
DEBUG:lnd(16331):2017-11-29 17:25:59.644 [INF] CRTR: Block 04c31b0d303526d1396a7e6d5f5f3827ead266132593fc5f6c1eeb96f5879cea (height=890) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block ea9c87f596eb1e6c5ffc93251366d2ea27385f5f6d7e6a39d12635300d1bc304
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:00 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:00 keypool reserve 321
DEBUG:bitcoind:2017-11-29 16:26:00 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:00 UpdateTip: new best=668f8982df365068da4beea1911d4117673d9f862e4821f3d97a3365836c221a height=891 version=0x20000000 log2_work=10.8009 tx=994 date='2017-11-29 16:26:00' progress=1.000000 cache=0.2MiB(993txo)
DEBUG:bitcoind:2017-11-29 16:26:00 AddToWallet 4189184d3994b98c0227e933a025c1bf535d33d81a9b80dfa5175bb7d3f4ec18 new
DEBUG:bitcoind:2017-11-29 16:26:00 keypool keep 321
DEBUG:lnd(16331):2017-11-29 17:26:00.781 [INF] CRTR: Pruning channel graph using block 668f8982df365068da4beea1911d4117673d9f862e4821f3d97a3365836c221a (height=891)
DEBUG:lnd(16331):2017-11-29 17:26:00.786 [INF] NTFN: New block: height=891, sha=668f8982df365068da4beea1911d4117673d9f862e4821f3d97a3365836c221a
DEBUG:lnd(16331):2017-11-29 17:26:00.791 [INF] CRTR: Block 668f8982df365068da4beea1911d4117673d9f862e4821f3d97a3365836c221a (height=891) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 1a226c8365337ad9f321482e869f3d6717411d91a1ee4bda685036df82898f66
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:01 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:01 keypool reserve 322
DEBUG:bitcoind:2017-11-29 16:26:01 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:01 UpdateTip: new best=12ca5426e3e3f9c259201b60cc1a2798abbdcd8638ab5423637f06717641c930 height=892 version=0x20000000 log2_work=10.802516 tx=995 date='2017-11-29 16:26:01' progress=1.000000 cache=0.2MiB(994txo)
DEBUG:bitcoind:2017-11-29 16:26:01 AddToWallet 0f1c995790594e512e01374d2610b42b448c8a06a9d8d8d037769c85d52371d9 new
DEBUG:lnd(16331):2017-11-29 17:26:01.718 [INF] CRTR: Pruning channel graph using block 12ca5426e3e3f9c259201b60cc1a2798abbdcd8638ab5423637f06717641c930 (height=892)
DEBUG:lnd(16331):2017-11-29 17:26:01.722 [INF] NTFN: New block: height=892, sha=12ca5426e3e3f9c259201b60cc1a2798abbdcd8638ab5423637f06717641c930
DEBUG:bitcoind:2017-11-29 16:26:01 keypool keep 322
DEBUG:lnd(16331):2017-11-29 17:26:01.728 [INF] CRTR: Block 12ca5426e3e3f9c259201b60cc1a2798abbdcd8638ab5423637f06717641c930 (height=892) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 30c9417671067f632354ab3886cdbdab98271acc601b2059c2f9e3e32654ca12
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:02 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:02 keypool reserve 323
DEBUG:bitcoind:2017-11-29 16:26:02 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:02 UpdateTip: new best=48452cc50c5105bf0740024af2884939a716c4dbd8a884d007c8e6891d079d03 height=893 version=0x20000000 log2_work=10.804131 tx=996 date='2017-11-29 16:26:02' progress=1.000000 cache=0.2MiB(995txo)
DEBUG:bitcoind:2017-11-29 16:26:02 AddToWallet ab1fa37e66bce53eaa74515fc0c79d6e289731535d3034b4849b773c5b76f494 new
DEBUG:bitcoind:2017-11-29 16:26:02 keypool keep 323
DEBUG:proc:lightningd(1473): Adding block 039d071d89e6c807d084a8d8dbc416a7394988f24a024007bf05510cc52c4548
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:lnd(16331):2017-11-29 17:26:02.898 [INF] CRTR: Pruning channel graph using block 48452cc50c5105bf0740024af2884939a716c4dbd8a884d007c8e6891d079d03 (height=893)
DEBUG:lnd(16331):2017-11-29 17:26:02.899 [INF] NTFN: New block: height=893, sha=48452cc50c5105bf0740024af2884939a716c4dbd8a884d007c8e6891d079d03
DEBUG:lnd(16331):2017-11-29 17:26:02.906 [INF] CRTR: Block 48452cc50c5105bf0740024af2884939a716c4dbd8a884d007c8e6891d079d03 (height=893) closed 0 channels
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:03 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:03 keypool reserve 324
DEBUG:bitcoind:2017-11-29 16:26:03 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:03 UpdateTip: new best=5c810cc41c6c2e96c2245d9c0030172dbcf626aba03bc644deb1a7e7000b5c22 height=894 version=0x20000000 log2_work=10.805744 tx=997 date='2017-11-29 16:26:03' progress=1.000000 cache=0.2MiB(996txo)
DEBUG:bitcoind:2017-11-29 16:26:03 AddToWallet 8bde0c4d368a64996abe8215b842b00bf66a451a03bdb792b5f7ae37df908ba6 new
DEBUG:bitcoind:2017-11-29 16:26:03 keypool keep 324
DEBUG:lnd(16331):2017-11-29 17:26:03.845 [INF] CRTR: Pruning channel graph using block 5c810cc41c6c2e96c2245d9c0030172dbcf626aba03bc644deb1a7e7000b5c22 (height=894)
DEBUG:lnd(16331):2017-11-29 17:26:03.847 [INF] NTFN: New block: height=894, sha=5c810cc41c6c2e96c2245d9c0030172dbcf626aba03bc644deb1a7e7000b5c22
DEBUG:lnd(16331):2017-11-29 17:26:03.853 [INF] CRTR: Block 5c810cc41c6c2e96c2245d9c0030172dbcf626aba03bc644deb1a7e7000b5c22 (height=894) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 225c0b00e7a7b1de44c63ba0ab26f6bc2d1730009c5d24c2962e6c1cc40c815c
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:04 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:04 keypool reserve 325
DEBUG:bitcoind:2017-11-29 16:26:04 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:04 UpdateTip: new best=72bb2d0b3b473c21926be83397f0da15c1837dd993390c4aea5b9e7cd21dfe25 height=895 version=0x20000000 log2_work=10.807355 tx=998 date='2017-11-29 16:26:04' progress=1.000000 cache=0.2MiB(997txo)
DEBUG:bitcoind:2017-11-29 16:26:04 AddToWallet e8d702968d193e6a423a77336c55a7d0c0d1e7b20a076a7baa80de1351bcf6b1 new
DEBUG:bitcoind:2017-11-29 16:26:04 keypool keep 325
DEBUG:proc:lightningd(1473): Adding block 25fe1dd27c9e5bea4a0c3993d97d83c115daf09733e86b92213c473b0b2dbb72
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 17:26:05.004 [INF] CRTR: Pruning channel graph using block 72bb2d0b3b473c21926be83397f0da15c1837dd993390c4aea5b9e7cd21dfe25 (height=895)
DEBUG:lnd(16331):2017-11-29 17:26:05.006 [INF] NTFN: New block: height=895, sha=72bb2d0b3b473c21926be83397f0da15c1837dd993390c4aea5b9e7cd21dfe25
DEBUG:lnd(16331):2017-11-29 17:26:05.015 [INF] CRTR: Block 72bb2d0b3b473c21926be83397f0da15c1837dd993390c4aea5b9e7cd21dfe25 (height=895) closed 0 channels
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:05 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:05 keypool reserve 326
DEBUG:bitcoind:2017-11-29 16:26:05 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:05 UpdateTip: new best=4d744c59188726eaf8b3253ec208f45a8ba6a705ba609d5c6076f19cf49c1f26 height=896 version=0x20000000 log2_work=10.808964 tx=999 date='2017-11-29 16:26:05' progress=1.000000 cache=0.2MiB(998txo)
DEBUG:bitcoind:2017-11-29 16:26:05 AddToWallet 88851bde405a9aa497eb359024b9e82f79df12371a036422ef0ce01a49b12a1c new
DEBUG:bitcoind:2017-11-29 16:26:05 keypool keep 326
DEBUG:lnd(16331):2017-11-29 17:26:05.958 [INF] CRTR: Pruning channel graph using block 4d744c59188726eaf8b3253ec208f45a8ba6a705ba609d5c6076f19cf49c1f26 (height=896)
DEBUG:lnd(16331):2017-11-29 17:26:05.960 [INF] NTFN: New block: height=896, sha=4d744c59188726eaf8b3253ec208f45a8ba6a705ba609d5c6076f19cf49c1f26
DEBUG:lnd(16331):2017-11-29 17:26:05.972 [INF] CRTR: Block 4d744c59188726eaf8b3253ec208f45a8ba6a705ba609d5c6076f19cf49c1f26 (height=896) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 261f9cf49cf176605c9d60ba05a7a68b5af408c23e25b3f8ea268718594c744d
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:06 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:bitcoind:2017-11-29 16:26:06 keypool reserve 327
DEBUG:bitcoind:2017-11-29 16:26:06 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:07 UpdateTip: new best=79485be2daa09218194e1b1234b79b2c1148ac59ea7b10518c9c22996688cf03 height=897 version=0x20000000 log2_work=10.810572 tx=1000 date='2017-11-29 16:26:06' progress=1.000000 cache=0.2MiB(999txo)
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
DEBUG:bitcoind:2017-11-29 16:26:07 AddToWallet d9df4e883d701b79675fffccdfc2cbe1a70e3540cea7a9595d816eb46f77d903 new
DEBUG:bitcoind:2017-11-29 16:26:07 keypool keep 327
DEBUG:lnd(16331):2017-11-29 17:26:07.108 [INF] CRTR: Pruning channel graph using block 79485be2daa09218194e1b1234b79b2c1148ac59ea7b10518c9c22996688cf03 (height=897)
DEBUG:lnd(16331):2017-11-29 17:26:07.109 [INF] NTFN: New block: height=897, sha=79485be2daa09218194e1b1234b79b2c1148ac59ea7b10518c9c22996688cf03
DEBUG:lnd(16331):2017-11-29 17:26:07.116 [INF] CRTR: Block 79485be2daa09218194e1b1234b79b2c1148ac59ea7b10518c9c22996688cf03 (height=897) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 03cf886699229c8c51107bea59ac48112c9bb734121b4e191892a0dae25b4879
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:bitcoind:2017-11-29 16:26:08 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
DEBUG:bitcoind:2017-11-29 16:26:08 keypool reserve 328
DEBUG:bitcoind:2017-11-29 16:26:08 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:08 UpdateTip: new best=4004271780377b1480ce94d80921eb6c79e6286162630a75f81c924d1815be1f height=898 version=0x20000000 log2_work=10.812177 tx=1001 date='2017-11-29 16:26:08' progress=1.000000 cache=0.2MiB(1000txo)
DEBUG:bitcoind:2017-11-29 16:26:08 AddToWallet 003711bad1f383dc04a42e8f33960a5852617339fcc0909175cfb4a465226fe1 new
DEBUG:bitcoind:2017-11-29 16:26:08 keypool keep 328
DEBUG:lnd(16331):2017-11-29 17:26:08.150 [INF] CRTR: Pruning channel graph using block 4004271780377b1480ce94d80921eb6c79e6286162630a75f81c924d1815be1f (height=898)
DEBUG:lnd(16331):2017-11-29 17:26:08.151 [INF] NTFN: New block: height=898, sha=4004271780377b1480ce94d80921eb6c79e6286162630a75f81c924d1815be1f
DEBUG:lnd(16331):2017-11-29 17:26:08.168 [INF] CRTR: Block 4004271780377b1480ce94d80921eb6c79e6286162630a75f81c924d1815be1f (height=898) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 1fbe15184d921cf8750a63626128e6796ceb2109d894ce80147b378017270440
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:09 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:09 keypool reserve 329
DEBUG:bitcoind:2017-11-29 16:26:09 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:09 UpdateTip: new best=5a9482034d53648ace262966593857b96dcc905491d9092fad05ee0df28be4e0 height=899 version=0x20000000 log2_work=10.813781 tx=1002 date='2017-11-29 16:26:09' progress=1.000000 cache=0.2MiB(1001txo)
DEBUG:bitcoind:2017-11-29 16:26:09 AddToWallet 3721de13ffe849e47dae272fb3b2663fe980515cb3e5a664a9b27ec56000b59c new
DEBUG:bitcoind:2017-11-29 16:26:09 keypool keep 329
DEBUG:lnd(16331):2017-11-29 17:26:09.189 [INF] NTFN: New block: height=899, sha=5a9482034d53648ace262966593857b96dcc905491d9092fad05ee0df28be4e0
DEBUG:lnd(16331):2017-11-29 17:26:09.190 [INF] CRTR: Pruning channel graph using block 5a9482034d53648ace262966593857b96dcc905491d9092fad05ee0df28be4e0 (height=899)
DEBUG:lnd(16331):2017-11-29 17:26:09.219 [INF] CRTR: Block 5a9482034d53648ace262966593857b96dcc905491d9092fad05ee0df28be4e0 (height=899) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block e0e48bf20dee05ad2f09d9915490cc6db9573859662926ce8a64534d0382945a
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:10 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:10 keypool reserve 330
DEBUG:bitcoind:2017-11-29 16:26:10 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:10 UpdateTip: new best=60f7a9671f84fbd831013af03a93d53310dbedc56cc02a5032cc4261ed4e7b98 height=900 version=0x20000000 log2_work=10.815383 tx=1003 date='2017-11-29 16:26:10' progress=1.000000 cache=0.2MiB(1002txo)
DEBUG:bitcoind:2017-11-29 16:26:10 AddToWallet a1698f2fbe483b333e1082e20ead6bbec4474ef5c05768308a69b1f47d7241e7 new
DEBUG:bitcoind:2017-11-29 16:26:10 keypool keep 330
DEBUG:proc:2017-11-29 17:26:10.234 [INF] BMGR: Processed 10 blocks in the last 10.6s (10 transactions, height 900, 2017-11-29 17:26:10 +0100 CET)
DEBUG:lnd(16331):2017-11-29 17:26:10.236 [INF] CRTR: Pruning channel graph using block 60f7a9671f84fbd831013af03a93d53310dbedc56cc02a5032cc4261ed4e7b98 (height=900)
DEBUG:lnd(16331):2017-11-29 17:26:10.236 [INF] NTFN: New block: height=900, sha=60f7a9671f84fbd831013af03a93d53310dbedc56cc02a5032cc4261ed4e7b98
DEBUG:lnd(16331):2017-11-29 17:26:10.247 [INF] CRTR: Block 60f7a9671f84fbd831013af03a93d53310dbedc56cc02a5032cc4261ed4e7b98 (height=900) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 987b4eed6142cc32502ac06cc5eddb1033d5933af03a0131d8fb841f67a9f760
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:11 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:11 keypool reserve 331
DEBUG:bitcoind:2017-11-29 16:26:11 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:11 UpdateTip: new best=295bb16511f571d8b0776b5453f7e3a2c8d8f216dd829a7341c5a4a1e7fcd372 height=901 version=0x20000000 log2_work=10.816984 tx=1004 date='2017-11-29 16:26:11' progress=1.000000 cache=0.2MiB(1003txo)
DEBUG:bitcoind:2017-11-29 16:26:11 AddToWallet 04c44d486e6d29a4c7e4a6bd1c6444494a3a536d1b2207677ef8d8b110429a34 new
DEBUG:bitcoind:2017-11-29 16:26:11 keypool keep 331
DEBUG:lnd(16331):2017-11-29 17:26:11.193 [INF] CRTR: Pruning channel graph using block 295bb16511f571d8b0776b5453f7e3a2c8d8f216dd829a7341c5a4a1e7fcd372 (height=901)
DEBUG:lnd(16331):2017-11-29 17:26:11.194 [INF] NTFN: New block: height=901, sha=295bb16511f571d8b0776b5453f7e3a2c8d8f216dd829a7341c5a4a1e7fcd372
DEBUG:lnd(16331):2017-11-29 17:26:11.210 [INF] CRTR: Block 295bb16511f571d8b0776b5453f7e3a2c8d8f216dd829a7341c5a4a1e7fcd372 (height=901) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 72d3fce7a1a4c541739a82dd16f2d8c8a2e3f753546b77b0d871f51165b15b29
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:12 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:12 keypool reserve 332
DEBUG:bitcoind:2017-11-29 16:26:12 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:12 UpdateTip: new best=4e3ae1d7f497a072bdc72040dd0a3b0a30c12c93a83b908da0e4b74d8bb036bf height=902 version=0x20000000 log2_work=10.818582 tx=1005 date='2017-11-29 16:26:12' progress=1.000000 cache=0.2MiB(1004txo)
DEBUG:bitcoind:2017-11-29 16:26:12 AddToWallet 10db301e902f6735fd790307dfe6e497fc5d83e4687f36f48c783790e55221da new
DEBUG:bitcoind:2017-11-29 16:26:12 keypool keep 332
DEBUG:lnd(16331):2017-11-29 17:26:12.249 [INF] CRTR: Pruning channel graph using block 4e3ae1d7f497a072bdc72040dd0a3b0a30c12c93a83b908da0e4b74d8bb036bf (height=902)
DEBUG:lnd(16331):2017-11-29 17:26:12.250 [INF] NTFN: New block: height=902, sha=4e3ae1d7f497a072bdc72040dd0a3b0a30c12c93a83b908da0e4b74d8bb036bf
DEBUG:lnd(16331):2017-11-29 17:26:12.262 [INF] CRTR: Block 4e3ae1d7f497a072bdc72040dd0a3b0a30c12c93a83b908da0e4b74d8bb036bf (height=902) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block bf36b08b4db7e4a08d903ba8932cc1300a3b0add4020c7bd72a097f4d7e13a4e
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:13 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:13 keypool reserve 333
DEBUG:bitcoind:2017-11-29 16:26:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:13 UpdateTip: new best=7c9ab5978880434a2cfdb6bfda3076e91533e323dce7202a6e64843e0a91e5c0 height=903 version=0x20000000 log2_work=10.820179 tx=1006 date='2017-11-29 16:26:13' progress=1.000000 cache=0.2MiB(1005txo)
DEBUG:bitcoind:2017-11-29 16:26:13 AddToWallet 40f8ecc1680f97cd1298fab04a123aac0865b2511d332bc81a6a2b2117da2636 new
DEBUG:bitcoind:2017-11-29 16:26:13 keypool keep 333
DEBUG:lnd(16331):2017-11-29 17:26:13.322 [INF] NTFN: New block: height=903, sha=7c9ab5978880434a2cfdb6bfda3076e91533e323dce7202a6e64843e0a91e5c0
DEBUG:lnd(16331):2017-11-29 17:26:13.324 [INF] CRTR: Pruning channel graph using block 7c9ab5978880434a2cfdb6bfda3076e91533e323dce7202a6e64843e0a91e5c0 (height=903)
DEBUG:lnd(16331):2017-11-29 17:26:13.357 [INF] CRTR: Block 7c9ab5978880434a2cfdb6bfda3076e91533e323dce7202a6e64843e0a91e5c0 (height=903) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block c0e5910a3e84646e2a20e7dc23e33315e97630dabfb6fd2c4a43808897b59a7c
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:14 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:14 keypool reserve 334
DEBUG:bitcoind:2017-11-29 16:26:14 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:14 UpdateTip: new best=483dae0b35f8f0308b26cce2d02c39ba1a5c11a44ce8720b4301ffc6931ed073 height=904 version=0x20000000 log2_work=10.821774 tx=1007 date='2017-11-29 16:26:14' progress=1.000000 cache=0.2MiB(1006txo)
DEBUG:bitcoind:2017-11-29 16:26:14 AddToWallet a9dab2c59710d72a09226d487d37cb7a7ac2e577c3084b27524b9fab3ad01c1b new
DEBUG:bitcoind:2017-11-29 16:26:14 keypool keep 334
DEBUG:lnd(16331):2017-11-29 17:26:14.460 [INF] CRTR: Pruning channel graph using block 483dae0b35f8f0308b26cce2d02c39ba1a5c11a44ce8720b4301ffc6931ed073 (height=904)
DEBUG:lnd(16331):2017-11-29 17:26:14.460 [INF] NTFN: New block: height=904, sha=483dae0b35f8f0308b26cce2d02c39ba1a5c11a44ce8720b4301ffc6931ed073
DEBUG:lnd(16331):2017-11-29 17:26:14.471 [INF] CRTR: Block 483dae0b35f8f0308b26cce2d02c39ba1a5c11a44ce8720b4301ffc6931ed073 (height=904) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 73d01e93c6ff01430b72e84ca4115c1aba392cd0e2cc268b30f0f8350bae3d48
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:15 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:15 keypool reserve 335
DEBUG:bitcoind:2017-11-29 16:26:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:15 UpdateTip: new best=7259d3b5d21bb3e960fb1d47f9ee0f90e37e5713e4d0788a24b53f31e8dce755 height=905 version=0x20000000 log2_work=10.823367 tx=1008 date='2017-11-29 16:26:15' progress=1.000000 cache=0.2MiB(1007txo)
DEBUG:bitcoind:2017-11-29 16:26:15 AddToWallet 06383bfb3710895801b531d13eac398cb927bbb710a0d52c706a1f9d1a0bfca2 new
DEBUG:bitcoind:2017-11-29 16:26:15 keypool keep 335
DEBUG:lnd(16331):2017-11-29 17:26:15.523 [INF] NTFN: New block: height=905, sha=7259d3b5d21bb3e960fb1d47f9ee0f90e37e5713e4d0788a24b53f31e8dce755
DEBUG:lnd(16331):2017-11-29 17:26:15.523 [INF] CRTR: Pruning channel graph using block 7259d3b5d21bb3e960fb1d47f9ee0f90e37e5713e4d0788a24b53f31e8dce755 (height=905)
DEBUG:lnd(16331):2017-11-29 17:26:15.557 [INF] CRTR: Block 7259d3b5d21bb3e960fb1d47f9ee0f90e37e5713e4d0788a24b53f31e8dce755 (height=905) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 55e7dce8313fb5248a78d0e413577ee3900feef9471dfb60e9b31bd2b5d35972
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:16 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:16 keypool reserve 336
DEBUG:bitcoind:2017-11-29 16:26:16 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:16 UpdateTip: new best=2bfd30fd911fddab3cea1b955a0edd2fd59661ed1ddff2df53a5c08feed5812b height=906 version=0x20000000 log2_work=10.824959 tx=1009 date='2017-11-29 16:26:16' progress=1.000000 cache=0.2MiB(1008txo)
DEBUG:bitcoind:2017-11-29 16:26:16 AddToWallet dc3012f90595c627f741dbfcba909094f270fd860e0d94942e840498e6cd6d52 new
DEBUG:bitcoind:2017-11-29 16:26:16 keypool keep 336
DEBUG:lnd(16331):2017-11-29 17:26:16.450 [INF] CRTR: Pruning channel graph using block 2bfd30fd911fddab3cea1b955a0edd2fd59661ed1ddff2df53a5c08feed5812b (height=906)
DEBUG:lnd(16331):2017-11-29 17:26:16.451 [INF] NTFN: New block: height=906, sha=2bfd30fd911fddab3cea1b955a0edd2fd59661ed1ddff2df53a5c08feed5812b
DEBUG:lnd(16331):2017-11-29 17:26:16.461 [INF] CRTR: Block 2bfd30fd911fddab3cea1b955a0edd2fd59661ed1ddff2df53a5c08feed5812b (height=906) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 2b81d5ee8fc0a553dff2df1ded6196d52fdd0e5a951bea3cabdd1f91fd30fd2b
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:17 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:17 keypool reserve 337
DEBUG:bitcoind:2017-11-29 16:26:17 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:17 UpdateTip: new best=46a2f51b4eb2aab1aa79390404b6dbb0ddb8e2db5d1eef1d9afe46260ae6e617 height=907 version=0x20000000 log2_work=10.826548 tx=1010 date='2017-11-29 16:26:17' progress=1.000000 cache=0.2MiB(1009txo)
DEBUG:bitcoind:2017-11-29 16:26:17 AddToWallet b6984838219bd294c20832591092809dbeedebfe3882b3d8799fa3f4295b527b new
DEBUG:bitcoind:2017-11-29 16:26:17 keypool keep 337
DEBUG:lnd(16331):2017-11-29 17:26:17.511 [INF] CRTR: Pruning channel graph using block 46a2f51b4eb2aab1aa79390404b6dbb0ddb8e2db5d1eef1d9afe46260ae6e617 (height=907)
DEBUG:lnd(16331):2017-11-29 17:26:17.512 [INF] NTFN: New block: height=907, sha=46a2f51b4eb2aab1aa79390404b6dbb0ddb8e2db5d1eef1d9afe46260ae6e617
DEBUG:lnd(16331):2017-11-29 17:26:17.525 [INF] CRTR: Block 46a2f51b4eb2aab1aa79390404b6dbb0ddb8e2db5d1eef1d9afe46260ae6e617 (height=907) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 17e6e60a2646fe9a1def1e5ddbe2b8ddb0dbb604043979aab1aab24e1bf5a246
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:18 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:18 keypool reserve 338
DEBUG:bitcoind:2017-11-29 16:26:18 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:18 UpdateTip: new best=63bc04bb00fb73f6f079ea0499d19757dc78ead59fd121d44a784f5c45e6c149 height=908 version=0x20000000 log2_work=10.828136 tx=1011 date='2017-11-29 16:26:18' progress=1.000000 cache=0.2MiB(1010txo)
DEBUG:bitcoind:2017-11-29 16:26:18 AddToWallet e1bc272289f0f329319e9e679e5047480dee42305773484478ec324f94f2880b new
DEBUG:bitcoind:2017-11-29 16:26:18 keypool keep 338
DEBUG:lnd(16331):2017-11-29 17:26:18.571 [INF] CRTR: Pruning channel graph using block 63bc04bb00fb73f6f079ea0499d19757dc78ead59fd121d44a784f5c45e6c149 (height=908)
DEBUG:lnd(16331):2017-11-29 17:26:18.572 [INF] NTFN: New block: height=908, sha=63bc04bb00fb73f6f079ea0499d19757dc78ead59fd121d44a784f5c45e6c149
DEBUG:lnd(16331):2017-11-29 17:26:18.586 [INF] CRTR: Block 63bc04bb00fb73f6f079ea0499d19757dc78ead59fd121d44a784f5c45e6c149 (height=908) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 49c1e6455c4f784ad421d19fd5ea78dc5797d19904ea79f0f673fb00bb04bc63
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:19 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:19 keypool reserve 339
DEBUG:bitcoind:2017-11-29 16:26:19 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:19 UpdateTip: new best=7366289787c899ca2eda5cbf01380026a0c551c159882e46501ce1ce98c609c4 height=909 version=0x20000000 log2_work=10.829723 tx=1012 date='2017-11-29 16:26:19' progress=1.000000 cache=0.2MiB(1011txo)
DEBUG:bitcoind:2017-11-29 16:26:19 AddToWallet 9af40fd8aa6d849d69e96b7e60b9edc682ade68a93b0d7e5cafb2506f9df8e37 new
DEBUG:bitcoind:2017-11-29 16:26:19 keypool keep 339
DEBUG:lnd(16331):2017-11-29 17:26:19.631 [INF] CRTR: Pruning channel graph using block 7366289787c899ca2eda5cbf01380026a0c551c159882e46501ce1ce98c609c4 (height=909)
DEBUG:lnd(16331):2017-11-29 17:26:19.632 [INF] NTFN: New block: height=909, sha=7366289787c899ca2eda5cbf01380026a0c551c159882e46501ce1ce98c609c4
DEBUG:lnd(16331):2017-11-29 17:26:19.647 [INF] CRTR: Block 7366289787c899ca2eda5cbf01380026a0c551c159882e46501ce1ce98c609c4 (height=909) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block c409c698cee11c50462e8859c151c5a026003801bf5cda2eca99c88797286673
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:20 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:20 keypool reserve 340
DEBUG:bitcoind:2017-11-29 16:26:20 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:20 UpdateTip: new best=08297e03045fec6c01fc4bb015821e4cfa6869219e0e6e3a4a56420adfadf92b height=910 version=0x20000000 log2_work=10.831307 tx=1013 date='2017-11-29 16:26:20' progress=1.000000 cache=0.2MiB(1012txo)
DEBUG:bitcoind:2017-11-29 16:26:20 AddToWallet 0aaddba1c980cbe2741b456ec763d1fa2566bc3ccfc4eb83f7b6770696b74e4c new
DEBUG:bitcoind:2017-11-29 16:26:20 keypool keep 340
DEBUG:proc:2017-11-29 17:26:20.775 [INF] BMGR: Processed 10 blocks in the last 10.54s (10 transactions, height 910, 2017-11-29 17:26:20 +0100 CET)
DEBUG:lnd(16331):2017-11-29 17:26:20.777 [INF] CRTR: Pruning channel graph using block 08297e03045fec6c01fc4bb015821e4cfa6869219e0e6e3a4a56420adfadf92b (height=910)
DEBUG:lnd(16331):2017-11-29 17:26:20.778 [INF] NTFN: New block: height=910, sha=08297e03045fec6c01fc4bb015821e4cfa6869219e0e6e3a4a56420adfadf92b
DEBUG:lnd(16331):2017-11-29 17:26:20.793 [INF] CRTR: Block 08297e03045fec6c01fc4bb015821e4cfa6869219e0e6e3a4a56420adfadf92b (height=910) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 2bf9addf0a42564a3a6e0e9e216968fa4c1e8215b04bfc016cec5f04037e2908
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:21 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:21 keypool reserve 341
DEBUG:bitcoind:2017-11-29 16:26:21 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:21 UpdateTip: new best=116d196e48d943534543d48188fab74a8d4914046cd49ab2d17ab9eaa3036129 height=911 version=0x20000000 log2_work=10.83289 tx=1014 date='2017-11-29 16:26:21' progress=1.000000 cache=0.2MiB(1013txo)
DEBUG:bitcoind:2017-11-29 16:26:21 AddToWallet 3eb5ed8ad5989369129cc3a12689b66233012972cbeb74a0f3e875be1c44e335 new
DEBUG:bitcoind:2017-11-29 16:26:21 keypool keep 341
DEBUG:lnd(16331):2017-11-29 17:26:21.827 [INF] CRTR: Pruning channel graph using block 116d196e48d943534543d48188fab74a8d4914046cd49ab2d17ab9eaa3036129 (height=911)
DEBUG:lnd(16331):2017-11-29 17:26:21.827 [INF] NTFN: New block: height=911, sha=116d196e48d943534543d48188fab74a8d4914046cd49ab2d17ab9eaa3036129
DEBUG:lnd(16331):2017-11-29 17:26:21.841 [INF] CRTR: Block 116d196e48d943534543d48188fab74a8d4914046cd49ab2d17ab9eaa3036129 (height=911) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 296103a3eab97ad1b29ad46c0414498d4ab7fa8881d443455343d9486e196d11
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:22 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:22 keypool reserve 342
DEBUG:bitcoind:2017-11-29 16:26:22 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:22 UpdateTip: new best=5c2bf801fc633bf7349c3cef80cd13af38f463286919409a1073567b52940ee7 height=912 version=0x20000000 log2_work=10.834471 tx=1015 date='2017-11-29 16:26:22' progress=1.000000 cache=0.2MiB(1014txo)
DEBUG:bitcoind:2017-11-29 16:26:22 AddToWallet 3950dd1512ad5aa6cdb66f121e0d8b501614a2ac6434df89ea23b396740afcba new
DEBUG:bitcoind:2017-11-29 16:26:22 keypool keep 342
DEBUG:lnd(16331):2017-11-29 17:26:22.888 [INF] CRTR: Pruning channel graph using block 5c2bf801fc633bf7349c3cef80cd13af38f463286919409a1073567b52940ee7 (height=912)
DEBUG:lnd(16331):2017-11-29 17:26:22.889 [INF] NTFN: New block: height=912, sha=5c2bf801fc633bf7349c3cef80cd13af38f463286919409a1073567b52940ee7
DEBUG:lnd(16331):2017-11-29 17:26:22.902 [INF] CRTR: Block 5c2bf801fc633bf7349c3cef80cd13af38f463286919409a1073567b52940ee7 (height=912) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block e70e94527b5673109a4019692863f438af13cd80ef3c9c34f73b63fc01f82b5c
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:23 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:23 keypool reserve 343
DEBUG:bitcoind:2017-11-29 16:26:23 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:23 UpdateTip: new best=43d8ea82d75f464f380106aaf0d0afec4a3b5a843dad56c1f7b4a518d972b198 height=913 version=0x20000000 log2_work=10.83605 tx=1016 date='2017-11-29 16:26:23' progress=1.000000 cache=0.2MiB(1015txo)
DEBUG:bitcoind:2017-11-29 16:26:23 AddToWallet d66f9ce985ca0b1b57e2e3ab1284116b31c5194a146c487e85539dc6f399466a new
DEBUG:bitcoind:2017-11-29 16:26:23 keypool keep 343
DEBUG:lnd(16331):2017-11-29 17:26:23.937 [INF] CRTR: Pruning channel graph using block 43d8ea82d75f464f380106aaf0d0afec4a3b5a843dad56c1f7b4a518d972b198 (height=913)
DEBUG:lnd(16331):2017-11-29 17:26:23.937 [INF] NTFN: New block: height=913, sha=43d8ea82d75f464f380106aaf0d0afec4a3b5a843dad56c1f7b4a518d972b198
DEBUG:lnd(16331):2017-11-29 17:26:23.951 [INF] CRTR: Block 43d8ea82d75f464f380106aaf0d0afec4a3b5a843dad56c1f7b4a518d972b198 (height=913) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 98b172d918a5b4f7c156ad3d845a3b4aecafd0f0aa0601384f465fd782ead843
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:24 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:24 keypool reserve 344
DEBUG:bitcoind:2017-11-29 16:26:24 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:24 UpdateTip: new best=05d109f861bf6bb8cc43d5a16088d0122b4707bf0355f349e8d381b68abf77db height=914 version=0x20000000 log2_work=10.837628 tx=1017 date='2017-11-29 16:26:24' progress=1.000000 cache=0.2MiB(1016txo)
DEBUG:bitcoind:2017-11-29 16:26:24 AddToWallet 2d9a9f0b4826762fc42c38593e43bde18053b2e6db0c652ad718ece241598833 new
DEBUG:bitcoind:2017-11-29 16:26:24 keypool keep 344
DEBUG:lnd(16331):2017-11-29 17:26:24.994 [INF] CRTR: Pruning channel graph using block 05d109f861bf6bb8cc43d5a16088d0122b4707bf0355f349e8d381b68abf77db (height=914)
DEBUG:lnd(16331):2017-11-29 17:26:24.995 [INF] NTFN: New block: height=914, sha=05d109f861bf6bb8cc43d5a16088d0122b4707bf0355f349e8d381b68abf77db
DEBUG:lnd(16331):2017-11-29 17:26:25.008 [INF] CRTR: Block 05d109f861bf6bb8cc43d5a16088d0122b4707bf0355f349e8d381b68abf77db (height=914) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block db77bf8ab681d3e849f35503bf07472b12d08860a1d543ccb86bbf61f809d105
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:25 keypool reserve 345
DEBUG:bitcoind:2017-11-29 16:26:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:25 UpdateTip: new best=53dd4205e9ec21b37b18d79df63590108f6926eba89692a7359fc114b9d989c4 height=915 version=0x20000000 log2_work=10.839204 tx=1018 date='2017-11-29 16:26:25' progress=1.000000 cache=0.2MiB(1017txo)
DEBUG:bitcoind:2017-11-29 16:26:25 AddToWallet aa8894e6521890a1c077d91fd9522b93d61b67563156beaf0eef449d52bf49f9 new
DEBUG:bitcoind:2017-11-29 16:26:25 keypool keep 345
DEBUG:lnd(16331):2017-11-29 17:26:26.046 [INF] CRTR: Pruning channel graph using block 53dd4205e9ec21b37b18d79df63590108f6926eba89692a7359fc114b9d989c4 (height=915)
DEBUG:lnd(16331):2017-11-29 17:26:26.047 [INF] NTFN: New block: height=915, sha=53dd4205e9ec21b37b18d79df63590108f6926eba89692a7359fc114b9d989c4
DEBUG:lnd(16331):2017-11-29 17:26:26.058 [INF] CRTR: Block 53dd4205e9ec21b37b18d79df63590108f6926eba89692a7359fc114b9d989c4 (height=915) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block c489d9b914c19f35a79296a8eb26698f109035f69dd7187bb321ece90542dd53
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:26 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:26 keypool reserve 346
DEBUG:bitcoind:2017-11-29 16:26:26 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:26 UpdateTip: new best=738ecf3a0b2380f15c542c900cdae6534bcbd0b315eb42e0761118d52372d5c0 height=916 version=0x20000000 log2_work=10.840778 tx=1019 date='2017-11-29 16:26:26' progress=1.000000 cache=0.2MiB(1018txo)
DEBUG:bitcoind:2017-11-29 16:26:26 AddToWallet ac5954bff5f2ecd81edb1036042de3af35c2000bcecad335f2d42b34d810f581 new
DEBUG:bitcoind:2017-11-29 16:26:26 keypool keep 346
DEBUG:lnd(16331):2017-11-29 17:26:27.092 [INF] CRTR: Pruning channel graph using block 738ecf3a0b2380f15c542c900cdae6534bcbd0b315eb42e0761118d52372d5c0 (height=916)
DEBUG:lnd(16331):2017-11-29 17:26:27.093 [INF] NTFN: New block: height=916, sha=738ecf3a0b2380f15c542c900cdae6534bcbd0b315eb42e0761118d52372d5c0
DEBUG:lnd(16331):2017-11-29 17:26:27.105 [INF] CRTR: Block 738ecf3a0b2380f15c542c900cdae6534bcbd0b315eb42e0761118d52372d5c0 (height=916) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block c0d57223d5181176e042eb15b3d0cb4b53e6da0c902c545cf180230b3acf8e73
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:28 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:28 keypool reserve 347
DEBUG:bitcoind:2017-11-29 16:26:28 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:28 UpdateTip: new best=3927e874170c0ba239bf25c32cf044d23d549c4d3bc3dc58433f6422649802f9 height=917 version=0x20000000 log2_work=10.84235 tx=1020 date='2017-11-29 16:26:28' progress=1.000000 cache=0.2MiB(1019txo)
DEBUG:bitcoind:2017-11-29 16:26:28 AddToWallet 815d69c205c3cd15854d2d784489aa4fb494ae7333072fc5af1b9d297a3bc5d4 new
DEBUG:bitcoind:2017-11-29 16:26:28 keypool keep 347
DEBUG:lnd(16331):2017-11-29 17:26:28.136 [INF] CRTR: Pruning channel graph using block 3927e874170c0ba239bf25c32cf044d23d549c4d3bc3dc58433f6422649802f9 (height=917)
DEBUG:lnd(16331):2017-11-29 17:26:28.137 [INF] NTFN: New block: height=917, sha=3927e874170c0ba239bf25c32cf044d23d549c4d3bc3dc58433f6422649802f9
DEBUG:lnd(16331):2017-11-29 17:26:28.147 [INF] CRTR: Block 3927e874170c0ba239bf25c32cf044d23d549c4d3bc3dc58433f6422649802f9 (height=917) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block f902986422643f4358dcc33b4d9c543dd244f02cc325bf39a20b0c1774e82739
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:29 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:29 keypool reserve 348
DEBUG:bitcoind:2017-11-29 16:26:29 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:29 UpdateTip: new best=79479efbbee02c978b75083afc94d835eca064935d7ee14734d32d799d5d18cb height=918 version=0x20000000 log2_work=10.843921 tx=1021 date='2017-11-29 16:26:29' progress=1.000000 cache=0.2MiB(1020txo)
DEBUG:bitcoind:2017-11-29 16:26:29 AddToWallet 591568d66702f7cf17deb3be8379f9ce08f9a55c965257484dc90b1ac4507f44 new
DEBUG:bitcoind:2017-11-29 16:26:29 keypool keep 348
DEBUG:lnd(16331):2017-11-29 17:26:29.187 [INF] CRTR: Pruning channel graph using block 79479efbbee02c978b75083afc94d835eca064935d7ee14734d32d799d5d18cb (height=918)
DEBUG:lnd(16331):2017-11-29 17:26:29.188 [INF] NTFN: New block: height=918, sha=79479efbbee02c978b75083afc94d835eca064935d7ee14734d32d799d5d18cb
DEBUG:lnd(16331):2017-11-29 17:26:29.201 [INF] CRTR: Block 79479efbbee02c978b75083afc94d835eca064935d7ee14734d32d799d5d18cb (height=918) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block cb185d9d792dd33447e17e5d9364a0ec35d894fc3a08758b972ce0befb9e4779
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:30 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:30 keypool reserve 349
DEBUG:bitcoind:2017-11-29 16:26:30 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:30 UpdateTip: new best=6ff466a94c0d8890109c0f23a44b31734e3e83f4d5036899f866ad7f53ebbf01 height=919 version=0x20000000 log2_work=10.84549 tx=1022 date='2017-11-29 16:26:30' progress=1.000000 cache=0.2MiB(1021txo)
DEBUG:bitcoind:2017-11-29 16:26:30 AddToWallet 8e0d75b311179d5f8ab8a997428eda7314b67a67adb74b3775bd85d1a84c775e new
DEBUG:lnd(16331):2017-11-29 17:26:30.140 [INF] NTFN: New block: height=919, sha=6ff466a94c0d8890109c0f23a44b31734e3e83f4d5036899f866ad7f53ebbf01
DEBUG:lnd(16331):2017-11-29 17:26:30.141 [INF] CRTR: Pruning channel graph using block 6ff466a94c0d8890109c0f23a44b31734e3e83f4d5036899f866ad7f53ebbf01 (height=919)
DEBUG:bitcoind:2017-11-29 16:26:30 keypool keep 349
DEBUG:lnd(16331):2017-11-29 17:26:30.172 [INF] CRTR: Block 6ff466a94c0d8890109c0f23a44b31734e3e83f4d5036899f866ad7f53ebbf01 (height=919) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 01bfeb537fad66f8996803d5f4833e4e73314ba4230f9c1090880d4ca966f46f
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:31 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:31 keypool reserve 350
DEBUG:bitcoind:2017-11-29 16:26:31 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:31 UpdateTip: new best=6a60e6f860b485e7aaf6122bd2c74a94b71659c7b3b1d9c4c6568be2ae27dc05 height=920 version=0x20000000 log2_work=10.847057 tx=1023 date='2017-11-29 16:26:31' progress=1.000000 cache=0.2MiB(1022txo)
DEBUG:bitcoind:2017-11-29 16:26:31 AddToWallet f7b606c7e6d0355349c230668b6622708db35014a134d1459901d92ee4e9b4d5 new
DEBUG:bitcoind:2017-11-29 16:26:31 keypool keep 350
DEBUG:proc:2017-11-29 17:26:31.291 [INF] BMGR: Processed 10 blocks in the last 10.51s (10 transactions, height 920, 2017-11-29 17:26:31 +0100 CET)
DEBUG:lnd(16331):2017-11-29 17:26:31.293 [INF] CRTR: Pruning channel graph using block 6a60e6f860b485e7aaf6122bd2c74a94b71659c7b3b1d9c4c6568be2ae27dc05 (height=920)
DEBUG:lnd(16331):2017-11-29 17:26:31.294 [INF] NTFN: New block: height=920, sha=6a60e6f860b485e7aaf6122bd2c74a94b71659c7b3b1d9c4c6568be2ae27dc05
DEBUG:lnd(16331):2017-11-29 17:26:31.308 [INF] CRTR: Block 6a60e6f860b485e7aaf6122bd2c74a94b71659c7b3b1d9c4c6568be2ae27dc05 (height=920) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 05dc27aee28b56c6c4d9b1b3c75916b7944ac7d22b12f6aae785b460f8e6606a
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:32 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:32 keypool reserve 351
DEBUG:bitcoind:2017-11-29 16:26:32 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:32 UpdateTip: new best=403896f3f62dcc88cd945fff21aa540ba01cbd3b3964e54d26da379e5f91520f height=921 version=0x20000000 log2_work=10.848623 tx=1024 date='2017-11-29 16:26:32' progress=1.000000 cache=0.2MiB(1023txo)
DEBUG:bitcoind:2017-11-29 16:26:32 AddToWallet 29d9d49177d0c0ab38318e812e12dfacf4e76c93061d2a47e2d55bdca133b4db new
DEBUG:bitcoind:2017-11-29 16:26:32 keypool keep 351
DEBUG:lnd(16331):2017-11-29 17:26:32.344 [INF] CRTR: Pruning channel graph using block 403896f3f62dcc88cd945fff21aa540ba01cbd3b3964e54d26da379e5f91520f (height=921)
DEBUG:lnd(16331):2017-11-29 17:26:32.346 [INF] NTFN: New block: height=921, sha=403896f3f62dcc88cd945fff21aa540ba01cbd3b3964e54d26da379e5f91520f
DEBUG:lnd(16331):2017-11-29 17:26:32.353 [INF] CRTR: Block 403896f3f62dcc88cd945fff21aa540ba01cbd3b3964e54d26da379e5f91520f (height=921) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 0f52915f9e37da264de564393bbd1ca00b54aa21ff5f94cd88cc2df6f3963840
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:33 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:33 keypool reserve 352
DEBUG:bitcoind:2017-11-29 16:26:33 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:33 UpdateTip: new best=3bcbf215f6f83153007d4e7095c6fd6fe7e1be121e660854a28068931ed14839 height=922 version=0x20000000 log2_work=10.850187 tx=1025 date='2017-11-29 16:26:33' progress=1.000000 cache=0.2MiB(1024txo)
DEBUG:bitcoind:2017-11-29 16:26:33 AddToWallet 0e846f8c62bc61cdec782f05fab701dfd5d5c4249ce42dbf0e73392452088ce9 new
DEBUG:bitcoind:2017-11-29 16:26:33 keypool keep 352
DEBUG:lnd(16331):2017-11-29 17:26:33.382 [INF] CRTR: Pruning channel graph using block 3bcbf215f6f83153007d4e7095c6fd6fe7e1be121e660854a28068931ed14839 (height=922)
DEBUG:lnd(16331):2017-11-29 17:26:33.383 [INF] NTFN: New block: height=922, sha=3bcbf215f6f83153007d4e7095c6fd6fe7e1be121e660854a28068931ed14839
DEBUG:lnd(16331):2017-11-29 17:26:33.391 [INF] CRTR: Block 3bcbf215f6f83153007d4e7095c6fd6fe7e1be121e660854a28068931ed14839 (height=922) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 3948d11e936880a25408661e12bee1e76ffdc695704e7d005331f8f615f2cb3b
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:34 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:34 keypool reserve 353
DEBUG:bitcoind:2017-11-29 16:26:34 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:34 UpdateTip: new best=17450773a6a6bb0c32d14f637369aaf2a092c8fdb68bfebdb1099cb5334c9d13 height=923 version=0x20000000 log2_work=10.851749 tx=1026 date='2017-11-29 16:26:34' progress=1.000000 cache=0.2MiB(1025txo)
DEBUG:bitcoind:2017-11-29 16:26:34 AddToWallet 5ef327c7cb8e8623c5cbe4cbe13ff237f56f6f06787d2bfce9f1db1c43b757fc new
DEBUG:bitcoind:2017-11-29 16:26:34 keypool keep 353
DEBUG:lnd(16331):2017-11-29 17:26:34.467 [INF] CRTR: Pruning channel graph using block 17450773a6a6bb0c32d14f637369aaf2a092c8fdb68bfebdb1099cb5334c9d13 (height=923)
DEBUG:lnd(16331):2017-11-29 17:26:34.467 [INF] NTFN: New block: height=923, sha=17450773a6a6bb0c32d14f637369aaf2a092c8fdb68bfebdb1099cb5334c9d13
DEBUG:lnd(16331):2017-11-29 17:26:34.476 [INF] CRTR: Block 17450773a6a6bb0c32d14f637369aaf2a092c8fdb68bfebdb1099cb5334c9d13 (height=923) closed 0 channels
DEBUG:lnd(16331):2017-11-29 17:26:34.570 [DBG] PEER: Sending Ping to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:26:34.570 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Ping)(0xc420b1c2c0)({
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 17:26:34.571 [DBG] PEER: Received Pong from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 17:26:34.571 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Pong)(0xc420aa9160)({
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:proc:lightningd(1473): Adding block 139d4c33b59c09b1bdfe8bb6fdc892a0f2aa6973634fd1320cbba6a673074517
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:35 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:35 keypool reserve 354
DEBUG:bitcoind:2017-11-29 16:26:35 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:35 UpdateTip: new best=56b61a6cfd405d82ed15dc51ba0313d67731875784f6f7758137f0a774077dc0 height=924 version=0x20000000 log2_work=10.85331 tx=1027 date='2017-11-29 16:26:35' progress=1.000000 cache=0.2MiB(1026txo)
DEBUG:bitcoind:2017-11-29 16:26:35 AddToWallet a34c28b154dbdb2a3b388e4deb18904bffb08f0eba0cd9143aa4007f70ce8bef new
DEBUG:bitcoind:2017-11-29 16:26:35 keypool keep 354
DEBUG:lnd(16331):2017-11-29 17:26:35.508 [INF] CRTR: Pruning channel graph using block 56b61a6cfd405d82ed15dc51ba0313d67731875784f6f7758137f0a774077dc0 (height=924)
DEBUG:lnd(16331):2017-11-29 17:26:35.509 [INF] NTFN: New block: height=924, sha=56b61a6cfd405d82ed15dc51ba0313d67731875784f6f7758137f0a774077dc0
DEBUG:lnd(16331):2017-11-29 17:26:35.521 [INF] CRTR: Block 56b61a6cfd405d82ed15dc51ba0313d67731875784f6f7758137f0a774077dc0 (height=924) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block c07d0774a7f0378175f7f68457873177d61303ba51dc15ed825d40fd6c1ab656
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:36 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:36 keypool reserve 355
DEBUG:bitcoind:2017-11-29 16:26:36 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:36 UpdateTip: new best=0056399a3bcdf197b7da6c13816b4b46ae60b99c4220845a1a6775f4b2430be2 height=925 version=0x20000000 log2_work=10.854868 tx=1028 date='2017-11-29 16:26:36' progress=1.000000 cache=0.2MiB(1027txo)
DEBUG:bitcoind:2017-11-29 16:26:36 AddToWallet 1d2d8416ede695b9580f4bc3c160f3c1251ca6cc7aabea102970a9f142285eb7 new
DEBUG:bitcoind:2017-11-29 16:26:36 keypool keep 355
DEBUG:lnd(16331):2017-11-29 17:26:36.547 [INF] CRTR: Pruning channel graph using block 0056399a3bcdf197b7da6c13816b4b46ae60b99c4220845a1a6775f4b2430be2 (height=925)
DEBUG:lnd(16331):2017-11-29 17:26:36.547 [INF] NTFN: New block: height=925, sha=0056399a3bcdf197b7da6c13816b4b46ae60b99c4220845a1a6775f4b2430be2
DEBUG:lnd(16331):2017-11-29 17:26:36.561 [INF] CRTR: Block 0056399a3bcdf197b7da6c13816b4b46ae60b99c4220845a1a6775f4b2430be2 (height=925) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block e20b43b2f475671a5a8420429cb960ae464b6b81136cdab797f1cd3b9a395600
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:37 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:37 keypool reserve 356
DEBUG:bitcoind:2017-11-29 16:26:37 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:37 UpdateTip: new best=200de94fefdb05f821e7d48a7dd6423e0005387d4cbce05bf6e57488c2d4c474 height=926 version=0x20000000 log2_work=10.856426 tx=1029 date='2017-11-29 16:26:37' progress=1.000000 cache=0.2MiB(1028txo)
DEBUG:bitcoind:2017-11-29 16:26:37 AddToWallet 1da3f03a7503427bfcd78e43e6c66862d976744424f115f1925b633cd4bb9fa2 new
DEBUG:bitcoind:2017-11-29 16:26:37 keypool keep 356
DEBUG:lnd(16331):2017-11-29 17:26:37.590 [INF] CRTR: Pruning channel graph using block 200de94fefdb05f821e7d48a7dd6423e0005387d4cbce05bf6e57488c2d4c474 (height=926)
DEBUG:lnd(16331):2017-11-29 17:26:37.591 [INF] NTFN: New block: height=926, sha=200de94fefdb05f821e7d48a7dd6423e0005387d4cbce05bf6e57488c2d4c474
DEBUG:lnd(16331):2017-11-29 17:26:37.599 [INF] CRTR: Block 200de94fefdb05f821e7d48a7dd6423e0005387d4cbce05bf6e57488c2d4c474 (height=926) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 74c4d4c28874e5f65be0bc4c7d3805003e42d67d8ad4e721f805dbef4fe90d20
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:38 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:38 keypool reserve 357
DEBUG:bitcoind:2017-11-29 16:26:38 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:38 UpdateTip: new best=3afefc7ff34e5de595e4a66b69729f80f97e4f166c9b12da43a8d1429e2846c2 height=927 version=0x20000000 log2_work=10.857981 tx=1030 date='2017-11-29 16:26:38' progress=1.000000 cache=0.2MiB(1029txo)
DEBUG:bitcoind:2017-11-29 16:26:38 AddToWallet 450f0688f59f424f06eb49fdb9f920560b39e4e0c7a9f26685de0982fcd0c0d9 new
DEBUG:bitcoind:2017-11-29 16:26:38 keypool keep 357
DEBUG:lnd(16331):2017-11-29 17:26:38.626 [INF] CRTR: Pruning channel graph using block 3afefc7ff34e5de595e4a66b69729f80f97e4f166c9b12da43a8d1429e2846c2 (height=927)
DEBUG:lnd(16331):2017-11-29 17:26:38.627 [INF] NTFN: New block: height=927, sha=3afefc7ff34e5de595e4a66b69729f80f97e4f166c9b12da43a8d1429e2846c2
DEBUG:lnd(16331):2017-11-29 17:26:38.634 [INF] CRTR: Block 3afefc7ff34e5de595e4a66b69729f80f97e4f166c9b12da43a8d1429e2846c2 (height=927) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block c246289e42d1a843da129b6c164f7ef9809f72696ba6e495e55d4ef37ffcfe3a
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:39 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:39 keypool reserve 358
DEBUG:bitcoind:2017-11-29 16:26:39 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:39 UpdateTip: new best=79674626ffe49116e13d98880287cb9fb0d8e45cb7a20e8f9044eab5b15b5b24 height=928 version=0x20000000 log2_work=10.859535 tx=1031 date='2017-11-29 16:26:39' progress=1.000000 cache=0.2MiB(1030txo)
DEBUG:bitcoind:2017-11-29 16:26:39 AddToWallet 3ad477d5ef6aa1b4ce9c04b3e229d1aa5b3d7e9c7b756997b07b28a3c48d86a7 new
DEBUG:bitcoind:2017-11-29 16:26:39 keypool keep 358
DEBUG:lnd(16331):2017-11-29 17:26:39.584 [INF] CRTR: Pruning channel graph using block 79674626ffe49116e13d98880287cb9fb0d8e45cb7a20e8f9044eab5b15b5b24 (height=928)
DEBUG:lnd(16331):2017-11-29 17:26:39.585 [INF] NTFN: New block: height=928, sha=79674626ffe49116e13d98880287cb9fb0d8e45cb7a20e8f9044eab5b15b5b24
DEBUG:lnd(16331):2017-11-29 17:26:39.598 [INF] CRTR: Block 79674626ffe49116e13d98880287cb9fb0d8e45cb7a20e8f9044eab5b15b5b24 (height=928) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 245b5bb1b5ea44908f0ea2b75ce4d8b09fcb870288983de11691e4ff26466779
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:26:40 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:26:40 keypool reserve 359
DEBUG:bitcoind:2017-11-29 16:26:40 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:26:40 UpdateTip: new best=1819f3ed27dde61e9b51e93233ec456cbe0d71913a0ff01cd1e65a8e77e2d73e height=929 version=0x20000000 log2_work=10.861087 tx=1032 date='2017-11-29 16:26:40' progress=1.000000 cache=0.2MiB(1031txo)
DEBUG:bitcoind:2017-11-29 16:26:40 AddToWallet b87297e6919a713b752b691cafff018f9b4682c0c3d4501db25c8159e7b76380 new
DEBUG:bitcoind:2017-11-29 16:26:40 keypool keep 359
DEBUG:lnd(16331):2017-11-29 17:26:40.720 [INF] CRTR: Pruning channel graph using block 1819f3ed27dde61e9b51e93233ec456cbe0d71913a0ff01cd1e65a8e77e2d73e (height=929)
DEBUG:lnd(16331):2017-11-29 17:26:40.721 [INF] NTFN: New block: height=929, sha=1819f3ed27dde61e9b51e93233ec456cbe0d71913a0ff01cd1e65a8e77e2d73e
DEBUG:lnd(16331):2017-11-29 17:26:40.728 [INF] CRTR: Block 1819f3ed27dde61e9b51e93233ec456cbe0d71913a0ff01cd1e65a8e77e2d73e (height=929) closed 0 channels
DEBUG:proc:lightningd(1473): Adding block 3ed7e2778e5ae6d11cf00f3a91710dbe6c45ec3332e9519b1ee6dd27edf31918
DEBUG:proc:lightningd(1473): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1473): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1473): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1473): Slow feerate 0 (was 0)
Checking 2 nodes for gossip sync
DEBUG:root:Node 0 knows about the following channels []
Node 0 is missing 2 channels
--------------------------- Captured stdout teardown ---------------------------
DEBUG:proc:2017-11-29 17:26:41.729 [ERR] RPCS: Websocket receive error from 127.0.0.1:52270: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 17:26:41.729 [ERR] RPCS: Websocket receive error from 127.0.0.1:52264: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 17:26:41.729 [ERR] RPCS: Websocket receive error from 127.0.0.1:52258: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 17:26:41.729 [INF] RPCS: Disconnected websocket client 127.0.0.1:52264
DEBUG:proc:2017-11-29 17:26:41.729 [ERR] RPCS: Websocket receive error from 127.0.0.1:52268: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 17:26:41.729 [INF] RPCS: Disconnected websocket client 127.0.0.1:52270
DEBUG:proc:2017-11-29 17:26:41.729 [INF] RPCS: Disconnected websocket client 127.0.0.1:52258
DEBUG:proc:2017-11-29 17:26:41.730 [INF] RPCS: Disconnected websocket client 127.0.0.1:52268
INFO:root:LightningD stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment