Skip to content

Instantly share code, notes, and snippets.

Created November 29, 2017 21:48
Show Gist options
  • Save anonymous/b5f5ab7c8b7f1f16278db1078bbdcda2 to your computer and use it in GitHub Desktop.
Save anonymous/b5f5ab7c8b7f1f16278db1078bbdcda2 to your computer and use it in GitHub Desktop.
_______________ test_forwarded_payment[lnd_lightning_lightning] ________________
bitcoind = <utils.BitcoinD object at 0x7fb768e47198>
node_factory = <test.NodeFactory object at 0x7fb75e71e2e8>
impls = (<class 'lnd.LndNode'>, <class 'lightningd.LightningNode'>, <class 'lightningd.LightningNode'>)
 @pytest.mark.parametrize("impls", product(impls, repeat=3), ids=idfn)
 def test_forwarded_payment(bitcoind, node_factory, impls):
 num_nodes = len(impls)
 nodes = [node_factory.get_node(implementation=impls[i]) for i in range(3)]
 capacity = 10**7
 
 for i in range(num_nodes-1):
 nodes[i].connect('localhost', nodes[i+1].daemon.port, nodes[i+1].id())
 nodes[i].addfunds(bitcoind, 4 * capacity)
 
 for i in range(num_nodes-1):
 nodes[i].openchannel(nodes[i+1].id(), 'localhost', nodes[i+1].daemon.port, capacity)
 confirm_channel(bitcoind, nodes[i], nodes[i+1])
 
 sync_blockheight(bitcoind, nodes)
 
 # Make sure that everybody knows about its own channel and it's confirmed
> generate_until(bitcoind, lambda: check_channels([(nodes[0], nodes[1]), (nodes[1], nodes[2])]), interval=1)
test.py:313:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
btc = <utils.BitcoinD object at 0x7fb768e47198>
success = <function test_forwarded_payment.<locals>.<lambda> at 0x7fb75c2191e0>
blocks = 30, 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', 30)
test.py:136: ValueError
----------------------------- Captured stdout call -----------------------------
DEBUG:root:Starting 'bin/lnd --peerport=16331 --rpcport=26331 --bitcoin.active --datadir=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lightning_lightning]/node-1/ --debuglevel=trace --bitcoin.rpcuser=rpcuser --bitcoin.rpcpass=rpcpass --configfile=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lightning_lightning]/node-1/lnd.conf --bitcoin.regtest --no-macaroons --nobootstrap --noencryptwallet'
DEBUG:root:Waiting for 'server listening on' in the logs
DEBUG:lnd(16331):2017-11-29 18:03:54.009 [INF] LTND: Version 0.3.0-alpha
DEBUG:lnd(16331):2017-11-29 18:03:54.043 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
DEBUG:lnd(16331):2017-11-29 18:03:54.099 [INF] LTND: Primary chain is set to: bitcoin
DEBUG:lnd(16331):2017-11-29 18:03:54.099 [INF] LTND: Initializing btcd backed fee estimator
DEBUG:proc:2017-11-29 18:03:54.192 [INF] RPCS: New websocket client 127.0.0.1:42600
DEBUG:lnd(16331):2017-11-29 18:03:57.766 [INF] LNWL: Opened wallet
DEBUG:proc:2017-11-29 18:03:57.810 [INF] RPCS: New websocket client 127.0.0.1:42602
DEBUG:lnd(16331):2017-11-29 18:03:58.727 [INF] LNWL: The wallet has been unlocked without a time limit
DEBUG:lnd(16331):2017-11-29 18:03:58.728 [INF] LNWL: Catching up block hashes to height 1713, this will take a while...
DEBUG:lnd(16331):2017-11-29 18:03:58.744 [INF] LTND: LightningWallet opened
DEBUG:lnd(16331):2017-11-29 18:03:58.760 [TRC] FNDG: Funding manager running
DEBUG:lnd(16331):2017-11-29 18:03:58.760 [INF] RPCS: gRPC proxy started at localhost:8080
DEBUG:lnd(16331):2017-11-29 18:03:58.760 [INF] RPCS: RPC server listening on 127.0.0.1:26331
DEBUG:lnd(16331):2017-11-29 18:03:58.761 [INF] LTND: Waiting for chain backend to finish sync, start_height=1713
DEBUG:root:Found 'server listening on' in logs
DEBUG:root:Waiting for 'Done catching up block hashes' in the logs
DEBUG:lnd(16331):2017-11-29 18:03:58.952 [INF] LNWL: Done catching up block hashes
DEBUG:root:Found 'Done catching up block hashes' in logs
DEBUG:lnd(16331):2017-11-29 18:03:58.962 [INF] LNWL: Started rescan from block 601040b0dceb1010e2b8534c2a50005a520c0d33c416cec439f64ff9bb78193b (height 1713) for 1 address
DEBUG:proc:2017-11-29 18:03:58.962 [INF] RPCS: Beginning rescan for 1 address
DEBUG:proc:2017-11-29 18:03:58.962 [INF] RPCS: Finished rescan
DEBUG:lnd(16331):2017-11-29 18:03:58.963 [INF] LNWL: Catching up block hashes to height 1713, this might take a while
DEBUG:lnd(16331):2017-11-29 18:03:58.969 [INF] LNWL: Done catching up block hashes
DEBUG:lnd(16331):2017-11-29 18:03:58.969 [INF] LNWL: Finished rescan for 1 address (synced to block 601040b0dceb1010e2b8534c2a50005a520c0d33c416cec439f64ff9bb78193b, height 1713)
DEBUG:lnd(16331):2017-11-29 18:03:59.765 [INF] LTND: Chain backend is fully synced (end_height=1713)!
DEBUG:proc:2017-11-29 18:03:59.808 [INF] RPCS: New websocket client 127.0.0.1:42606
DEBUG:lnd(16331):2017-11-29 18:03:59.808 [INF] HSWC: Starting HTLC Switch
DEBUG:lnd(16331):2017-11-29 18:03:59.808 [TRC] UTXN: Starting UTXO nursery
DEBUG:lnd(16331):2017-11-29 18:03:59.808 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:03:59.809 [TRC] BRAR: Starting breach arbiter
DEBUG:lnd(16331):2017-11-29 18:03:59.809 [INF] DISC: Authenticated Gossiper is starting
DEBUG:lnd(16331):2017-11-29 18:03:59.809 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:03:59.809 [TRC] CRTR: Channel Router starting
DEBUG:lnd(16331):2017-11-29 18:03:59.809 [INF] CRTR: FilteredChainView starting
DEBUG:lnd(16331):2017-11-29 18:03:59.809 [ERR] DISC: unable to rebroadcast stale channels: error while retrieving outgoing channels: no graph edges exist
DEBUG:proc:2017-11-29 18:03:59.843 [INF] RPCS: New websocket client 127.0.0.1:42608
DEBUG:lnd(16331):2017-11-29 18:03:59.870 [INF] CRTR: Filtering chain using 0 channels active
DEBUG:lnd(16331):2017-11-29 18:03:59.870 [INF] CRTR: Prune tip for Channel Graph: height=1713, hash=601040b0dceb1010e2b8534c2a50005a520c0d33c416cec439f64ff9bb78193b
DEBUG:lnd(16331):2017-11-29 18:03:59.871 [INF] SRVR: Auto peer bootstrapping is disabled
DEBUG:lnd(16331):2017-11-29 18:03:59.871 [TRC] CMGR: Connection manager started
DEBUG:lnd(16331):2017-11-29 18:03:59.871 [INF] CMGR: Server listening on [::]:16331
INFO:root:LND started (pid: 1038)
DEBUG:root:Starting 'bin/lightningd --bitcoin-datadir=/tmp/lightning-il5fkavy/bitcoind --lightning-dir=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lightning_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(1540): Trying to guess public addresses...
DEBUG:proc:lightningd(1540): Address 192.168.0.3:16332 is not routable
DEBUG:proc:lightningd(1540): Failed to connect 10 socket: Network is unreachable
DEBUG:proc:lightningd(1540): testing /home/cdecker/dev/lightning-integration/bin/lightningd
DEBUG:proc:lightningd(1540): testing /home/cdecker/dev/lightning-integration/bin/lightning_channeld
DEBUG:proc:lightningd(1540): testing /home/cdecker/dev/lightning-integration/bin/lightning_closingd
DEBUG:proc:lightningd(1540): testing /home/cdecker/dev/lightning-integration/bin/lightning_gossipd
DEBUG:proc:lightningd(1540): testing /home/cdecker/dev/lightning-integration/bin/lightning_hsmd
DEBUG:proc:lightningd(1540): testing /home/cdecker/dev/lightning-integration/bin/lightning_onchaind
DEBUG:proc:lightningd(1540): testing /home/cdecker/dev/lightning-integration/bin/lightning_openingd
DEBUG:proc:lightningd(1540): HSM TRACE: Control: type WIRE_HSMCTL_INIT len 3
DEBUG:proc:lightningd(1540): Adding block 91b3a9c235db67125a52d8385623a2e2b847e178696c28f2ff9cb1c1b9704970
DEBUG:proc:lightningd(1540): Adding block 3b1978bbf94ff639c4ce16c4330d0c525a00502a4c53b8e21010ebdcb0401060
DEBUG:proc:lightningd(1540): Adding block 5b8cc421e8b2cb55fb79b8e86c2c93e5760602e1b00ccd48bfb4daaa01aaaf4e
DEBUG:proc:lightningd(1540): Adding block b2151780906f28990453a1d114b3f99feb1ec24b9de1ba1204f3e7412787702b
DEBUG:proc:lightningd(1540): Adding block 85a62ce4d38e160a663851ea5eef79a25095ad6a0d0878b298a1531b217b2c78
DEBUG:proc:lightningd(1540): Adding block 5f81d018f458cfdc389c6c6d3c4b8c17b0481ea49230ae5d20fc3643f3d7512f
DEBUG:proc:lightningd(1540): Adding block f3075e556799d0233e80cc3e97d08ec3258e0a276a1454e02b59e343a691f123
DEBUG:proc:lightningd(1540): Adding block 692cccc0501b3267e7aebb5a9d8efa607ccdd535824e8248ca40e5e0ab447169
DEBUG:proc:lightningd(1540): Adding block 6cecc102328e7d6d373d91817dc77c4e6b2b7d7ad2529432c826bdd4e9c3250d
DEBUG:proc:lightningd(1540): Adding block 05548b7cca683b666b0281fa99d2b1a5bd35f2943a154037d89db5c60477e67d
DEBUG:proc:lightningd(1540): Adding block 9ca50add49a3d36d4c559e265c52f5ba5e202c1f720444b7047a9cbf38de0c0f
DEBUG:proc:lightningd(1540): Adding block f1635c385edabc58a5c1e08dd402c08a29506fe2027ddf6c648e75e57290d861
DEBUG:proc:lightningd(1540): Adding block 247f567a04202d1b5aeb704746c554624bed340fe631e7d8c60fca510fdf9c5e
DEBUG:proc:lightningd(1540): Adding block 522b35841a1298db7c67be3731d26f67326ee2a3d77c857251d5dd3a3173cf4b
DEBUG:proc:lightningd(1540): Adding block 83b6eb5679c1a487ab4aae569c7d4c5eb6469ac53cb1af80be1b981bfc821266
DEBUG:proc:lightningd(1540): Adding block 16d82d91ccd588c2f20378bb544549ffbaf2614e43ddecefd34544c47557f11d
DEBUG:proc:lightningd(1540): Adding block 2223c1e24854b6264195811605b1eeb7f710d55804d6ce8ec02630d79fc0412b
DEBUG:proc:lightningd(1540): Adding block c51a14c20cf74c610fac79cf8992ae87ca55a126c79d74933edaba8f41401260
DEBUG:proc:lightningd(1540): Adding block 30a3ff6b530600c353c1543c0e24aaf508325e6e3d0752a7b48e8120fa351e41
DEBUG:proc:lightningd(1540): Adding block a2fde6d1db8f103f4aca7c74ef72aafd0fb3014aa9fb6213a405554a13ae8278
DEBUG:proc:lightningd(1540): Adding block e699b132b15f4c57db62b5df161ad8aa0e3fdc6e374835f7538de1f1f52b2d4d
DEBUG:proc:lightningd(1540): Adding block 5fb9763ee9a07e028683e871dae25bfdefb9e13a166e3eca9293ab6b24faa06b
DEBUG:proc:lightningd(1540): Adding block 200e964358cd69d03b3b26901d507b56a0e046a707eb3f4552ff2d16a8b16e4d
DEBUG:proc:lightningd(1540): Adding block bc9079687acc90754e60270191474107d6f6b64b3697811940aed8b3736d4c66
DEBUG:proc:lightningd(1540): Adding block c4a5907352ee9052541fcbc97c7f3b1991db5942d0d678525664c2525324077e
DEBUG:proc:lightningd(1540): Adding block d8ae39fc76c76532ccddfc3610d9438efc36ce587f4f1c161d898da929c1f520
DEBUG:proc:lightningd(1540): Adding block ffa24ebf6b68b3ef35afbd2a5c8159d63f509476d1917e40442cf812c8e7d00d
DEBUG:proc:lightningd(1540): Adding block be669ca5b0e14cad800f711e13baa6e74a6c79a8a4601c8ed4d2cee9228fc26c
DEBUG:proc:lightningd(1540): Adding block 08dc164f9699b3a1ca02c3d3bbdf28f944722f62f30a15eee197969b73090b20
DEBUG:proc:lightningd(1540): Adding block b4aa443566a3c7518f03476eb33021fb596ef0fcedff11803b59fcd1ace1080f
DEBUG:proc:lightningd(1540): Adding block 6a4047536188ddb5e2c1222ac945f415ff5e3748b0711449f7b72af928650a7b
DEBUG:proc:lightningd(1540): Adding block be2931890621072567e2a962a8137f9b7128ad2d60cd604a4a728a772636f322
DEBUG:proc:lightningd(1540): Adding block 3839b1ec43e166215309df09ea9559b7f2d02791617b9d5692e9bde58554c76f
DEBUG:proc:lightningd(1540): Adding block a01980c5fd73d876fd6b6be2a9c6f76a7028c8d1419cd614f072736077c80406
DEBUG:proc:lightningd(1540): Adding block e53be592db630b4809eda4118e1bf39f317218bdab2571e322a92db6496c7427
DEBUG:proc:lightningd(1540): Adding block 7d214bde9ffd9e72a12104ee8f690f3ccb724a0db155c21b3bd0af48dc9d210e
DEBUG:proc:lightningd(1540): Adding block b09fa3ffc485a5d9c68ebc4d91c2c9ba4419f0f2c10c7a3e435f22edd2080700
DEBUG:proc:lightningd(1540): Adding block c5f06a4d58ba2301fc802788fff178e691a6dff1561d96a9783817cf18f1250b
DEBUG:proc:lightningd(1540): Adding block e3ffb08977a48c8e010305e7066c4a1e774f8bc19bb75f0a1dd16f0f7fd23170
DEBUG:proc:lightningd(1540): Adding block 695d7180dd489b69e34262697cb84accf5ed99420e862b98c96c05217775e71a
DEBUG:proc:lightningd(1540): Adding block 8b7d558d31a36702fc104bd80fac71ba42a1c37888c82f012e2c9eb1befde84a
DEBUG:proc:lightningd(1540): Adding block 90d67fbe65eca7847e1624d1cf21e9474fc3d7973c99a71e6d139cbb31ac945a
DEBUG:proc:lightningd(1540): Adding block 65b55a58875902aca19f57c1903cb8dfe9220f0bf23d5a5b9216ee48d493ae37
DEBUG:proc:lightningd(1540): Adding block f39dee5ee028d12301e0b0ed8b91fb9d8dfd0ce0d01c4acaa9176f04677a5f07
DEBUG:proc:lightningd(1540): Adding block 3ca5fdd026be7e1a12b8031efab7ac695d0d407a87d308fbdf54c860c7909e2c
DEBUG:proc:lightningd(1540): Adding block 9ef9a4bbde0876738be26ebdf49552dd00213199ab6a05d3e15406353e04d52f
DEBUG:proc:lightningd(1540): Adding block 1f553048f3fd084eafff36635e2a141a781eb90ca98bb7d83309636c82bc685c
DEBUG:proc:lightningd(1540): Adding block 5b7c55a29602d69731bc868cd5d8f15f5169bc176c996ff0ce6ac41a7409a819
DEBUG:proc:lightningd(1540): Adding block 3305d72727574eac174509b51b7d19aad4d1a07ce7681d9c61611f08f29f0950
DEBUG:proc:lightningd(1540): Adding block c0e80b5b0484e3ff0462dd1a1f6fdda7b0ee82535ab559519ed87bb74f1bf520
DEBUG:proc:lightningd(1540): Adding block f265464be7d883170df23a90684605fc788788c6193408855657472dfbf2f07c
DEBUG:proc:lightningd(1540): Adding block f94da31a1d99c5a0adc82edf0b88f4bd84da2700c8fc84286e577bc83350bd6f
DEBUG:proc:lightningd(1540): Adding block 3e10f2b572bb648d568bc2532c66bd6e9767a271258e4254c8a123ca32fcb736
DEBUG:proc:lightningd(1540): Adding block a83cbc70a3e1f337941d1551468bd7f4941ef1812cfbf1052df495836666b707
DEBUG:proc:lightningd(1540): Adding block 3c444ec87600dce141e70c572c950629bd81a567d343e0b1d100cf1604422d04
DEBUG:proc:lightningd(1540): Adding block 932503e47667a926ef6767390f50c26c62cd538407769ce937052085d7d2ca24
DEBUG:proc:lightningd(1540): Adding block 72ecb3d7dac9090e605036a71941fc7c40ee50a5cd32ab530c5da2659051594d
DEBUG:proc:lightningd(1540): Adding block 348271a513f686f4d2ff22108ce1c74d8c07dbf588ce7c6cdf42f12838ce6174
DEBUG:proc:lightningd(1540): Adding block 82a8defa0c7ce049ddcd6216e8f7c7688f432f537a1beb6529bc44f65efac27a
DEBUG:proc:lightningd(1540): Adding block 490b26affabab0ef1661d96dae9ddfeca5ec86a2f8314179fd515c86f162285c
DEBUG:proc:lightningd(1540): Adding block 82832562593f23f0aca7134333187ea8f13265f02819968a680d7613e7216518
DEBUG:proc:lightningd(1540): Adding block 09900f10fbd21b76a452880a2d3eeed661ff01ebef1c51247fb27f248886e10b
DEBUG:proc:lightningd(1540): Adding block a6cd0e702c7d72b315c9b173e3566574dbab84c8b11c39b9d8df1f77fd7a935d
DEBUG:proc:lightningd(1540): Adding block 4d57a46956a0fb1a312c3dd039efabb137edda642e1f187c4d900c45461c902a
DEBUG:proc:lightningd(1540): Adding block 294c612d2986a62740b43ec39cc52a793ba38cf6b47346ad9b6829abb20cd62c
DEBUG:proc:lightningd(1540): Adding block 1fbd6095e4981b37670b18a35cda2a25c16c5c0221d113f4cb13b92710b6a94b
DEBUG:proc:lightningd(1540): Adding block 13842cc83ede2728e1ad4086bfe643e7fb7c6f3d1976cfd9dba5228ebfb1b955
DEBUG:proc:lightningd(1540): Adding block 60954feefdcd36058b82bcd12256033f511f5211ea75ea9c7420961633956f2a
DEBUG:proc:lightningd(1540): Adding block cdfda82f1c4f7815aba9009faf34d4834c43b48a1bb3bdffdd1117cc99608160
DEBUG:proc:lightningd(1540): Adding block 4f6a0d1eaec36cbfff466c4dd9005ce22fd70b711a0e0ae2077d0f51e3f6682d
DEBUG:proc:lightningd(1540): Adding block 0c48d0e12e87102ee08fcaa4e467e59cdf81f2441642c299c755fb7be469a80d
DEBUG:proc:lightningd(1540): Adding block c8948009918cc9e071a1d3d59ffaa72ee8a1c6eb2307701a19471266a016f954
DEBUG:proc:lightningd(1540): Adding block 77953eb9f2a6663ab899c3874718f891f97883fc24f40b8d46be15fbdb55546d
DEBUG:proc:lightningd(1540): Adding block 9ccb86d52fdbe60f1941d9a37fee8e6d634e3ad1bdee8f37f12cf27a1d0dd759
DEBUG:proc:lightningd(1540): Adding block ee4ffcfa2dedfae1fee351b3f20a24d5f6ddfda45e428693752d1bed5c4f150f
DEBUG:proc:lightningd(1540): Adding block dcfaaec187a876f27cbb0d536bb5b805ec68f9e2c982181d329626bfe9c31e7e
DEBUG:proc:lightningd(1540): Adding block f9e3b6a955e02351361b3a89233c0cdee4699bd50e696130147d5f3baca6e812
DEBUG:proc:lightningd(1540): Adding block 6d138337c9b0862375d1367d563c806cb4cb978b1f0e8f59b1185741de3f135d
DEBUG:proc:lightningd(1540): Adding block 232813955ec152c01b64d8404c71c70f6ca8483678e04decfaa2bc9f253f2836
DEBUG:proc:lightningd(1540): Adding block b6619aa548cff508df925dc98940a27d27f7aa4b728b4b305be24ad3384ab344
DEBUG:proc:lightningd(1540): Adding block 905473a1845dc0fab31790861d3670443e86ee3340af58c8c07311fa73248230
DEBUG:proc:lightningd(1540): Adding block 6fc38c9a1bac5b6c49bce5cc30aafa0de277e9f4b076829601a9cba4df181c3b
DEBUG:proc:lightningd(1540): Adding block fc2a47ca3d3da1f185ff55757123bc179b0fd3c3f3eec9637764d8b93ea1e538
DEBUG:proc:lightningd(1540): Adding block 53e9da6b59612cf155ca85b09ddc9124992d375556a23fdd647fc73a55b73b7a
DEBUG:proc:lightningd(1540): Adding block b561c3d35049804d4e47aeac5a5b1227e66a47c8fafc0700ebfc2d70ab224253
DEBUG:proc:lightningd(1540): Adding block 8a1c4e51c386f3eea8c1b647624123aaf3721f19cac89754e8c0ed2cf6bf3a64
DEBUG:proc:lightningd(1540): Adding block 8618379761e5fd766644d8de549f90e07d81fddbe7014d6374bb7e1221266653
DEBUG:proc:lightningd(1540): Adding block 09f5c4b830a00b1c4991f1853e8b4f7d880940ca0ff542f9608fa33fcac4cf79
DEBUG:proc:lightningd(1540): Adding block e07d12ec3dd7aae30cda8b905eda65803d2aa1af446f24ca62621096a76bc24c
DEBUG:proc:lightningd(1540): Adding block af9b9540038e6de03685e43ea4d822be211f3f199d07134e69f8b103774c6549
DEBUG:proc:lightningd(1540): Adding block 0d4a3fc0c04cb78fdc650fac81fdbeedb698c5d5ee7a84503b6be2b3b8531071
DEBUG:proc:lightningd(1540): Adding block a3d50a671aba83c6226f86ec9a88af67371900c73a0af1a251e6a846ab222a6c
DEBUG:proc:lightningd(1540): Adding block 8bb24506ce530679dadffc966c88c054daa3cb6c58f90af0d90c0ba797ea7034
DEBUG:proc:lightningd(1540): Adding block 786e831e3ccfa2d9286f39a898dd650893b057de1d8a740afd8fb2d3bcf01f2c
DEBUG:proc:lightningd(1540): Adding block 5f8d25597153bdf6bdfd52779662e16980797f366ec4211d1d6cd941a015a227
DEBUG:proc:lightningd(1540): Adding block a3ec743ccaf542ee6416849ec829acecc65395e9aded5a5f4d7df395e11cf27b
DEBUG:proc:lightningd(1540): Adding block 76b8c4b060cc52467105330eb946e953e238217a48ce789e600a5474741ad942
DEBUG:proc:lightningd(1540): Adding block 282b85cd9006874f3a01cf05b6057148ceccf1fb64ef9632fd3109d13b9c4f5c
DEBUG:proc:lightningd(1540): Adding block 602d6c3171fd3797a91fbc8393440c239d72055b01536cc8d98f02c6bdef2168
DEBUG:proc:lightningd(1540): Adding block d9738da3d2ce8a34090d24656f90fff0a6e6a586266040cf8a3669742b5f111f
DEBUG:proc:lightningd(1540): Adding block ca424d3df031c7d475b8f068885bf047b9d3aa49af7cb025bb59858e59393333
DEBUG:proc:lightningd(1540): Loaded 0 invoices from DB
DEBUG:proc:lightningd(1540): HSM TRACE: Control: type WIRE_HSMCTL_HSMFD_ECDH len 2
DEBUG:proc:lightning_gossipd(1724): pid 1724, msgfd 15
DEBUG:proc:lightningd(1540): Loaded 0 channels from DB
DEBUG:proc:lightningd(1540): Listening on 'lightning-rpc'
DEBUG:proc:lightningd(1540): Hello world from 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d aka ANGRYWATER #032445 (version v0.5.2-2016-11-21-1199-gcfde208)!
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIPCTL_INIT len 78
DEBUG:proc:lightning_gossipd(1724): TRACE: Creating IPv6 listener on port 16332
DEBUG:root:Found 'Creating IPv6 listener on port' in logs
INFO:root:LightningD started
DEBUG:root:Starting 'bin/lightningd --bitcoin-datadir=/tmp/lightning-il5fkavy/bitcoind --lightning-dir=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lightning_lightning]/node-3/ --port=16333 --network=regtest --dev-broadcast-interval=1000 --network=regtest --locktime-blocks=6 --log-level=debug --bitcoind-poll=1s'
DEBUG:proc:lightning_gossipd(1724): TRACE: Failed to bind on 2 socket: Address already in use
DEBUG:root:Waiting for 'Creating IPv6 listener on port' in the logs
DEBUG:proc:lightningd(1727): Trying to guess public addresses...
DEBUG:proc:lightningd(1727): Address 192.168.0.3:16333 is not routable
DEBUG:proc:lightningd(1727): Failed to connect 10 socket: Network is unreachable
DEBUG:proc:lightningd(1727): testing /home/cdecker/dev/lightning-integration/bin/lightningd
DEBUG:proc:lightningd(1727): testing /home/cdecker/dev/lightning-integration/bin/lightning_channeld
DEBUG:proc:lightningd(1727): testing /home/cdecker/dev/lightning-integration/bin/lightning_closingd
DEBUG:proc:lightningd(1727): testing /home/cdecker/dev/lightning-integration/bin/lightning_gossipd
DEBUG:proc:lightningd(1727): testing /home/cdecker/dev/lightning-integration/bin/lightning_hsmd
DEBUG:proc:lightningd(1727): testing /home/cdecker/dev/lightning-integration/bin/lightning_onchaind
DEBUG:proc:lightningd(1727): testing /home/cdecker/dev/lightning-integration/bin/lightning_openingd
DEBUG:proc:lightningd(1727): HSM TRACE: Control: type WIRE_HSMCTL_INIT len 3
DEBUG:proc:lightningd(1727): Adding block 91b3a9c235db67125a52d8385623a2e2b847e178696c28f2ff9cb1c1b9704970
DEBUG:proc:lightningd(1727): Adding block 3b1978bbf94ff639c4ce16c4330d0c525a00502a4c53b8e21010ebdcb0401060
DEBUG:proc:lightningd(1727): Adding block 5b8cc421e8b2cb55fb79b8e86c2c93e5760602e1b00ccd48bfb4daaa01aaaf4e
DEBUG:proc:lightningd(1727): Adding block b2151780906f28990453a1d114b3f99feb1ec24b9de1ba1204f3e7412787702b
DEBUG:proc:lightningd(1727): Adding block 85a62ce4d38e160a663851ea5eef79a25095ad6a0d0878b298a1531b217b2c78
DEBUG:proc:lightningd(1727): Adding block 5f81d018f458cfdc389c6c6d3c4b8c17b0481ea49230ae5d20fc3643f3d7512f
DEBUG:proc:lightningd(1727): Adding block f3075e556799d0233e80cc3e97d08ec3258e0a276a1454e02b59e343a691f123
DEBUG:proc:lightningd(1727): Adding block 692cccc0501b3267e7aebb5a9d8efa607ccdd535824e8248ca40e5e0ab447169
DEBUG:proc:lightningd(1727): Adding block 6cecc102328e7d6d373d91817dc77c4e6b2b7d7ad2529432c826bdd4e9c3250d
DEBUG:proc:lightningd(1727): Adding block 05548b7cca683b666b0281fa99d2b1a5bd35f2943a154037d89db5c60477e67d
DEBUG:proc:lightningd(1727): Adding block 9ca50add49a3d36d4c559e265c52f5ba5e202c1f720444b7047a9cbf38de0c0f
DEBUG:proc:lightningd(1727): Adding block f1635c385edabc58a5c1e08dd402c08a29506fe2027ddf6c648e75e57290d861
DEBUG:proc:lightningd(1727): Adding block 247f567a04202d1b5aeb704746c554624bed340fe631e7d8c60fca510fdf9c5e
DEBUG:proc:lightningd(1727): Adding block 522b35841a1298db7c67be3731d26f67326ee2a3d77c857251d5dd3a3173cf4b
DEBUG:proc:lightningd(1727): Adding block 83b6eb5679c1a487ab4aae569c7d4c5eb6469ac53cb1af80be1b981bfc821266
DEBUG:proc:lightningd(1727): Adding block 16d82d91ccd588c2f20378bb544549ffbaf2614e43ddecefd34544c47557f11d
DEBUG:proc:lightningd(1727): Adding block 2223c1e24854b6264195811605b1eeb7f710d55804d6ce8ec02630d79fc0412b
DEBUG:proc:lightningd(1727): Adding block c51a14c20cf74c610fac79cf8992ae87ca55a126c79d74933edaba8f41401260
DEBUG:proc:lightningd(1727): Adding block 30a3ff6b530600c353c1543c0e24aaf508325e6e3d0752a7b48e8120fa351e41
DEBUG:proc:lightningd(1727): Adding block a2fde6d1db8f103f4aca7c74ef72aafd0fb3014aa9fb6213a405554a13ae8278
DEBUG:proc:lightningd(1727): Adding block e699b132b15f4c57db62b5df161ad8aa0e3fdc6e374835f7538de1f1f52b2d4d
DEBUG:proc:lightningd(1727): Adding block 5fb9763ee9a07e028683e871dae25bfdefb9e13a166e3eca9293ab6b24faa06b
DEBUG:proc:lightningd(1727): Adding block 200e964358cd69d03b3b26901d507b56a0e046a707eb3f4552ff2d16a8b16e4d
DEBUG:proc:lightningd(1727): Adding block bc9079687acc90754e60270191474107d6f6b64b3697811940aed8b3736d4c66
DEBUG:proc:lightningd(1727): Adding block c4a5907352ee9052541fcbc97c7f3b1991db5942d0d678525664c2525324077e
DEBUG:proc:lightningd(1727): Adding block d8ae39fc76c76532ccddfc3610d9438efc36ce587f4f1c161d898da929c1f520
DEBUG:proc:lightningd(1727): Adding block ffa24ebf6b68b3ef35afbd2a5c8159d63f509476d1917e40442cf812c8e7d00d
DEBUG:proc:lightningd(1727): Adding block be669ca5b0e14cad800f711e13baa6e74a6c79a8a4601c8ed4d2cee9228fc26c
DEBUG:proc:lightningd(1727): Adding block 08dc164f9699b3a1ca02c3d3bbdf28f944722f62f30a15eee197969b73090b20
DEBUG:proc:lightningd(1727): Adding block b4aa443566a3c7518f03476eb33021fb596ef0fcedff11803b59fcd1ace1080f
DEBUG:proc:lightningd(1727): Adding block 6a4047536188ddb5e2c1222ac945f415ff5e3748b0711449f7b72af928650a7b
DEBUG:proc:lightningd(1727): Adding block be2931890621072567e2a962a8137f9b7128ad2d60cd604a4a728a772636f322
DEBUG:proc:lightningd(1727): Adding block 3839b1ec43e166215309df09ea9559b7f2d02791617b9d5692e9bde58554c76f
DEBUG:proc:lightningd(1727): Adding block a01980c5fd73d876fd6b6be2a9c6f76a7028c8d1419cd614f072736077c80406
DEBUG:proc:lightningd(1727): Adding block e53be592db630b4809eda4118e1bf39f317218bdab2571e322a92db6496c7427
DEBUG:proc:lightningd(1727): Adding block 7d214bde9ffd9e72a12104ee8f690f3ccb724a0db155c21b3bd0af48dc9d210e
DEBUG:proc:lightningd(1727): Adding block b09fa3ffc485a5d9c68ebc4d91c2c9ba4419f0f2c10c7a3e435f22edd2080700
DEBUG:proc:lightningd(1727): Adding block c5f06a4d58ba2301fc802788fff178e691a6dff1561d96a9783817cf18f1250b
DEBUG:proc:lightningd(1727): Adding block e3ffb08977a48c8e010305e7066c4a1e774f8bc19bb75f0a1dd16f0f7fd23170
DEBUG:proc:lightningd(1727): Adding block 695d7180dd489b69e34262697cb84accf5ed99420e862b98c96c05217775e71a
DEBUG:proc:lightningd(1727): Adding block 8b7d558d31a36702fc104bd80fac71ba42a1c37888c82f012e2c9eb1befde84a
DEBUG:proc:lightningd(1727): Adding block 90d67fbe65eca7847e1624d1cf21e9474fc3d7973c99a71e6d139cbb31ac945a
DEBUG:proc:lightningd(1727): Adding block 65b55a58875902aca19f57c1903cb8dfe9220f0bf23d5a5b9216ee48d493ae37
DEBUG:proc:lightningd(1727): Adding block f39dee5ee028d12301e0b0ed8b91fb9d8dfd0ce0d01c4acaa9176f04677a5f07
DEBUG:proc:lightningd(1727): Adding block 3ca5fdd026be7e1a12b8031efab7ac695d0d407a87d308fbdf54c860c7909e2c
DEBUG:proc:lightningd(1727): Adding block 9ef9a4bbde0876738be26ebdf49552dd00213199ab6a05d3e15406353e04d52f
DEBUG:proc:lightningd(1727): Adding block 1f553048f3fd084eafff36635e2a141a781eb90ca98bb7d83309636c82bc685c
DEBUG:proc:lightningd(1727): Adding block 5b7c55a29602d69731bc868cd5d8f15f5169bc176c996ff0ce6ac41a7409a819
DEBUG:proc:lightningd(1727): Adding block 3305d72727574eac174509b51b7d19aad4d1a07ce7681d9c61611f08f29f0950
DEBUG:proc:lightningd(1727): Adding block c0e80b5b0484e3ff0462dd1a1f6fdda7b0ee82535ab559519ed87bb74f1bf520
DEBUG:proc:lightningd(1727): Adding block f265464be7d883170df23a90684605fc788788c6193408855657472dfbf2f07c
DEBUG:proc:lightningd(1727): Adding block f94da31a1d99c5a0adc82edf0b88f4bd84da2700c8fc84286e577bc83350bd6f
DEBUG:proc:lightningd(1727): Adding block 3e10f2b572bb648d568bc2532c66bd6e9767a271258e4254c8a123ca32fcb736
DEBUG:proc:lightningd(1727): Adding block a83cbc70a3e1f337941d1551468bd7f4941ef1812cfbf1052df495836666b707
DEBUG:proc:lightningd(1727): Adding block 3c444ec87600dce141e70c572c950629bd81a567d343e0b1d100cf1604422d04
DEBUG:proc:lightningd(1727): Adding block 932503e47667a926ef6767390f50c26c62cd538407769ce937052085d7d2ca24
DEBUG:proc:lightningd(1727): Adding block 72ecb3d7dac9090e605036a71941fc7c40ee50a5cd32ab530c5da2659051594d
DEBUG:proc:lightningd(1727): Adding block 348271a513f686f4d2ff22108ce1c74d8c07dbf588ce7c6cdf42f12838ce6174
DEBUG:proc:lightningd(1727): Adding block 82a8defa0c7ce049ddcd6216e8f7c7688f432f537a1beb6529bc44f65efac27a
DEBUG:proc:lightningd(1727): Adding block 490b26affabab0ef1661d96dae9ddfeca5ec86a2f8314179fd515c86f162285c
DEBUG:proc:lightningd(1727): Adding block 82832562593f23f0aca7134333187ea8f13265f02819968a680d7613e7216518
DEBUG:proc:lightningd(1727): Adding block 09900f10fbd21b76a452880a2d3eeed661ff01ebef1c51247fb27f248886e10b
DEBUG:proc:lightningd(1727): Adding block a6cd0e702c7d72b315c9b173e3566574dbab84c8b11c39b9d8df1f77fd7a935d
DEBUG:proc:lightningd(1727): Adding block 4d57a46956a0fb1a312c3dd039efabb137edda642e1f187c4d900c45461c902a
DEBUG:proc:lightningd(1727): Adding block 294c612d2986a62740b43ec39cc52a793ba38cf6b47346ad9b6829abb20cd62c
DEBUG:proc:lightningd(1727): Adding block 1fbd6095e4981b37670b18a35cda2a25c16c5c0221d113f4cb13b92710b6a94b
DEBUG:proc:lightningd(1727): Adding block 13842cc83ede2728e1ad4086bfe643e7fb7c6f3d1976cfd9dba5228ebfb1b955
DEBUG:proc:lightningd(1727): Adding block 60954feefdcd36058b82bcd12256033f511f5211ea75ea9c7420961633956f2a
DEBUG:proc:lightningd(1727): Adding block cdfda82f1c4f7815aba9009faf34d4834c43b48a1bb3bdffdd1117cc99608160
DEBUG:proc:lightningd(1727): Adding block 4f6a0d1eaec36cbfff466c4dd9005ce22fd70b711a0e0ae2077d0f51e3f6682d
DEBUG:proc:lightningd(1727): Adding block 0c48d0e12e87102ee08fcaa4e467e59cdf81f2441642c299c755fb7be469a80d
DEBUG:proc:lightningd(1727): Adding block c8948009918cc9e071a1d3d59ffaa72ee8a1c6eb2307701a19471266a016f954
DEBUG:proc:lightningd(1727): Adding block 77953eb9f2a6663ab899c3874718f891f97883fc24f40b8d46be15fbdb55546d
DEBUG:proc:lightningd(1727): Adding block 9ccb86d52fdbe60f1941d9a37fee8e6d634e3ad1bdee8f37f12cf27a1d0dd759
DEBUG:proc:lightningd(1727): Adding block ee4ffcfa2dedfae1fee351b3f20a24d5f6ddfda45e428693752d1bed5c4f150f
DEBUG:proc:lightningd(1727): Adding block dcfaaec187a876f27cbb0d536bb5b805ec68f9e2c982181d329626bfe9c31e7e
DEBUG:proc:lightningd(1727): Adding block f9e3b6a955e02351361b3a89233c0cdee4699bd50e696130147d5f3baca6e812
DEBUG:proc:lightningd(1727): Adding block 6d138337c9b0862375d1367d563c806cb4cb978b1f0e8f59b1185741de3f135d
DEBUG:proc:lightningd(1727): Adding block 232813955ec152c01b64d8404c71c70f6ca8483678e04decfaa2bc9f253f2836
DEBUG:proc:lightningd(1727): Adding block b6619aa548cff508df925dc98940a27d27f7aa4b728b4b305be24ad3384ab344
DEBUG:proc:lightningd(1727): Adding block 905473a1845dc0fab31790861d3670443e86ee3340af58c8c07311fa73248230
DEBUG:proc:lightningd(1727): Adding block 6fc38c9a1bac5b6c49bce5cc30aafa0de277e9f4b076829601a9cba4df181c3b
DEBUG:proc:lightningd(1727): Adding block fc2a47ca3d3da1f185ff55757123bc179b0fd3c3f3eec9637764d8b93ea1e538
DEBUG:proc:lightningd(1727): Adding block 53e9da6b59612cf155ca85b09ddc9124992d375556a23fdd647fc73a55b73b7a
DEBUG:proc:lightningd(1727): Adding block b561c3d35049804d4e47aeac5a5b1227e66a47c8fafc0700ebfc2d70ab224253
DEBUG:proc:lightningd(1727): Adding block 8a1c4e51c386f3eea8c1b647624123aaf3721f19cac89754e8c0ed2cf6bf3a64
DEBUG:proc:lightningd(1727): Adding block 8618379761e5fd766644d8de549f90e07d81fddbe7014d6374bb7e1221266653
DEBUG:proc:lightningd(1727): Adding block 09f5c4b830a00b1c4991f1853e8b4f7d880940ca0ff542f9608fa33fcac4cf79
DEBUG:proc:lightningd(1727): Adding block e07d12ec3dd7aae30cda8b905eda65803d2aa1af446f24ca62621096a76bc24c
DEBUG:proc:lightningd(1727): Adding block af9b9540038e6de03685e43ea4d822be211f3f199d07134e69f8b103774c6549
DEBUG:proc:lightningd(1727): Adding block 0d4a3fc0c04cb78fdc650fac81fdbeedb698c5d5ee7a84503b6be2b3b8531071
DEBUG:proc:lightningd(1727): Adding block a3d50a671aba83c6226f86ec9a88af67371900c73a0af1a251e6a846ab222a6c
DEBUG:proc:lightningd(1727): Adding block 8bb24506ce530679dadffc966c88c054daa3cb6c58f90af0d90c0ba797ea7034
DEBUG:proc:lightningd(1727): Adding block 786e831e3ccfa2d9286f39a898dd650893b057de1d8a740afd8fb2d3bcf01f2c
DEBUG:proc:lightningd(1727): Adding block 5f8d25597153bdf6bdfd52779662e16980797f366ec4211d1d6cd941a015a227
DEBUG:proc:lightningd(1727): Adding block a3ec743ccaf542ee6416849ec829acecc65395e9aded5a5f4d7df395e11cf27b
DEBUG:proc:lightningd(1727): Adding block 76b8c4b060cc52467105330eb946e953e238217a48ce789e600a5474741ad942
DEBUG:proc:lightningd(1727): Adding block 282b85cd9006874f3a01cf05b6057148ceccf1fb64ef9632fd3109d13b9c4f5c
DEBUG:proc:lightningd(1727): Adding block 602d6c3171fd3797a91fbc8393440c239d72055b01536cc8d98f02c6bdef2168
DEBUG:proc:lightningd(1727): Adding block d9738da3d2ce8a34090d24656f90fff0a6e6a586266040cf8a3669742b5f111f
DEBUG:proc:lightningd(1727): Adding block ca424d3df031c7d475b8f068885bf047b9d3aa49af7cb025bb59858e59393333
DEBUG:proc:lightningd(1727): Loaded 0 invoices from DB
DEBUG:proc:lightningd(1727): HSM TRACE: Control: type WIRE_HSMCTL_HSMFD_ECDH len 2
DEBUG:proc:lightning_gossipd(1843): pid 1843, msgfd 15
DEBUG:proc:lightningd(1727): Loaded 0 channels from DB
DEBUG:proc:lightningd(1727): Listening on 'lightning-rpc'
DEBUG:proc:lightningd(1727): Hello world from 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 aka LIGHTNINGSOUFFLE #02eec5 (version v0.5.2-2016-11-21-1199-gcfde208)!
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIPCTL_INIT len 78
DEBUG:proc:lightning_gossipd(1843): TRACE: Creating IPv6 listener on port 16333
DEBUG:proc:lightning_gossipd(1843): 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(1540): Connected json input
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getinfo call: {'result': {'address': [], 'blockheight': 1713, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'address': [], 'blockheight': 1713, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d'}
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:04.943 [DBG] SRVR: Connecting to 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:04.943 [DBG] RPCS: Connected to peer: 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:04.943 [DBG] CMGR: Attempting to connect to 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d@127.0.0.1:16332 (reqid 1)
DEBUG:root:
DEBUG:proc:lightning_gossipd(1724): TRACE: Responder: Act 1
DEBUG:proc:lightning_gossipd(1724): TRACE: Responder: Act 2
DEBUG:proc:lightning_gossipd(1724): TRACE: Responder: Act 3
DEBUG:lnd(16331):2017-11-29 18:04:04.945 [DBG] CMGR: Connected to 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d@127.0.0.1:16332 (reqid 1)
DEBUG:lnd(16331):2017-11-29 18:04:04.945 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:04.945 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16331):2017-11-29 18:04:04.945 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc42014ae20)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e0b0)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc420146160)({
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:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331):})
DEBUG:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:lnd(16331):
DEBUG:proc:lightning_gossipd(1724): TRACE: Forgetting remote peer 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc42014b050)({
DEBUG:proc:lightning_gossipd(1724): TRACE: handle_peer 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303: new peer
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4201461b0)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201461b8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:proc:lightning_gossipd(1724): TRACE: Received node_announcement for node 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:proc:lightning_gossipd(1724): TRACE: Node not found, was the node_announcement preceeded by at least channel_announcement?
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [DBG] PEER: Loaded 0 active channels from database with peerID(1)
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [INF] DISC: Syncing channel graph state with 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [INF] SRVR: Attempting to send msgs 1 to: 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [DBG] PEER: Sending NodeAnnouncement(node=02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303, update_time=2017-11-29 18:03:58 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:04.946 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc42054f440)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc42014b340)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4204f95a0)(75089102603357776050471998551386544149193562293131658123542713730615730368137),
DEBUG:lnd(16331): S: (*big.Int)(0xc4204f95c0)(48216753283194576439550262847754753209131728232926672484710121497175087374275)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4201461d8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975038,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4204f94a0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4204f94c0)(60855995489167091421297432653605452149513790049432525297806312807826344706819),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4204f94e0)(42566019767191356326052132926707150551992337484332660172119382031507623163056)
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) 02868b45d7bf09f16068,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:04:04.947 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16331):2017-11-29 18:04:04.958 [INF] RPCS: [newaddress] addr=2MtmfQC47R12DPyqXbC3i2DkAj77MbKdN6B
{"method": "sendtoaddress", "params": ["2MtmfQC47R12DPyqXbC3i2DkAj77MbKdN6B", 0.4], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:04 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:04 keypool reserve 1099
DEBUG:bitcoind:2017-11-29 17:04:05 Fee Calculation: Fee:6080 Bytes:304 Needed:6080 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.5/(0.5 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 17:04:05 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=7722698cc7, ver=2, vin.size=2, vout.size=2, nLockTime=1713)
DEBUG:bitcoind: CTxIn(COutPoint(e3dc83f361, 0), scriptSig=483045022100d076da153546, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(5e49ee7410, 0), scriptSig=47304402207d11ab2c9828ca, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=0.03939232, scriptPubKey=76a914502b033e40ea4846c45e9609)
DEBUG:bitcoind: CTxOut(nValue=0.40000000, scriptPubKey=a91410b9d152eb3e6d1ccb19cc6650)
DEBUG:bitcoind:2017-11-29 17:04:05 keypool keep 1099
DEBUG:bitcoind:2017-11-29 17:04:05 AddToWallet 7722698cc7505283afbea5db4ba8e7310e9daee4814f16dd65c08232a4c38c8f new
DEBUG:bitcoind:2017-11-29 17:04:05 AddToWallet 7722698cc7505283afbea5db4ba8e7310e9daee4814f16dd65c08232a4c38c8f
DEBUG:bitcoind:2017-11-29 17:04:05 Relaying wtx 7722698cc7505283afbea5db4ba8e7310e9daee4814f16dd65c08232a4c38c8f
DEBUG:root:Waiting for 'Inserting unconfirmed transaction' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:05.246 [INF] LNWL: Inserting unconfirmed transaction 7722698cc7505283afbea5db4ba8e7310e9daee4814f16dd65c08232a4c38c8f
DEBUG:root:Found 'Inserting unconfirmed transaction' in logs
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}DEBUG:lnd(16331):2017-11-29 18:04:05.247 [DBG] LNWL: Marked address 2MtmfQC47R12DPyqXbC3i2DkAj77MbKdN6B used
DEBUG:bitcoind:2017-11-29 17:04:05 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:05 keypool reserve 2130
DEBUG:bitcoind:2017-11-29 17:04:05 CreateNewBlock(): total size: 566 block weight: 2156 txs: 1 fees: 6080 sigops 404
DEBUG:bitcoind:2017-11-29 17:04:05 UpdateTip: new best=4fe6928db811f3469e3864f6ba37db197c4c5cc0c484055b4a3c79e0beb423e5 height=1714 version=0x20000000 log2_work=11.743993 tx=1896 date='2017-11-29 17:04:05' progress=1.000000 cache=0.4MiB(1878txo)
DEBUG:bitcoind:2017-11-29 17:04:05 AddToWallet 32911cbd60b5070de5348249d9570cef222e8c7421a4352f6a41fbb1a9ad4e79 new
DEBUG:bitcoind:2017-11-29 17:04:05 AddToWallet 7722698cc7505283afbea5db4ba8e7310e9daee4814f16dd65c08232a4c38c8f update
DEBUG:bitcoind:2017-11-29 17:04:05 keypool keep 2130
DEBUG:root:Waiting for 'Marking unconfirmed transaction' in the logs
DEBUG:proc:2017-11-29 18:04:05.383 [INF] BMGR: Processed 6 blocks in the last 18.72s (7 transactions, height 1714, 2017-11-29 18:04:05 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:04:05.385 [INF] LNWL: Marking unconfirmed transaction 7722698cc7505283afbea5db4ba8e7310e9daee4814f16dd65c08232a4c38c8f mined in block 1714
DEBUG:lnd(16331):2017-11-29 18:04:05.385 [INF] CRTR: Pruning channel graph using block 4fe6928db811f3469e3864f6ba37db197c4c5cc0c484055b4a3c79e0beb423e5 (height=1714)
DEBUG:root:Found 'Marking unconfirmed transaction' in logs
DEBUG:lnd(16331):2017-11-29 18:04:05.387 [INF] NTFN: New block: height=1714, sha=4fe6928db811f3469e3864f6ba37db197c4c5cc0c484055b4a3c79e0beb423e5
DEBUG:lnd(16331):2017-11-29 18:04:05.387 [DBG] LNWL: Marked address 2MtmfQC47R12DPyqXbC3i2DkAj77MbKdN6B used
DEBUG:lnd(16331):2017-11-29 18:04:05.403 [INF] CRTR: Block 4fe6928db811f3469e3864f6ba37db197c4c5cc0c484055b4a3c79e0beb423e5 (height=1714) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block e523b4bee0793c4a5b0584c4c05c4c7c19db37baf664389e46f311b88d92e64f
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block e523b4bee0793c4a5b0584c4c05c4c7c19db37baf664389e46f311b88d92e64f
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:06.389 [DBG] RPCS: [walletbalance] balance=0.4 BTC
DEBUG:lightning-node(16333):Calling getinfo with arguments ()
DEBUG:root:Calling getinfo with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:root:Received response for getinfo call: {'result': {'address': [], 'blockheight': 1714, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16333, 'id': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'address': [], 'blockheight': 1714, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16333, 'id': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045'}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16332):Calling connect with arguments ('02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'localhost:16333')
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Calling connect with arguments ('02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'localhost:16333')
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIPCTL_PEER_ADDRHINT len 42
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIPCTL_REACH_PEER len 35
DEBUG:proc:lightning_gossipd(1724): TRACE: Connected out for 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_gossipd(1724): TRACE: Initiator: Act 1
DEBUG:proc:lightning_gossipd(1724): TRACE: Initiator: Act 2
DEBUG:proc:lightning_gossipd(1843): TRACE: Responder: Act 1
DEBUG:proc:lightning_gossipd(1843): TRACE: Responder: Act 2
DEBUG:proc:lightning_gossipd(1843): TRACE: Responder: Act 3
DEBUG:proc:lightning_gossipd(1724): TRACE: Initiator: Act 3
DEBUG:proc:lightning_gossipd(1843): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(1843): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightning_gossipd(1724): TRACE: Forgetting remote peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 193
DEBUG:proc:lightning_gossipd(1724): TRACE: handle_peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: new peer
DEBUG:proc:lightning_gossipd(1843): TRACE: Forgetting remote peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:proc:lightning_gossipd(1843): TRACE: handle_peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: new peer
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for connect call: {'result': {'id': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'id': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045'}
DEBUG:lightning-node(16332):Calling newaddr with arguments ()
DEBUG:root:Calling newaddr with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for newaddr call: {'result': {'address': '2MtqeaNeA57VnANkgoYpVgj71n4AHHAXVe7'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'address': '2MtqeaNeA57VnANkgoYpVgj71n4AHHAXVe7'}
{"method": "sendtoaddress", "params": ["2MtqeaNeA57VnANkgoYpVgj71n4AHHAXVe7", 0.4], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (No such file or directory)
DEBUG:bitcoind:2017-11-29 17:04:06 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:06 keypool reserve 1100
DEBUG:bitcoind:2017-11-29 17:04:06 Fee Calculation: Fee:6760 Bytes:338 Needed:6760 Tgt:6 (requested 6) Reason:"Fallback fee" Decay 0.96200: Estimation: (-1 - -1) -nan% 0.0/(0.0 0 mem 0.0 out) Fail: (0 - 1e+99) 100.00% 1.5/(1.5 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 17:04:06 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=06f3af8edb, ver=2, vin.size=2, vout.size=2, nLockTime=1714)
DEBUG:bitcoind: CTxIn(COutPoint(7c0fa0d914, 0), scriptSig=473044022037638e16c41bf1, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(7722698cc7, 0), scriptSig=473044022027cdc21fbccac2, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=0.40000000, scriptPubKey=a914117acb1677b5cf8925f1535908)
DEBUG:bitcoind: CTxOut(nValue=0.02994972, scriptPubKey=76a914d16a31f526eb39b65a889e81)
DEBUG:bitcoind:2017-11-29 17:04:06 keypool keep 1100
DEBUG:bitcoind:2017-11-29 17:04:06 AddToWallet 06f3af8edbef72052bf3165fff23d3ca767071a5e5b676a6ea0e5892de8ae045 new
DEBUG:bitcoind:2017-11-29 17:04:06 AddToWallet 06f3af8edbef72052bf3165fff23d3ca767071a5e5b676a6ea0e5892de8ae045
DEBUG:bitcoind:2017-11-29 17:04:06 Relaying wtx 06f3af8edbef72052bf3165fff23d3ca767071a5e5b676a6ea0e5892de8ae045
{"method": "getrawtransaction", "params": ["06f3af8edbef72052bf3165fff23d3ca767071a5e5b676a6ea0e5892de8ae045"], "id": 1, "version": "1.1"}
DEBUG:lightning-node(16332):Calling addfunds with arguments ('020000000276abcdcab054f01dc2877afe6d98d48b4fff68fab1d045494a36ce14d9a00f7c0000000048473044022037638e16c41bf19dbb18b2775e06d66c908db6b3b87f5b27a289fd8a5a60feac02206d3379da060691b60db676b7d1082dcf49a536361734d3401ab8c99bb866fae101feffffff8f8cc3a43282c065dd164f81e4ae9d0e31e7a84bdba5beaf835250c78c692277000000006a473044022027cdc21fbccac2e39119df013dfd3a208548ef33ebd297cfffca98e18447405c02207f889ccd3580fdda65127298b3176426290ee578fc3a0f09de7f74f0e460cde2012102fdd393a8ba2404b2ec1b9f49191181a3647562d3e4a28beea843e3e06fe9c45afeffffff02005a62020000000017a914117acb1677b5cf8925f1535908c89a9250cec6af871cb32d00000000001976a914d16a31f526eb39b65a889e81f99335d7fc1cc0c988acb2060000',)
DEBUG:root:Calling addfunds with arguments ('020000000276abcdcab054f01dc2877afe6d98d48b4fff68fab1d045494a36ce14d9a00f7c0000000048473044022037638e16c41bf19dbb18b2775e06d66c908db6b3b87f5b27a289fd8a5a60feac02206d3379da060691b60db676b7d1082dcf49a536361734d3401ab8c99bb866fae101feffffff8f8cc3a43282c065dd164f81e4ae9d0e31e7a84bdba5beaf835250c78c692277000000006a473044022027cdc21fbccac2e39119df013dfd3a208548ef33ebd297cfffca98e18447405c02207f889ccd3580fdda65127298b3176426290ee578fc3a0f09de7f74f0e460cde2012102fdd393a8ba2404b2ec1b9f49191181a3647562d3e4a28beea843e3e06fe9c45afeffffff02005a62020000000017a914117acb1677b5cf8925f1535908c89a9250cec6af871cb32d00000000001976a914d16a31f526eb39b65a889e81f99335d7fc1cc0c988acb2060000',)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightningd(1540): Owning output 0 40000000 (P2SH) txid 45e08ade92580eeaa676b6e5a5717076cad323ff5f16f32b0572efdb8eaff306
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for addfunds call: {'result': {'satoshis': 40000000, 'outputs': 1}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'satoshis': 40000000, 'outputs': 1}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lnd(16331):2017-11-29 18:04:06.519 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:04:06.519 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lnd(16331):2017-11-29 18:04:06.519 [TRC] RPCS: [openchannel] request to peerid(1) allocation(us=10000000, them=0)
DEBUG:lnd(16331):2017-11-29 18:04:06.520 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:04:06.520 [DBG] RPCS: [openchannel]: using fee of 25 sat/byte for funding tx
DEBUG:lnd(16331):2017-11-29 18:04:06.520 [INF] FNDG: Initiating fundingRequest(localAmt=0.1 BTC, remoteAmt=0 mSAT, capacity=0.1 BTC, chainhash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, addr=127.0.0.1:16332, dustLimit=0.00000573 BTC)
DEBUG:lnd(16331):2017-11-29 18:04:06.520 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:04:06.520 [INF] LNWL: Performing funding tx coin selection using 6 sat/weight as fee rate
DEBUG:lnd(16331):2017-11-29 18:04:06.562 [INF] FNDG: Target commit tx sat/kw for pendingID(b3725d7d06fd31dadaaba7565b5a29ddf89bfe6e7795198c0602468acb779feb): 6000
DEBUG:lnd(16331):2017-11-29 18:04:06.562 [INF] FNDG: Starting funding workflow with 127.0.0.1:16332 for pendingID(b3725d7d06fd31dadaaba7565b5a29ddf89bfe6e7795198c0602468acb779feb)
DEBUG:lnd(16331):2017-11-29 18:04:06.562 [INF] SRVR: Attempting to send msgs 1 to: 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:lnd(16331):2017-11-29 18:04:06.563 [DBG] PEER: Sending MsgOpenChannel(temp_chan_id=b3725d7d06fd31dadaaba7565b5a29ddf89bfe6e7795198c0602468acb779feb, chain=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, csv=4, amt=0.1 BTC, push_amt=0 mSAT, reserve=0.001 BTC, flags=1) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:06.563 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.OpenChannel)(0xc42058a8f0)({
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 b3 72 5d 7d 06 fd 31 da da ab a7 56 5b 5a 29 dd |.r]}..1....V[Z).|
DEBUG:lnd(16331): 00000010 f8 9b fe 6e 77 95 19 8c 06 02 46 8a cb 77 9f eb |...nw.....F..w..|
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)(0xc420678e10)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4201c5220)(5717935851703773353643327031570384454665951891373317951014113112868490735757),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201c5260)(18183617825891371148994128409638763479990794776040369033947702138504700687760)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RevocationPoint: (*btcec.PublicKey)(0xc4206794a0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4201c5e20)(111168007211012426905544438692267470570527660037719473920090609721130226643068),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201c5e60)(89194578192178224457771800621911976228798115329008204863877350398113405544283)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): PaymentPoint: (*btcec.PublicKey)(0xc4206929f0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4206a8460)(71026679963869332632561793847190027976435903798845889446440021269561695676691),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4206a8480)(36853665950791060073967384073114673841306600040796879169377262527462767062857)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4206930b0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4206a8d60)(44212817298169861156571204181451234549048874647434372497794552177652947688261),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4206a8d80)(62020283036478154856639793709948758940537614470181437420983638902216378635044)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): HtlcPoint: (*btcec.PublicKey)(0xc420679b30)({
DEBUG:lnd(16331): Curve: (*btcec.KoblitzCurve)(0x14eb520)({
DEBUG:lnd(16331): CurveParams: (*elliptic.CurveParams)(0xc420018ec0)({
DEBUG:lnd(16331): P: (*big.Int)(0xc42000d120)(115792089237316195423570985008687907853269984665640564039457584007908834671663),
DEBUG:lnd(16331): N: (*big.Int)(0xc42000d160)(115792089237316195423570985008687907852837564279074904382605163141518161494337),
DEBUG:lnd(16331): B: (*big.Int)(0xc42000d1a0)(7),
DEBUG:lnd(16331): Gx: (*big.Int)(0xc42000d1e0)(55066263022277343669578718895168534326250603453777594175500187360389116729240),
DEBUG:lnd(16331): Gy: (*big.Int)(0xc42000d220)(32670510020758816978083085130507043184471273380659243275938904335757337482424),
DEBUG:lnd(16331): BitSize: (int) 256,
DEBUG:lnd(16331): Name: (string) ""
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): q: (*big.Int)(0xc42000d260)(28948022309329048855892746252171976963317496166410141009864396001977208667916),
DEBUG:lnd(16331): H: (int) 1,
DEBUG:lnd(16331): halfOrder: (*big.Int)(0xc42000d2c0)(57896044618658097711785492504343953926418782139537452191302581570759080747168),
DEBUG:lnd(16331): byteSize: (int) 32,
DEBUG:lnd(16331): (btcec.fieldVal) 0000000000000000000000000000000000000000000000000000000000000000
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): },
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): lambda: (*big.Int)(0xc42000db80)(37718080363155996902926221483475020450927657555482586988616620542887997980018),
DEBUG:lnd(16331): beta: (*btcec.fieldVal)(0xc420015110)(7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee),
DEBUG:lnd(16331): a1: (*big.Int)(0xc42000dbe0)(64502973549206556628585045361533709077),
DEBUG:lnd(16331): b1: (*big.Int)(0xc42000dc20)(-303414439467246543595250775667605759171),
DEBUG:lnd(16331): a2: (*big.Int)(0xc42000dc60)(367917413016453100223835821029139468248),
DEBUG:lnd(16331): b2: (*big.Int)(0xc42000dca0)(64502973549206556628585045361533709077)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): X: (*big.Int)(0xc42069c7a0)(9474175788019829562381030209091388919186359763709886086938990881098360135370),
DEBUG:lnd(16331): Y: (*big.Int)(0xc42069c7c0)(60920724466765629770813875368601026570735136561744285052171871098509643271407)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): FirstCommitmentPoint: (*btcec.PublicKey)(0xc4206a9e20)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4206a9da0)(5370708913332337827451372056718661353809978359863583908090449202849173113149),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4206a9dc0)(20629341232466822458641834844814582629857451248042439415361284209166669620648)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelFlags: (lnwire.FundingFlag) 1
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightningd(1540): peer 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303: state: UNINITIALIZED -> OPENINGD
DEBUG:proc:lightning_openingd(1928): pid 1928, msgfd 18
DEBUG:proc:lightningd(1540): No fee estimate for Immediate: basing on default fee rate
DEBUG:proc:lightningd(1540): No fee estimate for Slow: basing on default fee rate
DEBUG:lnd(16331):2017-11-29 18:04:08.240 [DBG] PEER: Received Error(chan_id=b3725d7d06fd31dadaaba7565b5a29ddf89bfe6e7795198c0602468acb779feb, err=[102 101 101 114 97 116 101 95 112 101 114 95 107 119 32 54 48 48 48 32 98 101 108 111 119 32 109 105 110 105 109 117 109 32 49 48 48 48 48 0]) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:08.240 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Error)(0xc420142180)({
DEBUG:lnd(16331): ChanID: (lnwire.ChannelID) (len=32 cap=32) b3725d7d06fd31dadaaba7565b5a29ddf89bfe6e7795198c0602468acb779feb,
DEBUG:lnd(16331): Data: (lnwire.ErrorData) (len=40 cap=40) {
DEBUG:lnd(16331): 00000000 66 65 65 72 61 74 65 5f 70 65 72 5f 6b 77 20 36 |feerate_per_kw 6|
DEBUG:lnd(16331): 00000010 30 30 30 20 62 65 6c 6f 77 20 6d 69 6e 69 6d 75 |000 below minimu|
DEBUG:lnd(16331): 00000020 6d 20 31 30 30 30 30 00 |m 10000.|
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [INF] PEER: unable to read message from 127.0.0.1:16332: EOF
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [TRC] PEER: Disconnecting 127.0.0.1:16332, reason: read handler closed
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [ERR] FNDG: Received funding error from 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: unknown error
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [INF] FNDG: Cancelling funding reservation for node_key=0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d, chan_id=b3725d7d06fd31dadaaba7565b5a29ddf89bfe6e7795198c0602468acb779feb
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [TRC] PEER: writeHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [DBG] SRVR: Peer 127.0.0.1:16332 has been disconnected
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [DBG] FNDG: Cancelling all reservations for peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [ERR] SRVR: unable to get channel links: unable to locate channel link bydestination hop id 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [DBG] SRVR: removing peer 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [DBG] SRVR: Attempting to re-establish persistent connection to peer 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:08.241 [DBG] CMGR: Attempting to connect to 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d@127.0.0.1:16332 (reqid 2)
DEBUG:lnd(16331):2017-11-29 18:04:08.242 [TRC] PEER: readHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 18:04:08.242 [TRC] PEER: Update stream for gossiper exited
DEBUG:lnd(16331):2017-11-29 18:04:08.242 [ERR] RPCS: unable to open channel to identityPub() nor peerID(1): rpc error: code = Code(202) desc = unknown error
DEBUG:lnd(16331):2017-11-29 18:04:08.242 [DBG] CMGR: Disconnected from 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d@127.0.0.1:16332 (reqid 1)
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [DBG] CMGR: Connected to 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d@127.0.0.1:16332 (reqid 2)
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc42014a440)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e0b0)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc420276008)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc42009c810)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e008)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:proc:lightning_gossipd(1724): TRACE: Forgetting remote peer 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303
DEBUG:proc:lightning_openingd(1928): TRACE: First per_commit_point = 03f42d714c9975b70a80d2996f23670a84777e63b8bdec5440c291fcb00045a64b
DEBUG:lnd(16331): }
DEBUG:proc:lightning_gossipd(1724): TRACE: Responder: Act 1
DEBUG:lnd(16331): }),
DEBUG:proc:lightning_openingd(1928): STATUS_FAIL_PEER_BAD: feerate_per_kw 6000 below minimum 10000
DEBUG:proc:lightningd(1540): peer 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303: Peer permanent failure in OPENINGD: feerate_per_kw 6000 below minimum 10000
DEBUG:proc:lightning_gossipd(1724): TRACE: Responder: Act 2
DEBUG:proc:lightning_gossipd(1724): TRACE: Responder: Act 3
DEBUG:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(1724): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(1724): TRACE: Forgetting remote peer 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42000e028)({
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:proc:lightning_gossipd(1724): TRACE: handle_peer 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303: new peer
DEBUG:lnd(16331):})
DEBUG:proc:lightning_gossipd(1724): TRACE: Received node_announcement for node 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303
DEBUG:lnd(16331):
DEBUG:proc:lightning_gossipd(1724): TRACE: Node not found, was the node_announcement preceeded by at least channel_announcement?
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [DBG] PEER: Loaded 0 active channels from database with peerID(2)
DEBUG:lnd(16331):2017-11-29 18:04:08.244 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16331):2017-11-29 18:04:08.245 [INF] DISC: Syncing channel graph state with 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 18:04:08.245 [INF] SRVR: Attempting to send msgs 1 to: 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:lnd(16331):2017-11-29 18:04:08.245 [DBG] PEER: Sending NodeAnnouncement(node=02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303, update_time=2017-11-29 18:03:58 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:04:08.245 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4202899e0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc42014a7f0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4204f9d40)(75089102603357776050471998551386544149193562293131658123542713730615730368137),
DEBUG:lnd(16331): S: (*big.Int)(0xc4204f9d60)(48216753283194576439550262847754753209131728232926672484710121497175087374275)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc420276020)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975038,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4204f9c40)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4204f9c60)(60855995489167091421297432653605452149513790049432525297806312807826344706819),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4204f9c80)(42566019767191356326052132926707150551992337484332660172119382031507623163056)
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) 02868b45d7bf09f16068,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
Waiting for channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d to confirm
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lnd(16331):2017-11-29 18:04:11.532 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:04:11.532 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lnd(16331):2017-11-29 18:04:12.535 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:12 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:12 keypool reserve 2131
DEBUG:bitcoind:2017-11-29 17:04:12 CreateNewBlock(): total size: 599 block weight: 2288 txs: 1 fees: 6760 sigops 404
DEBUG:bitcoind:2017-11-29 17:04:12 UpdateTip: new best=34e866557006d4921b2a46f975a0f570b684828afa67a5aa46f94a076ee67fdd height=1715 version=0x20000000 log2_work=11.744834 tx=1898 date='2017-11-29 17:04:12' progress=1.000000 cache=0.4MiB(1880txo)
DEBUG:bitcoind:2017-11-29 17:04:12 AddToWallet 79e08f2f1352deb22c245916ae779d069c28e25dec953c783d88f5e52625b20d new
DEBUG:bitcoind:2017-11-29 17:04:12 AddToWallet 06f3af8edbef72052bf3165fff23d3ca767071a5e5b676a6ea0e5892de8ae045 update
DEBUG:bitcoind:2017-11-29 17:04:12 keypool keep 2131
DEBUG:lnd(16331):2017-11-29 18:04:12.567 [INF] CRTR: Pruning channel graph using block 34e866557006d4921b2a46f975a0f570b684828afa67a5aa46f94a076ee67fdd (height=1715)
DEBUG:lnd(16331):2017-11-29 18:04:12.568 [INF] NTFN: New block: height=1715, sha=34e866557006d4921b2a46f975a0f570b684828afa67a5aa46f94a076ee67fdd
DEBUG:lnd(16331):2017-11-29 18:04:12.576 [INF] CRTR: Block 34e866557006d4921b2a46f975a0f570b684828afa67a5aa46f94a076ee67fdd (height=1715) closed 0 channels
Waiting for node to learn about 34e866557006d4921b2a46f975a0f570b684828afa67a5aa46f94a076ee67fdd
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=34e866557006d4921b2a46f975a0f570b684828afa67a5aa46f94a076ee67fdd' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=34e866557006d4921b2a46f975a0f570b684828afa67a5aa46f94a076ee67fdd' in logs
DEBUG:proc:lightningd(1727): Adding block dd7fe66e074af946aaa567fa8a8284b670f5a075f9462a1b92d406705566e834
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block dd7fe66e074af946aaa567fa8a8284b670f5a075f9462a1b92d406705566e834
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:14.591 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:14 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:14 keypool reserve 2132
DEBUG:bitcoind:2017-11-29 17:04:14 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:14 UpdateTip: new best=3a074af18355e4499657ac7a3750ecfceaf6d93d8831491650d931a72961dab0 height=1716 version=0x20000000 log2_work=11.745674 tx=1899 date='2017-11-29 17:04:14' progress=1.000000 cache=0.4MiB(1881txo)
DEBUG:bitcoind:2017-11-29 17:04:14 AddToWallet b88bf8c45d3d74fc468267aa03d7fe9a8f2877961dc5cf1982b1b4060ef5da44 new
DEBUG:bitcoind:2017-11-29 17:04:14 keypool keep 2132
Waiting for node to learn about 3a074af18355e4499657ac7a3750ecfceaf6d93d8831491650d931a72961dab0
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=3a074af18355e4499657ac7a3750ecfceaf6d93d8831491650d931a72961dab0' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:14.726 [INF] CRTR: Pruning channel graph using block 3a074af18355e4499657ac7a3750ecfceaf6d93d8831491650d931a72961dab0 (height=1716)
DEBUG:lnd(16331):2017-11-29 18:04:14.729 [INF] NTFN: New block: height=1716, sha=3a074af18355e4499657ac7a3750ecfceaf6d93d8831491650d931a72961dab0
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=3a074af18355e4499657ac7a3750ecfceaf6d93d8831491650d931a72961dab0' in logs
DEBUG:lnd(16331):2017-11-29 18:04:14.737 [INF] CRTR: Block 3a074af18355e4499657ac7a3750ecfceaf6d93d8831491650d931a72961dab0 (height=1716) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block b0da6129a731d950164931883dd9f6eafcec50377aac579649e45583f14a073a
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block b0da6129a731d950164931883dd9f6eafcec50377aac579649e45583f14a073a
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:16.735 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:16 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:16 keypool reserve 2133
DEBUG:bitcoind:2017-11-29 17:04:16 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:16 UpdateTip: new best=03ed955022a3f11533574e0d36884f2782b6e968d4588a1541feb6d5ae18f891 height=1717 version=0x20000000 log2_work=11.746514 tx=1900 date='2017-11-29 17:04:16' progress=1.000000 cache=0.4MiB(1882txo)
DEBUG:bitcoind:2017-11-29 17:04:16 AddToWallet 233d14834ca468a942fd61b6a9bff90d24690cf30221a8c57a68d825fc11649e new
DEBUG:bitcoind:2017-11-29 17:04:16 keypool keep 2133
Waiting for node to learn about 03ed955022a3f11533574e0d36884f2782b6e968d4588a1541feb6d5ae18f891
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=03ed955022a3f11533574e0d36884f2782b6e968d4588a1541feb6d5ae18f891' in the logs
DEBUG:proc:2017-11-29 18:04:16.871 [INF] BMGR: Processed 3 blocks in the last 11.48s (4 transactions, height 1717, 2017-11-29 18:04:16 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:04:16.873 [INF] CRTR: Pruning channel graph using block 03ed955022a3f11533574e0d36884f2782b6e968d4588a1541feb6d5ae18f891 (height=1717)
DEBUG:lnd(16331):2017-11-29 18:04:16.875 [INF] NTFN: New block: height=1717, sha=03ed955022a3f11533574e0d36884f2782b6e968d4588a1541feb6d5ae18f891
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=03ed955022a3f11533574e0d36884f2782b6e968d4588a1541feb6d5ae18f891' in logs
DEBUG:lnd(16331):2017-11-29 18:04:16.882 [INF] CRTR: Block 03ed955022a3f11533574e0d36884f2782b6e968d4588a1541feb6d5ae18f891 (height=1717) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 91f818aed5b6fe41158a58d468e9b682274f88360d4e573315f1a3225095ed03
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 91f818aed5b6fe41158a58d468e9b682274f88360d4e573315f1a3225095ed03
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:18.879 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:18 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:18 keypool reserve 2138
DEBUG:bitcoind:2017-11-29 17:04:18 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:18 UpdateTip: new best=61b2442fdf90d294e8f383892ada4d172a2ff46757cf7e9f7aff079061a99d26 height=1718 version=0x20000000 log2_work=11.747354 tx=1901 date='2017-11-29 17:04:18' progress=1.000000 cache=0.4MiB(1883txo)
DEBUG:bitcoind:2017-11-29 17:04:18 AddToWallet 0012bead48882fc4e0ea9edba83eab3303931405e791237787256dd5f6f63789 new
DEBUG:bitcoind:2017-11-29 17:04:18 keypool keep 2138
DEBUG:lnd(16331):2017-11-29 18:04:18.927 [INF] CRTR: Pruning channel graph using block 61b2442fdf90d294e8f383892ada4d172a2ff46757cf7e9f7aff079061a99d26 (height=1718)
DEBUG:lnd(16331):2017-11-29 18:04:18.928 [INF] NTFN: New block: height=1718, sha=61b2442fdf90d294e8f383892ada4d172a2ff46757cf7e9f7aff079061a99d26
DEBUG:lnd(16331):2017-11-29 18:04:18.938 [INF] CRTR: Block 61b2442fdf90d294e8f383892ada4d172a2ff46757cf7e9f7aff079061a99d26 (height=1718) closed 0 channels
Waiting for node to learn about 61b2442fdf90d294e8f383892ada4d172a2ff46757cf7e9f7aff079061a99d26
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=61b2442fdf90d294e8f383892ada4d172a2ff46757cf7e9f7aff079061a99d26' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=61b2442fdf90d294e8f383892ada4d172a2ff46757cf7e9f7aff079061a99d26' in logs
DEBUG:proc:lightningd(1727): Adding block 269da9619007ff7a9f7ecf5767f42f2a174dda2a8983f3e894d290df2f44b261
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 269da9619007ff7a9f7ecf5767f42f2a174dda2a8983f3e894d290df2f44b261
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:20.962 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:20 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:20 keypool reserve 2139
DEBUG:bitcoind:2017-11-29 17:04:20 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:20 UpdateTip: new best=047e8ba0279d8a78c6adc134c02d2a242727ec3cc30df78273521b2a2f5a9e98 height=1719 version=0x20000000 log2_work=11.748193 tx=1902 date='2017-11-29 17:04:20' progress=1.000000 cache=0.4MiB(1884txo)
DEBUG:bitcoind:2017-11-29 17:04:20 AddToWallet a6c47912f2d77efaa762bce71e98c93aca876b58d0a11ab56bec671dbcf27cbf new
DEBUG:bitcoind:2017-11-29 17:04:20 keypool keep 2139
Waiting for node to learn about 047e8ba0279d8a78c6adc134c02d2a242727ec3cc30df78273521b2a2f5a9e98
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=047e8ba0279d8a78c6adc134c02d2a242727ec3cc30df78273521b2a2f5a9e98' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:21.097 [INF] CRTR: Pruning channel graph using block 047e8ba0279d8a78c6adc134c02d2a242727ec3cc30df78273521b2a2f5a9e98 (height=1719)
DEBUG:lnd(16331):2017-11-29 18:04:21.097 [INF] NTFN: New block: height=1719, sha=047e8ba0279d8a78c6adc134c02d2a242727ec3cc30df78273521b2a2f5a9e98
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=047e8ba0279d8a78c6adc134c02d2a242727ec3cc30df78273521b2a2f5a9e98' in logs
DEBUG:lnd(16331):2017-11-29 18:04:21.111 [INF] CRTR: Block 047e8ba0279d8a78c6adc134c02d2a242727ec3cc30df78273521b2a2f5a9e98 (height=1719) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 989e5a2f2a1b527382f70dc33cec2727242a2dc034c1adc6788a9d27a08b7e04
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 989e5a2f2a1b527382f70dc33cec2727242a2dc034c1adc6788a9d27a08b7e04
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:23.101 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:23 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:23 keypool reserve 2144
DEBUG:bitcoind:2017-11-29 17:04:23 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:23 UpdateTip: new best=2222fb6956ca8a868fc9ee5a973ed55e31ac9ac01766860e90b2ff74f32ed6d0 height=1720 version=0x20000000 log2_work=11.749031 tx=1903 date='2017-11-29 17:04:23' progress=1.000000 cache=0.4MiB(1885txo)
DEBUG:bitcoind:2017-11-29 17:04:23 AddToWallet a4e3980d64511624e313c384eac2484fba732deaa5524fedd45e283c871bf79f new
DEBUG:bitcoind:2017-11-29 17:04:23 keypool keep 2144
DEBUG:lnd(16331):2017-11-29 18:04:23.158 [INF] CRTR: Pruning channel graph using block 2222fb6956ca8a868fc9ee5a973ed55e31ac9ac01766860e90b2ff74f32ed6d0 (height=1720)
DEBUG:lnd(16331):2017-11-29 18:04:23.159 [INF] NTFN: New block: height=1720, sha=2222fb6956ca8a868fc9ee5a973ed55e31ac9ac01766860e90b2ff74f32ed6d0
DEBUG:lnd(16331):2017-11-29 18:04:23.178 [INF] CRTR: Block 2222fb6956ca8a868fc9ee5a973ed55e31ac9ac01766860e90b2ff74f32ed6d0 (height=1720) closed 0 channels
Waiting for node to learn about 2222fb6956ca8a868fc9ee5a973ed55e31ac9ac01766860e90b2ff74f32ed6d0
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2222fb6956ca8a868fc9ee5a973ed55e31ac9ac01766860e90b2ff74f32ed6d0' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2222fb6956ca8a868fc9ee5a973ed55e31ac9ac01766860e90b2ff74f32ed6d0' in logs
DEBUG:proc:lightningd(1727): Adding block d0d62ef374ffb2900e866617c09aac315ed53e975aeec98f868aca5669fb2222
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block d0d62ef374ffb2900e866617c09aac315ed53e975aeec98f868aca5669fb2222
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:25.210 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:25 keypool reserve 2145
DEBUG:bitcoind:2017-11-29 17:04:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:25 UpdateTip: new best=41ec0fcf5f89c391777d52f58236ca707115da7ed0dffa4c0d9a412f26704702 height=1721 version=0x20000000 log2_work=11.749869 tx=1904 date='2017-11-29 17:04:25' progress=1.000000 cache=0.4MiB(1886txo)
DEBUG:bitcoind:2017-11-29 17:04:25 AddToWallet 120ba7882a21aaf26bfafa5ae1fda289f5b3f51e5376475adf563ef86e188303 new
DEBUG:lnd(16331):2017-11-29 18:04:25.242 [INF] CRTR: Pruning channel graph using block 41ec0fcf5f89c391777d52f58236ca707115da7ed0dffa4c0d9a412f26704702 (height=1721)
DEBUG:lnd(16331):2017-11-29 18:04:25.244 [INF] NTFN: New block: height=1721, sha=41ec0fcf5f89c391777d52f58236ca707115da7ed0dffa4c0d9a412f26704702
DEBUG:bitcoind:2017-11-29 17:04:25 keypool keep 2145
DEBUG:lnd(16331):2017-11-29 18:04:25.257 [INF] CRTR: Block 41ec0fcf5f89c391777d52f58236ca707115da7ed0dffa4c0d9a412f26704702 (height=1721) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 024770262f419a0d4cfadfd07eda157170ca3682f5527d7791c3895fcf0fec41
Waiting for node to learn about 41ec0fcf5f89c391777d52f58236ca707115da7ed0dffa4c0d9a412f26704702
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=41ec0fcf5f89c391777d52f58236ca707115da7ed0dffa4c0d9a412f26704702' in the logs
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=41ec0fcf5f89c391777d52f58236ca707115da7ed0dffa4c0d9a412f26704702' in logs
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 024770262f419a0d4cfadfd07eda157170ca3682f5527d7791c3895fcf0fec41
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:27.297 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:27 keypool reserve 2150
DEBUG:bitcoind:2017-11-29 17:04:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:27 UpdateTip: new best=0c548dbdc23174624f348393f2663011668250e0f36f0055e682e48704c397f3 height=1722 version=0x20000000 log2_work=11.750707 tx=1905 date='2017-11-29 17:04:27' progress=1.000000 cache=0.4MiB(1887txo)
DEBUG:bitcoind:2017-11-29 17:04:27 AddToWallet 0efc915fdd455f087d0c0a9be5f610ae007b40ba925b228fa8fc47fb2ed46206 new
DEBUG:bitcoind:2017-11-29 17:04:27 keypool keep 2150
Waiting for node to learn about 0c548dbdc23174624f348393f2663011668250e0f36f0055e682e48704c397f3
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=0c548dbdc23174624f348393f2663011668250e0f36f0055e682e48704c397f3' in the logs
DEBUG:proc:2017-11-29 18:04:27.414 [INF] BMGR: Processed 5 blocks in the last 10.54s (5 transactions, height 1722, 2017-11-29 18:04:27 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:04:27.415 [INF] CRTR: Pruning channel graph using block 0c548dbdc23174624f348393f2663011668250e0f36f0055e682e48704c397f3 (height=1722)
DEBUG:lnd(16331):2017-11-29 18:04:27.415 [INF] NTFN: New block: height=1722, sha=0c548dbdc23174624f348393f2663011668250e0f36f0055e682e48704c397f3
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=0c548dbdc23174624f348393f2663011668250e0f36f0055e682e48704c397f3' in logs
DEBUG:lnd(16331):2017-11-29 18:04:27.423 [INF] CRTR: Block 0c548dbdc23174624f348393f2663011668250e0f36f0055e682e48704c397f3 (height=1722) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block f397c30487e482e655006ff3e0508266113066f29383344f627431c2bd8d540c
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block f397c30487e482e655006ff3e0508266113066f29383344f627431c2bd8d540c
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:29.418 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:29 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:29 keypool reserve 2151
DEBUG:bitcoind:2017-11-29 17:04:29 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:29 UpdateTip: new best=48baea59b14c6542c26ee1a12f1817df9c821a09e140471ff0a1569439ecba68 height=1723 version=0x20000000 log2_work=11.751544 tx=1906 date='2017-11-29 17:04:29' progress=1.000000 cache=0.4MiB(1888txo)
DEBUG:bitcoind:2017-11-29 17:04:29 AddToWallet f06fb032d7f28d920dd3f5b99e86b58b0a6c965027d52647f72bd9ccedb47fcd new
DEBUG:bitcoind:2017-11-29 17:04:29 keypool keep 2151
DEBUG:lnd(16331):2017-11-29 18:04:29.483 [INF] CRTR: Pruning channel graph using block 48baea59b14c6542c26ee1a12f1817df9c821a09e140471ff0a1569439ecba68 (height=1723)
DEBUG:lnd(16331):2017-11-29 18:04:29.484 [INF] NTFN: New block: height=1723, sha=48baea59b14c6542c26ee1a12f1817df9c821a09e140471ff0a1569439ecba68
Waiting for node to learn aboutDEBUG:lnd(16331):2017-11-29 18:04:29.490 [INF] CRTR: Block 48baea59b14c6542c26ee1a12f1817df9c821a09e140471ff0a1569439ecba68 (height=1723) closed 0 channels
48baea59b14c6542c26ee1a12f1817df9c821a09e140471ff0a1569439ecba68
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=48baea59b14c6542c26ee1a12f1817df9c821a09e140471ff0a1569439ecba68' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=48baea59b14c6542c26ee1a12f1817df9c821a09e140471ff0a1569439ecba68' in logs
DEBUG:proc:lightningd(1540): Adding block 68baec399456a1f01f4740e1091a829cdf17182fa1e16ec242654cb159eaba48
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 68baec399456a1f01f4740e1091a829cdf17182fa1e16ec242654cb159eaba48
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:31.510 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:31 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:31 keypool reserve 2156
DEBUG:bitcoind:2017-11-29 17:04:31 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:31 UpdateTip: new best=62487a8c6bd9802c1c4f9d3b371e84e6205adc64d8b8744b13db7b4604781503 height=1724 version=0x20000000 log2_work=11.752381 tx=1907 date='2017-11-29 17:04:31' progress=1.000000 cache=0.4MiB(1889txo)
DEBUG:bitcoind:2017-11-29 17:04:31 AddToWallet a9d6ec08691665b3080c41ad10ce2b5f69a59fd434b60b22587e8c39ee54d14c new
DEBUG:bitcoind:2017-11-29 17:04:31 keypool keep 2156
DEBUG:lnd(16331):2017-11-29 18:04:31.543 [INF] NTFN: New block: height=1724, sha=62487a8c6bd9802c1c4f9d3b371e84e6205adc64d8b8744b13db7b4604781503
DEBUG:lnd(16331):2017-11-29 18:04:31.544 [INF] CRTR: Pruning channel graph using block 62487a8c6bd9802c1c4f9d3b371e84e6205adc64d8b8744b13db7b4604781503 (height=1724)
Waiting for node to learn about 62487a8c6bd9802c1c4f9d3b371e84e6205adc64d8b8744b13db7b4604781503
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=62487a8c6bd9802c1c4f9d3b371e84e6205adc64d8b8744b13db7b4604781503' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:31.568 [INF] CRTR: Block 62487a8c6bd9802c1c4f9d3b371e84e6205adc64d8b8744b13db7b4604781503 (height=1724) closed 0 channels
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=62487a8c6bd9802c1c4f9d3b371e84e6205adc64d8b8744b13db7b4604781503' in logs
DEBUG:proc:lightningd(1540): Adding block 03157804467bdb134b74b8d864dc5a20e6841e373b9d4f1c2c80d96b8c7a4862
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 03157804467bdb134b74b8d864dc5a20e6841e373b9d4f1c2c80d96b8c7a4862
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:33.584 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:33 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:33 keypool reserve 2161
DEBUG:bitcoind:2017-11-29 17:04:33 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:33 UpdateTip: new best=69875db44f748beb349843bc2bc3455d1a76ee0516d65f9f8e22d7f3175d9cfe height=1725 version=0x20000000 log2_work=11.753217 tx=1908 date='2017-11-29 17:04:33' progress=1.000000 cache=0.4MiB(1890txo)
DEBUG:bitcoind:2017-11-29 17:04:33 AddToWallet 9079c3cbbbfa6035b8cf70653969ccd7fde6cf9f125f74ee5dae84a5cc1a45f6 new
DEBUG:bitcoind:2017-11-29 17:04:33 keypool keep 2161
Waiting for node to learn about 69875db44f748beb349843bc2bc3455d1a76ee0516d65f9f8e22d7f3175d9cfe
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=69875db44f748beb349843bc2bc3455d1a76ee0516d65f9f8e22d7f3175d9cfe' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:33.715 [INF] CRTR: Pruning channel graph using block 69875db44f748beb349843bc2bc3455d1a76ee0516d65f9f8e22d7f3175d9cfe (height=1725)
DEBUG:lnd(16331):2017-11-29 18:04:33.716 [INF] NTFN: New block: height=1725, sha=69875db44f748beb349843bc2bc3455d1a76ee0516d65f9f8e22d7f3175d9cfe
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=69875db44f748beb349843bc2bc3455d1a76ee0516d65f9f8e22d7f3175d9cfe' in logs
DEBUG:lnd(16331):2017-11-29 18:04:33.723 [INF] CRTR: Block 69875db44f748beb349843bc2bc3455d1a76ee0516d65f9f8e22d7f3175d9cfe (height=1725) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block fe9c5d17f3d7228e9f5fd61605ee761a5d45c32bbc439834eb8b744fb45d8769
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block fe9c5d17f3d7228e9f5fd61605ee761a5d45c32bbc439834eb8b744fb45d8769
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:35.720 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:35 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:35 keypool reserve 2166
DEBUG:bitcoind:2017-11-29 17:04:35 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:35 UpdateTip: new best=54d4dd97798c98a3928951fb72639e0c048fe200f48a2eb074ec4bd7b6b6ae21 height=1726 version=0x20000000 log2_work=11.754052 tx=1909 date='2017-11-29 17:04:35' progress=1.000000 cache=0.4MiB(1891txo)
DEBUG:bitcoind:2017-11-29 17:04:35 AddToWallet 7e0080f10b4e344828dfbb7b7d13c3311a2b3d4a739f3837b0d9632c8d51d3c9 new
DEBUG:bitcoind:2017-11-29 17:04:35 keypool keep 2166
Waiting for node to learn about 54d4dd97798c98a3928951fb72639e0c048fe200f48a2eb074ec4bd7b6b6ae21
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=54d4dd97798c98a3928951fb72639e0c048fe200f48a2eb074ec4bd7b6b6ae21' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:35.850 [INF] CRTR: Pruning channel graph using block 54d4dd97798c98a3928951fb72639e0c048fe200f48a2eb074ec4bd7b6b6ae21 (height=1726)
DEBUG:lnd(16331):2017-11-29 18:04:35.851 [INF] NTFN: New block: height=1726, sha=54d4dd97798c98a3928951fb72639e0c048fe200f48a2eb074ec4bd7b6b6ae21
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=54d4dd97798c98a3928951fb72639e0c048fe200f48a2eb074ec4bd7b6b6ae21' in logs
DEBUG:lnd(16331):2017-11-29 18:04:35.858 [INF] CRTR: Block 54d4dd97798c98a3928951fb72639e0c048fe200f48a2eb074ec4bd7b6b6ae21 (height=1726) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 21aeb6b6d74bec74b02e8af400e28f040c9e6372fb518992a3988c7997ddd454
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 21aeb6b6d74bec74b02e8af400e28f040c9e6372fb518992a3988c7997ddd454
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:37.855 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:37 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:37 keypool reserve 2167
DEBUG:bitcoind:2017-11-29 17:04:37 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:37 UpdateTip: new best=0129d839ad7b03ae3604d26023a223a14266ed0b133e358588ef971e75cb0afa height=1727 version=0x20000000 log2_work=11.754888 tx=1910 date='2017-11-29 17:04:37' progress=1.000000 cache=0.4MiB(1892txo)
DEBUG:bitcoind:2017-11-29 17:04:37 AddToWallet 34f23892ef74dd164a82b9e4f90e555c681a84160c7dc5656190a79f1df2063a new
DEBUG:bitcoind:2017-11-29 17:04:37 keypool keep 2167
DEBUG:proc:2017-11-29 18:04:37.881 [INF] BMGR: Processed 5 blocks in the last 10.46s (5 transactions, height 1727, 2017-11-29 18:04:37 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:04:37.882 [INF] CRTR: Pruning channel graph using block 0129d839ad7b03ae3604d26023a223a14266ed0b133e358588ef971e75cb0afa (height=1727)
DEBUG:lnd(16331):2017-11-29 18:04:37.883 [INF] NTFN: New block: height=1727, sha=0129d839ad7b03ae3604d26023a223a14266ed0b133e358588ef971e75cb0afa
DEBUG:lnd(16331):2017-11-29 18:04:37.889 [INF] CRTR: Block 0129d839ad7b03ae3604d26023a223a14266ed0b133e358588ef971e75cb0afa (height=1727) closed 0 channels
Waiting for node to learn about 0129d839ad7b03ae3604d26023a223a14266ed0b133e358588ef971e75cb0afa
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=0129d839ad7b03ae3604d26023a223a14266ed0b133e358588ef971e75cb0afa' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=0129d839ad7b03ae3604d26023a223a14266ed0b133e358588ef971e75cb0afa' in logs
DEBUG:proc:lightningd(1540): Adding block fa0acb751e97ef8885353e130bed6642a123a22360d20436ae037bad39d82901
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block fa0acb751e97ef8885353e130bed6642a123a22360d20436ae037bad39d82901
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:39.910 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:39 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:39 keypool reserve 2172
DEBUG:bitcoind:2017-11-29 17:04:39 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:39 UpdateTip: new best=15b1cb0ab63c3b46a0a553721d15e1d56d1bb8d3a3996ba32231b78d82a39b3e height=1728 version=0x20000000 log2_work=11.755722 tx=1911 date='2017-11-29 17:04:39' progress=1.000000 cache=0.4MiB(1893txo)
DEBUG:bitcoind:2017-11-29 17:04:39 AddToWallet 7e63914c17c5a4585ef6a06ac55884e2160ae6c3c3843ea87e20926da438f737 new
DEBUG:bitcoind:2017-11-29 17:04:39 keypool keep 2172
Waiting for node to learn about 15b1cb0ab63c3b46a0a553721d15e1d56d1bb8d3a3996ba32231b78d82a39b3e
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=15b1cb0ab63c3b46a0a553721d15e1d56d1bb8d3a3996ba32231b78d82a39b3e' in the logs
DEBUG:proc:lightningd(1540): Adding block 3e9ba3828db73122a36b99a3d3b81b6dd5e1151d7253a5a0463b3cb60acbb115
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:40.043 [INF] CRTR: Pruning channel graph using block 15b1cb0ab63c3b46a0a553721d15e1d56d1bb8d3a3996ba32231b78d82a39b3e (height=1728)
DEBUG:lnd(16331):2017-11-29 18:04:40.043 [INF] NTFN: New block: height=1728, sha=15b1cb0ab63c3b46a0a553721d15e1d56d1bb8d3a3996ba32231b78d82a39b3e
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=15b1cb0ab63c3b46a0a553721d15e1d56d1bb8d3a3996ba32231b78d82a39b3e' in logs
DEBUG:lnd(16331):2017-11-29 18:04:40.051 [INF] CRTR: Block 15b1cb0ab63c3b46a0a553721d15e1d56d1bb8d3a3996ba32231b78d82a39b3e (height=1728) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 3e9ba3828db73122a36b99a3d3b81b6dd5e1151d7253a5a0463b3cb60acbb115
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:42.047 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:42 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:42 keypool reserve 2177
DEBUG:bitcoind:2017-11-29 17:04:42 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:42 UpdateTip: new best=31aa65e4a2fc8248579006233d8aec175426372cc81f7d8f51fb79bad72412ea height=1729 version=0x20000000 log2_work=11.756556 tx=1912 date='2017-11-29 17:04:42' progress=1.000000 cache=0.4MiB(1894txo)
DEBUG:bitcoind:2017-11-29 17:04:42 AddToWallet 4baae537a2496ce0b1176f6e512d20ba6c27073d71c693f437039fe5cbf9e03f new
DEBUG:bitcoind:2017-11-29 17:04:42 keypool keep 2177
Waiting for node to learn about 31aa65e4a2fc8248579006233d8aec175426372cc81f7d8f51fb79bad72412ea
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=31aa65e4a2fc8248579006233d8aec175426372cc81f7d8f51fb79bad72412ea' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:42.183 [INF] CRTR: Pruning channel graph using block 31aa65e4a2fc8248579006233d8aec175426372cc81f7d8f51fb79bad72412ea (height=1729)
DEBUG:lnd(16331):2017-11-29 18:04:42.185 [INF] NTFN: New block: height=1729, sha=31aa65e4a2fc8248579006233d8aec175426372cc81f7d8f51fb79bad72412ea
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=31aa65e4a2fc8248579006233d8aec175426372cc81f7d8f51fb79bad72412ea' in logs
DEBUG:lnd(16331):2017-11-29 18:04:42.191 [INF] CRTR: Block 31aa65e4a2fc8248579006233d8aec175426372cc81f7d8f51fb79bad72412ea (height=1729) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block ea1224d7ba79fb518f7d1fc82c37265417ec8a3d230690574882fca2e465aa31
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block ea1224d7ba79fb518f7d1fc82c37265417ec8a3d230690574882fca2e465aa31
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:44.189 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:44 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:44 keypool reserve 2182
DEBUG:bitcoind:2017-11-29 17:04:44 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:44 UpdateTip: new best=574fa5226c12f3366e1d8278f57b134aed9eabab776f76a88f4e4cb54c9e066c height=1730 version=0x20000000 log2_work=11.75739 tx=1913 date='2017-11-29 17:04:44' progress=1.000000 cache=0.4MiB(1895txo)
DEBUG:bitcoind:2017-11-29 17:04:44 AddToWallet e3690e3a796aef327596d24a79fb81ec1e1aaaaba0b93b3136ac05bac1288dc0 new
DEBUG:bitcoind:2017-11-29 17:04:44 keypool keep 2182
Waiting for node to learn about 574fa5226c12f3366e1d8278f57b134aed9eabab776f76a88f4e4cb54c9e066c
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=574fa5226c12f3366e1d8278f57b134aed9eabab776f76a88f4e4cb54c9e066c' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:44.321 [INF] CRTR: Pruning channel graph using block 574fa5226c12f3366e1d8278f57b134aed9eabab776f76a88f4e4cb54c9e066c (height=1730)
DEBUG:lnd(16331):2017-11-29 18:04:44.322 [INF] NTFN: New block: height=1730, sha=574fa5226c12f3366e1d8278f57b134aed9eabab776f76a88f4e4cb54c9e066c
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=574fa5226c12f3366e1d8278f57b134aed9eabab776f76a88f4e4cb54c9e066c' in logs
DEBUG:lnd(16331):2017-11-29 18:04:44.331 [INF] CRTR: Block 574fa5226c12f3366e1d8278f57b134aed9eabab776f76a88f4e4cb54c9e066c (height=1730) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 6c069e4cb54c4e8fa8766f77abab9eed4a137bf578821d6e36f3126c22a54f57
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 6c069e4cb54c4e8fa8766f77abab9eed4a137bf578821d6e36f3126c22a54f57
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:46.326 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:46 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:46 keypool reserve 2183
DEBUG:bitcoind:2017-11-29 17:04:46 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:46 UpdateTip: new best=7253ba0ba48003535df557b735fe8fba811e25640957f3816296925ee3f6e793 height=1731 version=0x20000000 log2_work=11.758223 tx=1914 date='2017-11-29 17:04:46' progress=1.000000 cache=0.4MiB(1896txo)
DEBUG:bitcoind:2017-11-29 17:04:46 AddToWallet 88deee9afc36b3cefbe95b245f4ee20034e42d784fa7df3f6f8bdd88fece6295 new
DEBUG:bitcoind:2017-11-29 17:04:46 keypool keep 2183
Waiting for node to learn about 7253ba0ba48003535df557b735fe8fba811e25640957f3816296925ee3f6e793
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=7253ba0ba48003535df557b735fe8fba811e25640957f3816296925ee3f6e793' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:46.454 [INF] CRTR: Pruning channel graph using block 7253ba0ba48003535df557b735fe8fba811e25640957f3816296925ee3f6e793 (height=1731)
DEBUG:lnd(16331):2017-11-29 18:04:46.454 [INF] NTFN: New block: height=1731, sha=7253ba0ba48003535df557b735fe8fba811e25640957f3816296925ee3f6e793
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=7253ba0ba48003535df557b735fe8fba811e25640957f3816296925ee3f6e793' in logs
DEBUG:lnd(16331):2017-11-29 18:04:46.461 [INF] CRTR: Block 7253ba0ba48003535df557b735fe8fba811e25640957f3816296925ee3f6e793 (height=1731) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 93e7f6e35e92966281f3570964251e81ba8ffe35b757f55d530380a40bba5372
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 93e7f6e35e92966281f3570964251e81ba8ffe35b757f55d530380a40bba5372
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:48.457 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:48 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:48 keypool reserve 2184
DEBUG:bitcoind:2017-11-29 17:04:48 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:48 UpdateTip: new best=216c6d23374a945c4e9138db0aa15f5c328e878c79c02d30f5374babacf47ee9 height=1732 version=0x20000000 log2_work=11.759056 tx=1915 date='2017-11-29 17:04:48' progress=1.000000 cache=0.4MiB(1897txo)
DEBUG:bitcoind:2017-11-29 17:04:48 AddToWallet 69b326ca7e5455f8132c7ec58123a629b280dc92632cc50337dc6a2c32ea270d new
DEBUG:proc:2017-11-29 18:04:48.498 [INF] BMGR: Processed 5 blocks in the last 10.61s (5 transactions, height 1732, 2017-11-29 18:04:48 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:04:48.499 [INF] CRTR: Pruning channel graph using block 216c6d23374a945c4e9138db0aa15f5c328e878c79c02d30f5374babacf47ee9 (height=1732)
DEBUG:lnd(16331):2017-11-29 18:04:48.500 [INF] NTFN: New block: height=1732, sha=216c6d23374a945c4e9138db0aa15f5c328e878c79c02d30f5374babacf47ee9
DEBUG:bitcoind:2017-11-29 17:04:48 keypool keep 2184
DEBUG:lnd(16331):2017-11-29 18:04:48.517 [INF] CRTR: Block 216c6d23374a945c4e9138db0aa15f5c328e878c79c02d30f5374babacf47ee9 (height=1732) closed 0 channels
Waiting for node to learn about 216c6d23374a945c4e9138db0aa15f5c328e878c79c02d30f5374babacf47ee9
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=216c6d23374a945c4e9138db0aa15f5c328e878c79c02d30f5374babacf47ee9' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=216c6d23374a945c4e9138db0aa15f5c328e878c79c02d30f5374babacf47ee9' in logs
DEBUG:proc:lightningd(1727): Adding block e97ef4acab4b37f5302dc0798c878e325c5fa10adb38914e5c944a37236d6c21
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block e97ef4acab4b37f5302dc0798c878e325c5fa10adb38914e5c944a37236d6c21
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:50.539 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:50 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:50 keypool reserve 2186
DEBUG:bitcoind:2017-11-29 17:04:50 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:50 UpdateTip: new best=5dacc25a1f5668d45a439c7c7770007a35cfe43ac7db38878f85cfca9153658f height=1733 version=0x20000000 log2_work=11.759888 tx=1916 date='2017-11-29 17:04:50' progress=1.000000 cache=0.4MiB(1898txo)
DEBUG:bitcoind:2017-11-29 17:04:50 AddToWallet d9e0a183f594c04876f70c333f0552221724c303e3f2b062098c69dca7c29699 new
DEBUG:lnd(16331):2017-11-29 18:04:50.563 [INF] CRTR: Pruning channel graph using block 5dacc25a1f5668d45a439c7c7770007a35cfe43ac7db38878f85cfca9153658f (height=1733)
DEBUG:lnd(16331):2017-11-29 18:04:50.563 [INF] NTFN: New block: height=1733, sha=5dacc25a1f5668d45a439c7c7770007a35cfe43ac7db38878f85cfca9153658f
DEBUG:bitcoind:2017-11-29 17:04:50 keypool keep 2186
DEBUG:lnd(16331):2017-11-29 18:04:50.576 [INF] CRTR: Block 5dacc25a1f5668d45a439c7c7770007a35cfe43ac7db38878f85cfca9153658f (height=1733) closed 0 channels
Waiting for node to learn about 5dacc25a1f5668d45a439c7c7770007a35cfe43ac7db38878f85cfca9153658f
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=5dacc25a1f5668d45a439c7c7770007a35cfe43ac7db38878f85cfca9153658f' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=5dacc25a1f5668d45a439c7c7770007a35cfe43ac7db38878f85cfca9153658f' in logs
DEBUG:proc:lightningd(1727): Adding block 8f655391cacf858f8738dbc73ae4cf357a0070777c9c435ad468561f5ac2ac5d
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 8f655391cacf858f8738dbc73ae4cf357a0070777c9c435ad468561f5ac2ac5d
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:52.593 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:52 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:52 keypool reserve 2187
DEBUG:bitcoind:2017-11-29 17:04:52 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:52 UpdateTip: new best=6168bb76503181aa00e13c3527bd1ee0fd294263a9c04d86c570cb60f04f1ab0 height=1734 version=0x20000000 log2_work=11.76072 tx=1917 date='2017-11-29 17:04:52' progress=1.000000 cache=0.4MiB(1899txo)
DEBUG:bitcoind:2017-11-29 17:04:52 AddToWallet cd85c85de46f4babdfda853ef3ec060d3be19d6ef93a6bd67ed310135ff5139d new
DEBUG:lnd(16331):2017-11-29 18:04:52.615 [INF] CRTR: Pruning channel graph using block 6168bb76503181aa00e13c3527bd1ee0fd294263a9c04d86c570cb60f04f1ab0 (height=1734)
DEBUG:lnd(16331):2017-11-29 18:04:52.615 [INF] NTFN: New block: height=1734, sha=6168bb76503181aa00e13c3527bd1ee0fd294263a9c04d86c570cb60f04f1ab0
DEBUG:bitcoind:2017-11-29 17:04:52 keypool keep 2187
DEBUG:proc:lightningd(1727): Adding block b01a4ff060cb70c5864dc0a9634229fde01ebd27353ce100aa81315076bb6861
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:lnd(16331):2017-11-29 18:04:52.629 [INF] CRTR: Block 6168bb76503181aa00e13c3527bd1ee0fd294263a9c04d86c570cb60f04f1ab0 (height=1734) closed 0 channels
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
Waiting for node to learn about 6168bb76503181aa00e13c3527bd1ee0fd294263a9c04d86c570cb60f04f1ab0
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=6168bb76503181aa00e13c3527bd1ee0fd294263a9c04d86c570cb60f04f1ab0' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=6168bb76503181aa00e13c3527bd1ee0fd294263a9c04d86c570cb60f04f1ab0' in logs
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block b01a4ff060cb70c5864dc0a9634229fde01ebd27353ce100aa81315076bb6861
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:54.648 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:54 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:54 keypool reserve 2188
DEBUG:bitcoind:2017-11-29 17:04:54 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:54 UpdateTip: new best=300bd56beaa82199c16f31b8c59e3ad6876e3d01671a7a9d9d4ed53d5796b203 height=1735 version=0x20000000 log2_work=11.761551 tx=1918 date='2017-11-29 17:04:54' progress=1.000000 cache=0.4MiB(1900txo)
DEBUG:bitcoind:2017-11-29 17:04:54 AddToWallet 9d053315c059ac6d49cddd62471155850f758ea67ead8b18a85900310059a1ca new
DEBUG:bitcoind:2017-11-29 17:04:54 keypool keep 2188
Waiting for node to learn about 300bd56beaa82199c16f31b8c59e3ad6876e3d01671a7a9d9d4ed53d5796b203
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=300bd56beaa82199c16f31b8c59e3ad6876e3d01671a7a9d9d4ed53d5796b203' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:54.770 [INF] CRTR: Pruning channel graph using block 300bd56beaa82199c16f31b8c59e3ad6876e3d01671a7a9d9d4ed53d5796b203 (height=1735)
DEBUG:lnd(16331):2017-11-29 18:04:54.771 [INF] NTFN: New block: height=1735, sha=300bd56beaa82199c16f31b8c59e3ad6876e3d01671a7a9d9d4ed53d5796b203
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=300bd56beaa82199c16f31b8c59e3ad6876e3d01671a7a9d9d4ed53d5796b203' in logs
DEBUG:lnd(16331):2017-11-29 18:04:54.781 [INF] CRTR: Block 300bd56beaa82199c16f31b8c59e3ad6876e3d01671a7a9d9d4ed53d5796b203 (height=1735) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 03b296573dd54e9d9d7a1a67013d6e87d63a9ec5b8316fc19921a8ea6bd50b30
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 03b296573dd54e9d9d7a1a67013d6e87d63a9ec5b8316fc19921a8ea6bd50b30
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:56.775 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:56 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:56 keypool reserve 2189
DEBUG:bitcoind:2017-11-29 17:04:56 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:56 UpdateTip: new best=504ae6d7eaf42a1638059bbe726b1f4d174465c7fa868beeea2b712cf329374d height=1736 version=0x20000000 log2_work=11.762382 tx=1919 date='2017-11-29 17:04:56' progress=1.000000 cache=0.4MiB(1901txo)
DEBUG:bitcoind:2017-11-29 17:04:56 AddToWallet fe16bd3ab8db6155db800fd5c0698f1bd085cc25dea6b69cdc39729567b909a6 new
DEBUG:bitcoind:2017-11-29 17:04:56 keypool keep 2189
Waiting for node to learn about 504ae6d7eaf42a1638059bbe726b1f4d174465c7fa868beeea2b712cf329374d
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=504ae6d7eaf42a1638059bbe726b1f4d174465c7fa868beeea2b712cf329374d' in the logs
DEBUG:lnd(16331):2017-11-29 18:04:56.919 [INF] CRTR: Pruning channel graph using block 504ae6d7eaf42a1638059bbe726b1f4d174465c7fa868beeea2b712cf329374d (height=1736)
DEBUG:lnd(16331):2017-11-29 18:04:56.921 [INF] NTFN: New block: height=1736, sha=504ae6d7eaf42a1638059bbe726b1f4d174465c7fa868beeea2b712cf329374d
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=504ae6d7eaf42a1638059bbe726b1f4d174465c7fa868beeea2b712cf329374d' in logs
DEBUG:lnd(16331):2017-11-29 18:04:56.930 [INF] CRTR: Block 504ae6d7eaf42a1638059bbe726b1f4d174465c7fa868beeea2b712cf329374d (height=1736) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 4d3729f32c712beaee8b86fac76544174d1f6b72be9b0538162af4ead7e64a50
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 4d3729f32c712beaee8b86fac76544174d1f6b72be9b0538162af4ead7e64a50
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:04:58.925 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:04:58 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:04:58 keypool reserve 2190
DEBUG:bitcoind:2017-11-29 17:04:58 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:04:58 UpdateTip: new best=2259c8658d49160152be82318355acca179141d578206a9e5625b020c25276db height=1737 version=0x20000000 log2_work=11.763212 tx=1920 date='2017-11-29 17:04:58' progress=1.000000 cache=0.4MiB(1902txo)
DEBUG:bitcoind:2017-11-29 17:04:58 AddToWallet 26ea66cfddd1884f7b567379be82c0e98067ba4b1070143286a65f6ba93b2a81 new
DEBUG:bitcoind:2017-11-29 17:04:58 keypool keep 2190
Waiting for node to learn about 2259c8658d49160152be82318355acca179141d578206a9e5625b020c25276db
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2259c8658d49160152be82318355acca179141d578206a9e5625b020c25276db' in the logs
DEBUG:proc:2017-11-29 18:04:59.062 [INF] BMGR: Processed 5 blocks in the last 10.56s (5 transactions, height 1737, 2017-11-29 18:04:58 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:04:59.063 [INF] CRTR: Pruning channel graph using block 2259c8658d49160152be82318355acca179141d578206a9e5625b020c25276db (height=1737)
DEBUG:lnd(16331):2017-11-29 18:04:59.064 [INF] NTFN: New block: height=1737, sha=2259c8658d49160152be82318355acca179141d578206a9e5625b020c25276db
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2259c8658d49160152be82318355acca179141d578206a9e5625b020c25276db' in logs
DEBUG:lnd(16331):2017-11-29 18:04:59.075 [INF] CRTR: Block 2259c8658d49160152be82318355acca179141d578206a9e5625b020c25276db (height=1737) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block db7652c220b025569e6a2078d5419117caac55833182be520116498d65c85922
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block db7652c220b025569e6a2078d5419117caac55833182be520116498d65c85922
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:01.069 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:01 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:01 keypool reserve 2191
DEBUG:bitcoind:2017-11-29 17:05:01 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:01 UpdateTip: new best=539c2a222c1e785721e1ad52f26eb513ab55b67aea9640c3b7a7b41db145c3fb height=1738 version=0x20000000 log2_work=11.764042 tx=1921 date='2017-11-29 17:05:01' progress=1.000000 cache=0.4MiB(1903txo)
DEBUG:bitcoind:2017-11-29 17:05:01 AddToWallet f14a6df3b0c41317e9957bcad3efc593638156bde2a9bfe3a1f042d831076022 new
DEBUG:bitcoind:2017-11-29 17:05:01 keypool keep 2191
Waiting for node to learn about 539c2a222c1e785721e1ad52f26eb513ab55b67aea9640c3b7a7b41db145c3fb
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=539c2a222c1e785721e1ad52f26eb513ab55b67aea9640c3b7a7b41db145c3fb' in the logs
DEBUG:lnd(16331):2017-11-29 18:05:01.199 [INF] CRTR: Pruning channel graph using block 539c2a222c1e785721e1ad52f26eb513ab55b67aea9640c3b7a7b41db145c3fb (height=1738)
DEBUG:lnd(16331):2017-11-29 18:05:01.200 [INF] NTFN: New block: height=1738, sha=539c2a222c1e785721e1ad52f26eb513ab55b67aea9640c3b7a7b41db145c3fb
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=539c2a222c1e785721e1ad52f26eb513ab55b67aea9640c3b7a7b41db145c3fb' in logs
DEBUG:lnd(16331):2017-11-29 18:05:01.209 [INF] CRTR: Block 539c2a222c1e785721e1ad52f26eb513ab55b67aea9640c3b7a7b41db145c3fb (height=1738) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block fbc345b11db4a7b7c34096ea7ab655ab13b56ef252ade12157781e2c222a9c53
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block fbc345b11db4a7b7c34096ea7ab655ab13b56ef252ade12157781e2c222a9c53
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:03.204 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:03 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:03 keypool reserve 2192
DEBUG:bitcoind:2017-11-29 17:05:03 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:03 UpdateTip: new best=03bcb9db2a77a6ec0603b320716081f8cdea3ffdbf054bf14a904d681a0bd3a8 height=1739 version=0x20000000 log2_work=11.764872 tx=1922 date='2017-11-29 17:05:03' progress=1.000000 cache=0.4MiB(1904txo)
DEBUG:bitcoind:2017-11-29 17:05:03 AddToWallet b89950739b95b96494d7063dd5c025ae227b3e0129c5b1fc6c1240102d28d450 new
DEBUG:bitcoind:2017-11-29 17:05:03 keypool keep 2192
Waiting for node to learn about 03bcb9db2a77a6ec0603b320716081f8cdea3ffdbf054bf14a904d681a0bd3a8
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=03bcb9db2a77a6ec0603b320716081f8cdea3ffdbf054bf14a904d681a0bd3a8' in the logs
DEBUG:lnd(16331):2017-11-29 18:05:03.436 [INF] CRTR: Pruning channel graph using block 03bcb9db2a77a6ec0603b320716081f8cdea3ffdbf054bf14a904d681a0bd3a8 (height=1739)
DEBUG:lnd(16331):2017-11-29 18:05:03.436 [INF] NTFN: New block: height=1739, sha=03bcb9db2a77a6ec0603b320716081f8cdea3ffdbf054bf14a904d681a0bd3a8
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=03bcb9db2a77a6ec0603b320716081f8cdea3ffdbf054bf14a904d681a0bd3a8' in logs
DEBUG:lnd(16331):2017-11-29 18:05:03.450 [INF] CRTR: Block 03bcb9db2a77a6ec0603b320716081f8cdea3ffdbf054bf14a904d681a0bd3a8 (height=1739) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block a8d30b1a684d904af14b05bffd3feacdf881607120b30306eca6772adbb9bc03
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block a8d30b1a684d904af14b05bffd3feacdf881607120b30306eca6772adbb9bc03
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:05.440 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:05 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:05 keypool reserve 2194
DEBUG:bitcoind:2017-11-29 17:05:05 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:05 UpdateTip: new best=3a0d021d703e02bb803218f228ac71445a823bf8db4b77f9d303045418d91f5c height=1740 version=0x20000000 log2_work=11.7657 tx=1923 date='2017-11-29 17:05:05' progress=1.000000 cache=0.4MiB(1905txo)
DEBUG:bitcoind:2017-11-29 17:05:05 AddToWallet 129da5b4da6730734a735f6e9d10742570ee5b5e03a2b0cfffe2e92c8445afe1 new
DEBUG:bitcoind:2017-11-29 17:05:05 keypool keep 2194
Waiting for node to learn about 3a0d021d703e02bb803218f228ac71445a823bf8db4b77f9d303045418d91f5c
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=3a0d021d703e02bb803218f228ac71445a823bf8db4b77f9d303045418d91f5c' in the logs
DEBUG:proc:lightningd(1540): Adding block 5c1fd918540403d3f9774bdbf83b825a4471ac28f2183280bb023e701d020d3a
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:05.572 [INF] CRTR: Pruning channel graph using block 3a0d021d703e02bb803218f228ac71445a823bf8db4b77f9d303045418d91f5c (height=1740)
DEBUG:lnd(16331):2017-11-29 18:05:05.572 [INF] NTFN: New block: height=1740, sha=3a0d021d703e02bb803218f228ac71445a823bf8db4b77f9d303045418d91f5c
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=3a0d021d703e02bb803218f228ac71445a823bf8db4b77f9d303045418d91f5c' in logs
DEBUG:lnd(16331):2017-11-29 18:05:05.585 [INF] CRTR: Block 3a0d021d703e02bb803218f228ac71445a823bf8db4b77f9d303045418d91f5c (height=1740) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 5c1fd918540403d3f9774bdbf83b825a4471ac28f2183280bb023e701d020d3a
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:07.576 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:07 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:07 keypool reserve 2195
DEBUG:bitcoind:2017-11-29 17:05:07 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:07 UpdateTip: new best=0c20f9e2a6c18de44bea26b18114d38778d42a2387513246b9a5c4826b4306d4 height=1741 version=0x20000000 log2_work=11.766529 tx=1924 date='2017-11-29 17:05:07' progress=1.000000 cache=0.4MiB(1906txo)
DEBUG:bitcoind:2017-11-29 17:05:07 AddToWallet 3b80affd2f3a59d11e77f54b580c737ce69d87ce559e82df77aca2493568c9ed new
DEBUG:bitcoind:2017-11-29 17:05:07 keypool keep 2195
Waiting for node to learn about 0c20f9e2a6c18de44bea26b18114d38778d42a2387513246b9a5c4826b4306d4
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=0c20f9e2a6c18de44bea26b18114d38778d42a2387513246b9a5c4826b4306d4' in the logs
DEBUG:lnd(16331):2017-11-29 18:05:07.707 [INF] CRTR: Pruning channel graph using block 0c20f9e2a6c18de44bea26b18114d38778d42a2387513246b9a5c4826b4306d4 (height=1741)
DEBUG:lnd(16331):2017-11-29 18:05:07.708 [INF] NTFN: New block: height=1741, sha=0c20f9e2a6c18de44bea26b18114d38778d42a2387513246b9a5c4826b4306d4
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=0c20f9e2a6c18de44bea26b18114d38778d42a2387513246b9a5c4826b4306d4' in logs
DEBUG:lnd(16331):2017-11-29 18:05:07.724 [INF] CRTR: Block 0c20f9e2a6c18de44bea26b18114d38778d42a2387513246b9a5c4826b4306d4 (height=1741) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block d406436b82c4a5b946325187232ad47887d31481b126ea4be48dc1a6e2f9200c
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:08.245 [DBG] PEER: Sending Ping to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:08.245 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Ping)(0xc42082c140)({
DEBUG:lnd(16331): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331): PaddingBytes: (lnwire.PingPayload) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:08.247 [DBG] PEER: Received Pong from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:08.247 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Pong)(0xc420824240)({
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(1540): Adding block d406436b82c4a5b946325187232ad47887d31481b126ea4be48dc1a6e2f9200c
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:09.713 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:09 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:09 keypool reserve 2196
DEBUG:bitcoind:2017-11-29 17:05:09 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:09 UpdateTip: new best=27006cd00ed9753903e9af988c7c846fe624fef9b449c821bce7ef71a7decf24 height=1742 version=0x20000000 log2_work=11.767357 tx=1925 date='2017-11-29 17:05:09' progress=1.000000 cache=0.4MiB(1907txo)
DEBUG:bitcoind:2017-11-29 17:05:09 AddToWallet 5806224b86efcb8314bfda9d9a7591457bb1ebf2bc1690b816f3bbea63cec640 new
DEBUG:bitcoind:2017-11-29 17:05:09 keypool keep 2196
Waiting for node to learn about 27006cd00ed9753903e9af988c7c846fe624fef9b449c821bce7ef71a7decf24
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=27006cd00ed9753903e9af988c7c846fe624fef9b449c821bce7ef71a7decf24' in the logs
DEBUG:proc:2017-11-29 18:05:09.854 [INF] BMGR: Processed 5 blocks in the last 10.79s (5 transactions, height 1742, 2017-11-29 18:05:09 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:05:09.855 [INF] CRTR: Pruning channel graph using block 27006cd00ed9753903e9af988c7c846fe624fef9b449c821bce7ef71a7decf24 (height=1742)
DEBUG:lnd(16331):2017-11-29 18:05:09.857 [INF] NTFN: New block: height=1742, sha=27006cd00ed9753903e9af988c7c846fe624fef9b449c821bce7ef71a7decf24
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=27006cd00ed9753903e9af988c7c846fe624fef9b449c821bce7ef71a7decf24' in logs
DEBUG:lnd(16331):2017-11-29 18:05:09.866 [INF] CRTR: Block 27006cd00ed9753903e9af988c7c846fe624fef9b449c821bce7ef71a7decf24 (height=1742) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 24cfdea771efe7bc21c849b4f9fe24e66f847c8c98afe9033975d90ed06c0027
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 24cfdea771efe7bc21c849b4f9fe24e66f847c8c98afe9033975d90ed06c0027
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:11.860 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:11 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:11 keypool reserve 2197
DEBUG:bitcoind:2017-11-29 17:05:11 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:11 UpdateTip: new best=189fd57af52b2f716f42ac02b86afebc5350b54eb6842631e4804d74a5c2c9e2 height=1743 version=0x20000000 log2_work=11.768184 tx=1926 date='2017-11-29 17:05:11' progress=1.000000 cache=0.4MiB(1908txo)
DEBUG:bitcoind:2017-11-29 17:05:11 AddToWallet fb933009a496266aba436aa023db29a51de40572285d9ba9498182b79403c836 new
DEBUG:bitcoind:2017-11-29 17:05:11 keypool keep 2197
Waiting for node to learn about 189fd57af52b2f716f42ac02b86afebc5350b54eb6842631e4804d74a5c2c9e2
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=189fd57af52b2f716f42ac02b86afebc5350b54eb6842631e4804d74a5c2c9e2' in the logs
DEBUG:proc:lightningd(1727): Adding block e2c9c2a5744d80e4312684b64eb55053bcfe6ab802ac426f712f2bf57ad59f18
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:12.011 [INF] CRTR: Pruning channel graph using block 189fd57af52b2f716f42ac02b86afebc5350b54eb6842631e4804d74a5c2c9e2 (height=1743)
DEBUG:lnd(16331):2017-11-29 18:05:12.013 [INF] NTFN: New block: height=1743, sha=189fd57af52b2f716f42ac02b86afebc5350b54eb6842631e4804d74a5c2c9e2
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=189fd57af52b2f716f42ac02b86afebc5350b54eb6842631e4804d74a5c2c9e2' in logs
DEBUG:lnd(16331):2017-11-29 18:05:12.027 [INF] CRTR: Block 189fd57af52b2f716f42ac02b86afebc5350b54eb6842631e4804d74a5c2c9e2 (height=1743) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block e2c9c2a5744d80e4312684b64eb55053bcfe6ab802ac426f712f2bf57ad59f18
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:14.017 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:14 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:14 keypool reserve 2198
DEBUG:bitcoind:2017-11-29 17:05:14 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:14 UpdateTip: new best=2c3b4eecc26120213ee62d5f683ea6264e7ab08033161db3e39622dc766404b8 height=1744 version=0x20000000 log2_work=11.769011 tx=1927 date='2017-11-29 17:05:14' progress=1.000000 cache=0.4MiB(1909txo)
DEBUG:bitcoind:2017-11-29 17:05:14 AddToWallet c31f4d2e81a1a33b4633d46f2afd58971d4efb20e4bb6309bd802db868d10b81 new
DEBUG:bitcoind:2017-11-29 17:05:14 keypool keep 2198
Waiting for node to learn about 2c3b4eecc26120213ee62d5f683ea6264e7ab08033161db3e39622dc766404b8
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2c3b4eecc26120213ee62d5f683ea6264e7ab08033161db3e39622dc766404b8' in the logs
DEBUG:lnd(16331):2017-11-29 18:05:14.159 [INF] CRTR: Pruning channel graph using block 2c3b4eecc26120213ee62d5f683ea6264e7ab08033161db3e39622dc766404b8 (height=1744)
DEBUG:lnd(16331):2017-11-29 18:05:14.160 [INF] NTFN: New block: height=1744, sha=2c3b4eecc26120213ee62d5f683ea6264e7ab08033161db3e39622dc766404b8
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2c3b4eecc26120213ee62d5f683ea6264e7ab08033161db3e39622dc766404b8' in logs
DEBUG:lnd(16331):2017-11-29 18:05:14.170 [INF] CRTR: Block 2c3b4eecc26120213ee62d5f683ea6264e7ab08033161db3e39622dc766404b8 (height=1744) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block b8046476dc2296e3b31d163380b07a4e26a63e685f2de63e212061c2ec4e3b2c
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block b8046476dc2296e3b31d163380b07a4e26a63e685f2de63e212061c2ec4e3b2c
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:15.163 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Calling fundchannel with arguments ('02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 10000000)
DEBUG:root:Calling fundchannel with arguments ('02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 10000000)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightningd(1540): No fee estimate for Normal: basing on default fee rate
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIPCTL_RELEASE_PEER len 35
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIPCTL_RELEASE_PEER_REPLY with 2 fds
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: state: UNINITIALIZED -> OPENINGD
DEBUG:proc:lightning_openingd(4727): pid 4727, msgfd 19
DEBUG:proc:lightningd(1540): No fee estimate for Immediate: basing on default fee rate
DEBUG:proc:lightning_openingd(4727): TRACE: First per_commit_point = 039c2fe942ce8e49501c04cd32eb86fe1b0154ff08e16c305d7a84a7b0506b91ad
DEBUG:proc:lightning_gossipd(1843): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightning_gossipd(1843): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: state: UNINITIALIZED -> OPENINGD
DEBUG:proc:lightning_openingd(4728): pid 4728, msgfd 18
DEBUG:proc:lightningd(1727): No fee estimate for Immediate: basing on default fee rate
DEBUG:proc:lightningd(1727): No fee estimate for Slow: basing on default fee rate
DEBUG:proc:lightning_openingd(4728): TRACE: First per_commit_point = 03341f80f9df5be4ede67e69819fb6aef5ffc72f8e838b7fc1acc0a98962656e88
DEBUG:proc:lightning_openingd(4727): TRACE: Read decrypt 00210d8a7e110c8d29789734fa4336e1ad1ab002fa0d89b29d6c9e894049b01c39580000000000000222ffffffffffffffff00000000000186a0000000000000000000000001000601e30219fe9dcb90a4b7d9d42907b85e098d62a980bddafc3dfa27e937b6432d8255560286a70f9f05ddd081fb748bf9eb7d42bcdda8a565ec396d824ec6ae72fe3fe3370296fecbb8a218fd1316c940d5f4034b34ab13c4a88c3780a2fa1eb4832c5d9dd102eb94892e973526454e0f9c4e333caeadc0e3c1dd7666c0f1ae4bffce389155ba0227318275167e3ada7ad1c4b3b7bbde0dd8581dfcb523d7a87d217af7a80dae6b03341f80f9df5be4ede67e69819fb6aef5ffc72f8e838b7fc1acc0a98962656e88
DEBUG:proc:lightning_openingd(4727): TRACE: signature 3045022100f52a4ecdb30326311fef7f90757c37070a145b210adfae5b540493bb7d1559be02206d21beecf20ac87993d2d75215582f5643e80f77a3fe31144741da7e2f31c00e on tx 02000000011077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c20000000000b00f0480016025980000000000160014e07abdb24b1b79225a44cedf13db559f926a4b3a7493ed20 using key 0214ecdf9ed6641c963542563fb5e94a3de860f52cd7ff5e10c40ac2e6d3ac9aa7
DEBUG:proc:lightning_openingd(4728): TRACE: Read decrypt 00220d8a7e110c8d29789734fa4336e1ad1ab002fa0d89b29d6c9e894049b01c39581077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c20000f52a4ecdb30326311fef7f90757c37070a145b210adfae5b540493bb7d1559be6d21beecf20ac87993d2d75215582f5643e80f77a3fe31144741da7e2f31c00e
DEBUG:proc:lightning_openingd(4728): REPLY WIRE_OPENING_FUNDEE_REPLY with 2 fds
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got opening_fundee_finish_response
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Watching funding tx 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightning_openingd(4728): Status closed, but not exited. Killing
DEBUG:proc:lightningd(1727): HSM TRACE: Control: type WIRE_HSMCTL_HSMFD_CHANNELD len 35
DEBUG:proc:lightning_channeld(4729): pid 4729, msgfd 19
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Waiting for funding confirmations
DEBUG:proc:lightningd(1727): No fee estimate for Immediate: basing on default fee rate
DEBUG:proc:lightningd(1727): No fee estimate for Normal: basing on default fee rate
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: state: OPENINGD -> CHANNELD_AWAITING_LOCKIN
DEBUG:proc:lightning_channeld(4729): TRACE: init REMOTE: remote_per_commit = 039c2fe942ce8e49501c04cd32eb86fe1b0154ff08e16c305d7a84a7b0506b91ad, old_remote_per_commit = 039c2fe942ce8e49501c04cd32eb86fe1b0154ff08e16c305d7a84a7b0506b91ad next_idx_local = 1 next_idx_remote = 1 revocations_received = 0 feerates 40000/40000 (range 20000-200000)
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_FUNDING_SIGNED
DEBUG:proc:lightning_openingd(4727): TRACE: Read decrypt 00231077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c284e4ce67458a520f8faa8a91cbc56cec7788642d6a20fb4545a8a3fc39407d9d6790694f19baa90182fa8ea492fc99cbadf059db16fe6ded0db278edf6099a21
DEBUG:proc:lightning_openingd(4727): REPLY WIRE_OPENING_FUNDER_REPLY with 2 fds
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Funding tx has 1 inputs, 2 outputs:
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: 0: 40000000 satoshi (P2SH) 45e08ade92580eeaa676b6e5a5717076cad323ff5f16f32b0572efdb8eaff306
DEBUG:proc:
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Getting HSM to sign funding tx
DEBUG:proc:lightningd(1540): HSM TRACE: Control: type WIRE_HSMCTL_SIGN_FUNDING len 139
DEBUG:proc:lightningd(1540): (tx 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2)
DEBUG:proc:lightningd(1540): sendrawtransaction: 0200000000010145e08ade92580eeaa676b6e5a5717076cad323ff5f16f32b0572efdb8eaff3060000000017160014b2441d29fe55581a42a020a7ebcf53d97ba5f0edffffffff028096980000000000220020875e59b704f0cedda33edb7221a69e6b5548242366e119f018d6e28046b291f25c92c901000000001600149d1237a218b5c6b1dab65274ce24416f47dfa0f002483045022100f059825d6e47b3d893d3616a55fb42216ca4f16bb26da4ae1b6ec17e089b292f02201bac3d336ca85baf4fb2cea07863a41981ea58e3a50beea10b88425eeda817090121021e697c75fbf8589522f9437a47fcb92763630182496a526380358ecc9a11d2c700000000
DEBUG:proc:lightningd(1540): Owning output 1 29987420 (SEGWIT) txid 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540): HSM TRACE: Control: type WIRE_HSMCTL_HSMFD_CHANNELD len 35
DEBUG:proc:lightning_channeld(4731): pid 4731, msgfd 22
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Waiting for funding confirmations
DEBUG:proc:lightningd(1540): No fee estimate for Immediate: basing on default fee rate
DEBUG:proc:lightningd(1540): No fee estimate for Normal: basing on default fee rate
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: state: OPENINGD -> CHANNELD_AWAITING_LOCKIN
DEBUG:proc:lightningd(1540): sendrawtx exit 0, gave c239354b5e66e4edf313c303fbb659fa9bb1a73ac0ef6ea05ecd8cdb2b197710
DEBUG:root:Received response for fundchannel call: {'result': {'tx': '0200000000010145e08ade92580eeaa676b6e5a5717076cad323ff5f16f32b0572efdb8eaff3060000000017160014b2441d29fe55581a42a020a7ebcf53d97ba5f0edffffffff028096980000000000220020875e59b704f0cedda33edb7221a69e6b5548242366e119f018d6e28046b291f25c92c901000000001600149d1237a218b5c6b1dab65274ce24416f47dfa0f002483045022100f059825d6e47b3d893d3616a55fb42216ca4f16bb26da4ae1b6ec17e089b292f02201bac3d336ca85baf4fb2cea07863a41981ea58e3a50beea10b88425eeda817090121021e697c75fbf8589522f9437a47fcb92763630182496a526380358ecc9a11d2c700000000'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:
DEBUG:lightning-node(16332):Call returned {'tx': '0200000000010145e08ade92580eeaa676b6e5a5717076cad323ff5f16f32b0572efdb8eaff3060000000017160014b2441d29fe55581a42a020a7ebcf53d97ba5f0edffffffff028096980000000000220020875e59b704f0cedda33edb7221a69e6b5548242366e119f018d6e28046b291f25c92c901000000001600149d1237a218b5c6b1dab65274ce24416f47dfa0f002483045022100f059825d6e47b3d893d3616a55fb42216ca4f16bb26da4ae1b6ec17e089b292f02201bac3d336ca85baf4fb2cea07863a41981ea58e3a50beea10b88425eeda817090121021e697c75fbf8589522f9437a47fcb92763630182496a526380358ecc9a11d2c700000000'}
Waiting for channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 to confirm
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_AWAITING_LOCKIN'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_AWAITING_LOCKIN'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (No such file or directory)
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_AWAITING_LOCKIN'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_AWAITING_LOCKIN'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightning_channeld(4731): TRACE: init LOCAL: remote_per_commit = 03341f80f9df5be4ede67e69819fb6aef5ffc72f8e838b7fc1acc0a98962656e88, old_remote_per_commit = 03341f80f9df5be4ede67e69819fb6aef5ffc72f8e838b7fc1acc0a98962656e88 next_idx_local = 1 next_idx_remote = 1 revocations_received = 0 feerates 40000/40000 (range 20000-200000)
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_AWAITING_LOCKIN'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_AWAITING_LOCKIN'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_AWAITING_LOCKIN
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:16 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:16 keypool reserve 2199
DEBUG:bitcoind:2017-11-29 17:05:16 CreateNewBlock(): total size: 521 block weight: 1646 txs: 1 fees: 12580 sigops 401
DEBUG:bitcoind:2017-11-29 17:05:16 UpdateTip: new best=6bebc9da4a90df042f302a21e3386c2f195f3cc748fdd75fa09af00464b5fe1b height=1745 version=0x20000000 log2_work=11.769838 tx=1929 date='2017-11-29 17:05:16' progress=1.000000 cache=0.4MiB(1911txo)
DEBUG:bitcoind:2017-11-29 17:05:16 AddToWallet 89c32c0c6d2f1f8272591361270692ab7bc5e5f7bab678bb8a973256c7e7432c new
DEBUG:bitcoind:2017-11-29 17:05:16 keypool keep 2199
DEBUG:lnd(16331):2017-11-29 18:05:16.499 [INF] CRTR: Pruning channel graph using block 6bebc9da4a90df042f302a21e3386c2f195f3cc748fdd75fa09af00464b5fe1b (height=1745)
DEBUG:lnd(16331):2017-11-29 18:05:16.500 [INF] NTFN: New block: height=1745, sha=6bebc9da4a90df042f302a21e3386c2f195f3cc748fdd75fa09af00464b5fe1b
DEBUG:lnd(16331):2017-11-29 18:05:16.510 [INF] CRTR: Block 6bebc9da4a90df042f302a21e3386c2f195f3cc748fdd75fa09af00464b5fe1b (height=1745) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 1bfeb56404f09aa05fd7fd48c73c5f192f6c38e3212a302f04df904adac9eb6b
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got depth change 0->1 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Funding tx 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2 depth 1 of 1
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got depth change 0->1 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightning_channeld(4731): TRACE: Now dealing with deferred WIRE_CHANNEL_FUNDING_LOCKED
DEBUG:proc:lightning_channeld(4731): TRACE: funding_locked: sending commit index 1: 032bf238c7d1bea7f9f06f9fc4d4a66482d27fbaad58b82e44d724880153a5277a
DEBUG:proc:lightning_channeld(4731): TRACE: peer_out WIRE_FUNDING_LOCKED
DEBUG:proc:lightning_channeld(4729): TRACE: peer_in WIRE_FUNDING_LOCKED
DEBUG:proc:lightning_channeld(4729): UPDATE WIRE_CHANNEL_GOT_FUNDING_LOCKED
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got funding_locked
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 1bfeb56404f09aa05fd7fd48c73c5f192f6c38e3212a302f04df904adac9eb6b
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got depth change 0->1 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Funding tx 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2 depth 1 of 1
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got depth change 0->1 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightning_channeld(4729): TRACE: Now dealing with deferred WIRE_CHANNEL_FUNDING_LOCKED
DEBUG:proc:lightning_channeld(4729): TRACE: funding_locked: sending commit index 1: 023ec935400ecce8ab4f9fda346c725814af6ef316db40391c03799a41d39305e3
DEBUG:proc:lightning_channeld(4729): UPDATE WIRE_CHANNEL_NORMAL_OPERATION
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: state: CHANNELD_AWAITING_LOCKIN -> CHANNELD_NORMAL
DEBUG:proc:lightning_channeld(4731): TRACE: peer_in WIRE_FUNDING_LOCKED
DEBUG:proc:lightning_channeld(4731): UPDATE WIRE_CHANNEL_GOT_FUNDING_LOCKED
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got funding_locked
DEBUG:proc:lightning_channeld(4731): UPDATE WIRE_CHANNEL_NORMAL_OPERATION
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: state: CHANNELD_AWAITING_LOCKIN -> CHANNELD_NORMAL
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_FUNDING_LOCKED
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 confirmed
{"method": "getblockchaininfo", "params": [], "id": 1, "version": "1.1"}
Waiting for 3 nodes to blockheight 1745
DEBUG:lightning-node(16332):Calling getinfo with arguments ()
DEBUG:root:Calling getinfo with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getinfo call: {'result': {'address': [], 'blockheight': 1745, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'address': [], 'blockheight': 1745, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d'}
DEBUG:lightning-node(16333):Calling getinfo with arguments ()
DEBUG:root:Calling getinfo with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getinfo call: {'result': {'address': [], 'blockheight': 1745, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16333, 'id': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Call returned {'address': [], 'blockheight': 1745, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16333, 'id': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045'}
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:20.442 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:20 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:20 keypool reserve 2200
DEBUG:bitcoind:2017-11-29 17:05:20 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:20 UpdateTip: new best=1dcdce3190906bcb4dbb575a5fdf651ac736a10812a887c2c851ba7efd6d0f68 height=1746 version=0x20000000 log2_work=11.770664 tx=1930 date='2017-11-29 17:05:20' progress=1.000000 cache=0.4MiB(1912txo)
DEBUG:bitcoind:2017-11-29 17:05:20 AddToWallet 9ef73b80798fcc3cb8f786044ccff996679e7a1e8f44f17542a1a194928a7cad new
DEBUG:proc:2017-11-29 18:05:20.496 [INF] BMGR: Processed 4 blocks in the last 10.64s (5 transactions, height 1746, 2017-11-29 18:05:20 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:05:20.496 [INF] CRTR: Pruning channel graph using block 1dcdce3190906bcb4dbb575a5fdf651ac736a10812a887c2c851ba7efd6d0f68 (height=1746)
DEBUG:lnd(16331):2017-11-29 18:05:20.497 [INF] NTFN: New block: height=1746, sha=1dcdce3190906bcb4dbb575a5fdf651ac736a10812a887c2c851ba7efd6d0f68
DEBUG:bitcoind:2017-11-29 17:05:20 keypool keep 2200
DEBUG:lnd(16331):2017-11-29 18:05:20.503 [INF] CRTR: Block 1dcdce3190906bcb4dbb575a5fdf651ac736a10812a887c2c851ba7efd6d0f68 (height=1746) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 680f6dfd7eba51c8c287a81208a136c71a65df5f5a57bb4dcb6b909031cecd1d
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got depth change 1->2 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 680f6dfd7eba51c8c287a81208a136c71a65df5f5a57bb4dcb6b909031cecd1d
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got depth change 1->2 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:21.516 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:21 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:21 keypool reserve 2201
DEBUG:bitcoind:2017-11-29 17:05:21 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:21 UpdateTip: new best=08330a663743e8e6dfdf90d45def4b5e59395cb33b89714a4aec7483c64282cf height=1747 version=0x20000000 log2_work=11.771489 tx=1931 date='2017-11-29 17:05:21' progress=1.000000 cache=0.4MiB(1913txo)
DEBUG:bitcoind:2017-11-29 17:05:21 AddToWallet 78923e4b851bc02b101930fde765b8f2bb9fade726d2f5926c8950d945793df5 new
DEBUG:bitcoind:2017-11-29 17:05:21 keypool keep 2201
DEBUG:lnd(16331):2017-11-29 18:05:21.663 [INF] CRTR: Pruning channel graph using block 08330a663743e8e6dfdf90d45def4b5e59395cb33b89714a4aec7483c64282cf (height=1747)
DEBUG:lnd(16331):2017-11-29 18:05:21.664 [INF] NTFN: New block: height=1747, sha=08330a663743e8e6dfdf90d45def4b5e59395cb33b89714a4aec7483c64282cf
DEBUG:lnd(16331):2017-11-29 18:05:21.672 [INF] CRTR: Block 08330a663743e8e6dfdf90d45def4b5e59395cb33b89714a4aec7483c64282cf (height=1747) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block cf8242c68374ec4a4a71893bb35c39595e4bef5dd490dfdfe6e84337660a3308
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got depth change 2->3 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block cf8242c68374ec4a4a71893bb35c39595e4bef5dd490dfdfe6e84337660a3308
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got depth change 2->3 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:22.574 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:22 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:22 keypool reserve 2202
DEBUG:bitcoind:2017-11-29 17:05:22 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:22 UpdateTip: new best=3458ec2c0357b60ca2d0d5825626d2d2044081386b24e2c0e0d226a2c05f1280 height=1748 version=0x20000000 log2_work=11.772315 tx=1932 date='2017-11-29 17:05:22' progress=1.000000 cache=0.4MiB(1914txo)
DEBUG:bitcoind:2017-11-29 17:05:22 AddToWallet 6d96801802f9d17c66c44a759813324f1232c2eba932be7552bbd1ddea320bf5 new
DEBUG:bitcoind:2017-11-29 17:05:22 keypool keep 2202
DEBUG:lnd(16331):2017-11-29 18:05:22.592 [INF] CRTR: Pruning channel graph using block 3458ec2c0357b60ca2d0d5825626d2d2044081386b24e2c0e0d226a2c05f1280 (height=1748)
DEBUG:lnd(16331):2017-11-29 18:05:22.597 [INF] NTFN: New block: height=1748, sha=3458ec2c0357b60ca2d0d5825626d2d2044081386b24e2c0e0d226a2c05f1280
DEBUG:lnd(16331):2017-11-29 18:05:22.604 [INF] CRTR: Block 3458ec2c0357b60ca2d0d5825626d2d2044081386b24e2c0e0d226a2c05f1280 (height=1748) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 80125fc0a226d2e0c0e2246b38814004d2d2265682d5d0a20cb657032cec5834
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got depth change 3->4 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 80125fc0a226d2e0c0e2246b38814004d2d2265682d5d0a20cb657032cec5834
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got depth change 3->4 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:23.631 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:23 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:23 keypool reserve 2203
DEBUG:bitcoind:2017-11-29 17:05:23 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:23 UpdateTip: new best=56558a95de1761fc9b000eead7475f53aabed05db253b1b2778ea7dc40385c7c height=1749 version=0x20000000 log2_work=11.773139 tx=1933 date='2017-11-29 17:05:23' progress=1.000000 cache=0.4MiB(1915txo)
DEBUG:bitcoind:2017-11-29 17:05:23 AddToWallet 6e7873eb8e659ecb3e6ccbdc3021a84b59ccb13f533413e7b8405e8f8e7dcf5e new
DEBUG:bitcoind:2017-11-29 17:05:23 keypool keep 2203
DEBUG:proc:lightningd(1540): Adding block 7c5c3840dca78e77b2b153b25dd0beaa535f47d7ea0e009bfc6117de958a5556
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got depth change 4->5 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:23.773 [INF] CRTR: Pruning channel graph using block 56558a95de1761fc9b000eead7475f53aabed05db253b1b2778ea7dc40385c7c (height=1749)
DEBUG:lnd(16331):2017-11-29 18:05:23.773 [INF] NTFN: New block: height=1749, sha=56558a95de1761fc9b000eead7475f53aabed05db253b1b2778ea7dc40385c7c
DEBUG:lnd(16331):2017-11-29 18:05:23.781 [INF] CRTR: Block 56558a95de1761fc9b000eead7475f53aabed05db253b1b2778ea7dc40385c7c (height=1749) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 7c5c3840dca78e77b2b153b25dd0beaa535f47d7ea0e009bfc6117de958a5556
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got depth change 4->5 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:24.683 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:24 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:24 keypool reserve 2204
DEBUG:bitcoind:2017-11-29 17:05:24 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:24 UpdateTip: new best=52050787e597af21eeffef3223e9a3823a363952b0e5c751751a2e1e4036dbb0 height=1750 version=0x20000000 log2_work=11.773963 tx=1934 date='2017-11-29 17:05:24' progress=1.000000 cache=0.4MiB(1916txo)
DEBUG:bitcoind:2017-11-29 17:05:24 AddToWallet 425f1350fdec269724bbd0f7b3af3dd3248908f5d0c349fc2d06ba6cd0c765f1 new
DEBUG:bitcoind:2017-11-29 17:05:24 keypool keep 2204
DEBUG:proc:lightningd(1540): Adding block b0db36401e2e1a7551c7e5b05239363a82a3e92332efffee21af97e587070552
DEBUG:proc:lightningd(1540): peer 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045: Got depth change 5->6 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightning_channeld(4731): TRACE: Now dealing with deferred WIRE_CHANNEL_FUNDING_ANNOUNCE_DEPTH
DEBUG:proc:lightning_channeld(4731): TRACE: Exchanging announcement signatures.
DEBUG:proc:lightning_channeld(4731): TRACE: peer_out WIRE_ANNOUNCEMENT_SIGNATURES
DEBUG:proc:lightning_channeld(4729): TRACE: peer_in WIRE_ANNOUNCEMENT_SIGNATURES
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:24.817 [INF] CRTR: Pruning channel graph using block 52050787e597af21eeffef3223e9a3823a363952b0e5c751751a2e1e4036dbb0 (height=1750)
DEBUG:lnd(16331):2017-11-29 18:05:24.817 [INF] NTFN: New block: height=1750, sha=52050787e597af21eeffef3223e9a3823a363952b0e5c751751a2e1e4036dbb0
DEBUG:lnd(16331):2017-11-29 18:05:24.827 [INF] CRTR: Block 52050787e597af21eeffef3223e9a3823a363952b0e5c751751a2e1e4036dbb0 (height=1750) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block b0db36401e2e1a7551c7e5b05239363a82a3e92332efffee21af97e587070552
DEBUG:proc:lightningd(1727): peer 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d: Got depth change 5->6 for 1077192bdb8ccd5ea06eefc03aa7b19bfa59b6fb03c313f3ede4665e4b3539c2
DEBUG:proc:lightning_channeld(4729): TRACE: Now dealing with deferred WIRE_CHANNEL_FUNDING_ANNOUNCE_DEPTH
DEBUG:proc:lightning_channeld(4729): TRACE: Exchanging announcement signatures.
DEBUG:proc:lightning_channeld(4731): TRACE: peer_in WIRE_ANNOUNCEMENT_SIGNATURES
DEBUG:proc:lightning_channeld(4729): UPDATE WIRE_CHANNEL_ANNOUNCE
DEBUG:proc:lightningd(1727): HSM TRACE: Control: type WIRE_HSMCTL_NODE_ANNOUNCEMENT_SIG_REQ len 146
DEBUG:proc:lightning_channeld(4731): UPDATE WIRE_CHANNEL_ANNOUNCE
DEBUG:proc:lightningd(1540): HSM TRACE: Control: type WIRE_HSMCTL_NODE_ANNOUNCEMENT_SIG_REQ len 146
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_ANNOUNCEMENT_SIGNATURES
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_FORWARDED_MSG len 436
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_FORWARDED_MSG len 436
DEBUG:proc:lightning_gossipd(1843): TRACE: Received channel_announcement for channel 1745:1:0
DEBUG:proc:lightning_gossipd(1843): TRACE: Creating new route from 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 to 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:proc:lightning_gossipd(1843): TRACE: Creating new route from 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d to 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_FORWARDED_MSG len 134
DEBUG:proc:lightning_gossipd(1843): TRACE: Received channel_update for channel 1745:1:0(0)
DEBUG:proc:lightning_gossipd(1843): TRACE: Channel 1745:1:0(0) was updated.
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_announcement for channel 1745:1:0
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_FORWARDED_MSG len 146
DEBUG:proc:lightning_gossipd(1724): TRACE: Creating new route from 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 to 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:proc:lightning_gossipd(1843): TRACE: Received node_announcement for node 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_gossipd(1724): TRACE: Creating new route from 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d to 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_FORWARDED_MSG len 134
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_update for channel 1745:1:0(1)
DEBUG:proc:lightning_gossipd(1724): TRACE: Channel 1745:1:0(1) was updated.
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_FORWARDED_MSG len 146
DEBUG:proc:lightning_gossipd(1724): TRACE: Received node_announcement for node 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:25.272 [DBG] PEER: Received ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=1918647790534656) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:25.272 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.ChannelAnnouncement)(0xc4201c1880)({
DEBUG:lnd(16331): NodeSig1: (*btcec.Signature)(0xc4208ded00)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef560)(43373012348931471379750668301059184597519809338064330214542322802683742506418),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef580)(40642041275907896343546680384537193607974262465538365070189363671800167142083)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): NodeSig2: (*btcec.Signature)(0xc4208ded10)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef5a0)(111246116912173764115738335474082497860361028815071619309184566835457132508296),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef5c0)(18651561393997746568845224357174069714277810478608252321809872757253379336663)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSig1: (*btcec.Signature)(0xc4208ded20)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef5e0)(65328966953735514889059477589454334609340439078627033359741228766397816497779),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef600)(18971638635554556470391749823328323003838982657421894078989891566095810463134)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSig2: (*btcec.Signature)(0xc4208ded30)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef620)(30839087144885460431375255666909068793316045819800183771745310302205752660258),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef640)(20644146373512727118556863639841998015889867130867786153082552840449054669685)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc420146618)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1745,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): NodeID1: (*btcec.PublicKey)(0xc4208ef660)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef680)(107998571367332847073932951161264920695639806384551830343593157418773093380165),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef6a0)(91718268146366401233411679504382709496192671638243761873097350794964880017084)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): NodeID2: (*btcec.PublicKey)(0xc4208ef740)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef760)(16405506024614896252872555091242830942141026762834566769653055202225768008797),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef780)(92023483536520365060889430076071048107583936536450331822612563567028849358623)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinKey1: (*btcec.PublicKey)(0xc4208ef800)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef820)(11757689431313720003259502233281176985844483089880226551156977997120792581462),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef840)(83912352232881530099372279357715975123848582781919279428096812904034146776976)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinKey2: (*btcec.PublicKey)(0xc4208ef8c0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef8e0)(9464776250637948142914504618356431043685729825651693356944574229202982443687),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef900)(58408104796214074919798066452553239215222399413184898772287028720953138024222)
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:25.273 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=1918647790534656, flag=1, update_time=2017-11-29 18:05:25 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:25.275 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc4208d8410)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4208cc9e0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208f09c0)(114695333185145172445915842533364136240373533541070844849609399894596641110655),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208f09e0)(6391320680334139954505184718159120901430350919928277403274602846102548960494)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1745,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): Flags: (uint16) 1,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 6,
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): BaseFee: (uint32) 1,
DEBUG:lnd(16331): FeeRate: (uint32) 10
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:25.275 [DBG] PEER: Received NodeAnnouncement(node=0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d, update_time=2017-11-29 18:05:25 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:25.276 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4208b2ba0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4208dedf0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef9e0)(33260444095915820487396961329734403871801365577210297645314786515626770713311),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208efa00)(1029123454794028145005721431911026586917035472835707566258464759104506980448)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc420146620)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4208efa20)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208efa40)(16405506024614896252872555091242830942141026762834566769653055202225768008797),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208efa60)(92023483536520365060889430076071048107583936536450331822612563567028849358623)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): red: (uint8) 3,
DEBUG:lnd(16331): green: (uint8) 36,
DEBUG:lnd(16331): blue: (uint8) 69
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) ANGRYWATER,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:25.301 [INF] CRTR: New channel discovered! Link connects 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 and 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d with ChannelPoint(c239354b5e66e4edf313c303fbb659fa9bb1a73ac0ef6ea05ecd8cdb2b197710:0): chan_id=1918647790534656, capacity=0.1 BTC
DEBUG:lnd(16331):2017-11-29 18:05:25.302 [DBG] CRTR: Updating chain filter with new UTXO's: [c239354b5e66e4edf313c303fbb659fa9bb1a73ac0ef6ea05ecd8cdb2b197710:0]
DEBUG:lnd(16331):2017-11-29 18:05:25.309 [INF] CRTR: New channel update applied: (*channeldb.ChannelEdgePolicy)(0xc42099a660)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4208cc9e0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208f09c0)(114695333185145172445915842533364136240373533541070844849609399894596641110655),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208f09e0)(6391320680334139954505184718159120901430350919928277403274602846102548960494)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelID: (uint64) 1918647790534656,
DEBUG:lnd(16331): LastUpdate: (time.Time) 2017-11-29 18:05:25 +0100 CET,
DEBUG:lnd(16331): Flags: (uint16) 1,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 6,
DEBUG:lnd(16331): MinHTLC: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): FeeBaseMSat: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): FeeProportionalMillionths: (lnwire.MilliSatoshi) 10 mSAT,
DEBUG:lnd(16331): Node: (*channeldb.LightningNode)(<nil>),
DEBUG:lnd(16331): db: (*channeldb.DB)(<nil>)
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:25.316 [INF] CRTR: Updated vertex data for node=0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_CHANNEL_ANNOUNCEMENT
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4731): TRACE: peer_in WIRE_CHANNEL_ANNOUNCEMENT
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_channeld(4731): TRACE: peer_in WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4731): TRACE: peer_in WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_announcement for channel 1745:1:0
DEBUG:proc:lightning_gossipd(1724): TRACE: Not forwarding channel_announcement
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_update for channel 1745:1:0(0)
DEBUG:proc:lightning_gossipd(1724): TRACE: Channel 1745:1:0(0) was updated.
DEBUG:proc:lightning_channeld(4729): TRACE: peer_in WIRE_CHANNEL_ANNOUNCEMENT
DEBUG:proc:lightning_channeld(4729): TRACE: peer_in WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4729): TRACE: peer_in WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_channeld(4729): TRACE: peer_in WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4729): TRACE: peer_in WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_gossipd(1724): TRACE: Received node_announcement for node 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_channeld(4731): TRACE: peer_out WIRE_CHANNEL_ANNOUNCEMENT
DEBUG:proc:lightning_channeld(4731): TRACE: peer_out WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4731): TRACE: peer_out WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_channeld(4731): TRACE: peer_out WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4731): TRACE: peer_out WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_gossipd(1843): TRACE: Received channel_announcement for channel 1745:1:0
DEBUG:proc:lightning_gossipd(1843): TRACE: Not forwarding channel_announcement
DEBUG:proc:lightning_gossipd(1843): TRACE: Received channel_update for channel 1745:1:0(1)
DEBUG:proc:lightning_gossipd(1843): TRACE: Channel 1745:1:0(1) was updated.
DEBUG:proc:lightning_gossipd(1843): TRACE: Received node_announcement for node 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:proc:lightning_gossipd(1843): TRACE: Received channel_update for channel 1745:1:0(0)
DEBUG:proc:lightning_gossipd(1843): TRACE: Ignoring outdated update.
DEBUG:proc:lightning_gossipd(1843): TRACE: Received node_announcement for node 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_gossipd(1843): TRACE: Ignoring node announcement, it's outdated.
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:25.733 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:25 keypool reserve 2205
DEBUG:bitcoind:2017-11-29 17:05:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:25 UpdateTip: new best=77dbd4d43cfd4e19a58dfb08a3cdc45797ec596a069d15c04a263fed78384d78 height=1751 version=0x20000000 log2_work=11.774787 tx=1935 date='2017-11-29 17:05:25' progress=1.000000 cache=0.4MiB(1917txo)
DEBUG:bitcoind:2017-11-29 17:05:25 AddToWallet f47eb099f078e299cef6690258d7d8e06c3e57ebccfb2b28119a93223be7d578 new
DEBUG:bitcoind:2017-11-29 17:05:25 keypool keep 2205
DEBUG:lnd(16331):2017-11-29 18:05:25.873 [INF] CRTR: Pruning channel graph using block 77dbd4d43cfd4e19a58dfb08a3cdc45797ec596a069d15c04a263fed78384d78 (height=1751)
DEBUG:lnd(16331):2017-11-29 18:05:25.874 [INF] NTFN: New block: height=1751, sha=77dbd4d43cfd4e19a58dfb08a3cdc45797ec596a069d15c04a263fed78384d78
DEBUG:lnd(16331):2017-11-29 18:05:25.883 [INF] CRTR: Block 77dbd4d43cfd4e19a58dfb08a3cdc45797ec596a069d15c04a263fed78384d78 (height=1751) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 784d3878ed3f264ac0159d066a59ec9757c4cda308fb8da5194efd3cd4d4db77
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:lnd(16331):2017-11-29 18:05:26.272 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=1918647790534656, flag=0, update_time=2017-11-29 18:05:25 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:26.272 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc4209b4410)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420960d40)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4209950c0)(83273504937277524269271981151548439357258713825287069249216830789423065782272),
DEBUG:lnd(16331): S: (*big.Int)(0xc4209950e0)(47431414904279678395741918466518342426093227018610700934864348161466890190166)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1745,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): Flags: (uint16) 0,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 6,
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): BaseFee: (uint32) 1,
DEBUG:lnd(16331): FeeRate: (uint32) 10
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:26.274 [DBG] PEER: Received NodeAnnouncement(node=02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045, update_time=2017-11-29 18:05:25 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:26.274 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4209b60c0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420961150)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420995300)(21579963012866974514512450113895749792035601959668622701499578212291384038469),
DEBUG:lnd(16331): S: (*big.Int)(0xc420995320)(41150490680455454537480752234457347106904371527533556273506506973833777570927)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42028c5b8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc420995340)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420995360)(107998571367332847073932951161264920695639806384551830343593157418773093380165),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420995380)(91718268146366401233411679504382709496192671638243761873097350794964880017084)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): red: (uint8) 2,
DEBUG:lnd(16331): green: (uint8) 238,
DEBUG:lnd(16331): blue: (uint8) 197
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) LIGHTNINGSOUFFLE,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:26.290 [INF] CRTR: New channel update applied: (*channeldb.ChannelEdgePolicy)(0xc4209b6660)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420960d40)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4209950c0)(83273504937277524269271981151548439357258713825287069249216830789423065782272),
DEBUG:lnd(16331): S: (*big.Int)(0xc4209950e0)(47431414904279678395741918466518342426093227018610700934864348161466890190166)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelID: (uint64) 1918647790534656,
DEBUG:lnd(16331): LastUpdate: (time.Time) 2017-11-29 18:05:25 +0100 CET,
DEBUG:lnd(16331): Flags: (uint16) 0,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 6,
DEBUG:lnd(16331): MinHTLC: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): FeeBaseMSat: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): FeeProportionalMillionths: (lnwire.MilliSatoshi) 10 mSAT,
DEBUG:lnd(16331): Node: (*channeldb.LightningNode)(<nil>),
DEBUG:lnd(16331): db: (*channeldb.DB)(<nil>)
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:26.300 [INF] CRTR: Updated vertex data for node=02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4731): TRACE: peer_in WIRE_CHANNEL_UPDATE
DEBUG:proc:lightning_channeld(4729): TRACE: peer_out WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_update for channel 1745:1:0(1)
DEBUG:proc:lightning_gossipd(1724): TRACE: Ignoring outdated update.
DEBUG:proc:lightning_channeld(4731): TRACE: peer_in WIRE_NODE_ANNOUNCEMENT
DEBUG:proc:lightning_gossipd(1724): TRACE: Received node_announcement for node 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:proc:lightning_gossipd(1724): TRACE: Ignoring node announcement, it's outdated.
DEBUG:proc:lightningd(1540): Adding block 784d3878ed3f264ac0159d066a59ec9757c4cda308fb8da5194efd3cd4d4db77
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:26.780 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:26 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:bitcoind:2017-11-29 17:05:26 keypool reserve 2206
DEBUG:bitcoind:2017-11-29 17:05:26 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:bitcoind:2017-11-29 17:05:26 UpdateTip: new best=3de157e04b2333c5d0ae2c13d50d0387f589e268fffebf6c75cc1e7c42867e6c height=1752 version=0x20000000 log2_work=11.77561 tx=1936 date='2017-11-29 17:05:26' progress=1.000000 cache=0.4MiB(1918txo)
DEBUG:bitcoind:2017-11-29 17:05:26 AddToWallet 662c4a301e397753573e4a91f790649f0a29e50cfb66e24faff10dc6b32d5eea new
DEBUG:bitcoind:2017-11-29 17:05:26 keypool keep 2206
DEBUG:lnd(16331):2017-11-29 18:05:26.932 [INF] NTFN: New block: height=1752, sha=3de157e04b2333c5d0ae2c13d50d0387f589e268fffebf6c75cc1e7c42867e6c
DEBUG:lnd(16331):2017-11-29 18:05:26.935 [INF] CRTR: Pruning channel graph using block 3de157e04b2333c5d0ae2c13d50d0387f589e268fffebf6c75cc1e7c42867e6c (height=1752)
DEBUG:lnd(16331):2017-11-29 18:05:26.961 [INF] CRTR: Block 3de157e04b2333c5d0ae2c13d50d0387f589e268fffebf6c75cc1e7c42867e6c (height=1752) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 6c7e86427c1ecc756cbffeff68e289f587030dd5132caed0c533234be057e13d
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 6c7e86427c1ecc756cbffeff68e289f587030dd5132caed0c533234be057e13d
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:27.838 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:27 keypool reserve 2207
DEBUG:bitcoind:2017-11-29 17:05:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:27 UpdateTip: new best=1e51f238c76349019d84ddc53932e55614202d6dd85933e6316e92b8dc9843b2 height=1753 version=0x20000000 log2_work=11.776433 tx=1937 date='2017-11-29 17:05:27' progress=1.000000 cache=0.4MiB(1919txo)
DEBUG:bitcoind:2017-11-29 17:05:27 AddToWallet 4795cf0a14e351eaed4aa07a63c46d4597662dc68fe028e0d78b6063b5c687bd new
DEBUG:bitcoind:2017-11-29 17:05:27 keypool keep 2207
DEBUG:lnd(16331):2017-11-29 18:05:27.968 [INF] CRTR: Pruning channel graph using block 1e51f238c76349019d84ddc53932e55614202d6dd85933e6316e92b8dc9843b2 (height=1753)
DEBUG:lnd(16331):2017-11-29 18:05:27.969 [INF] NTFN: New block: height=1753, sha=1e51f238c76349019d84ddc53932e55614202d6dd85933e6316e92b8dc9843b2
DEBUG:lnd(16331):2017-11-29 18:05:27.978 [INF] CRTR: Block 1e51f238c76349019d84ddc53932e55614202d6dd85933e6316e92b8dc9843b2 (height=1753) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block b24398dcb8926e31e63359d86d2d201456e53239c5dd849d014963c738f2511e
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block b24398dcb8926e31e63359d86d2d201456e53239c5dd849d014963c738f2511e
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:28.882 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:28 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:28 keypool reserve 2208
DEBUG:bitcoind:2017-11-29 17:05:28 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:28 UpdateTip: new best=604fea02b8ca379c5e6b08ef7b154dc2fc604a6cba2ef5269fd09e0af9dad89d height=1754 version=0x20000000 log2_work=11.777255 tx=1938 date='2017-11-29 17:05:28' progress=1.000000 cache=0.4MiB(1920txo)
DEBUG:bitcoind:2017-11-29 17:05:28 AddToWallet 4a9c268fc81804cfe901d3c3862846f1d5d13f247a21055fdd1328406d3cfa3f new
DEBUG:bitcoind:2017-11-29 17:05:28 keypool keep 2208
DEBUG:lnd(16331):2017-11-29 18:05:29.038 [INF] CRTR: Pruning channel graph using block 604fea02b8ca379c5e6b08ef7b154dc2fc604a6cba2ef5269fd09e0af9dad89d (height=1754)
DEBUG:lnd(16331):2017-11-29 18:05:29.039 [INF] NTFN: New block: height=1754, sha=604fea02b8ca379c5e6b08ef7b154dc2fc604a6cba2ef5269fd09e0af9dad89d
DEBUG:lnd(16331):2017-11-29 18:05:29.046 [INF] CRTR: Block 604fea02b8ca379c5e6b08ef7b154dc2fc604a6cba2ef5269fd09e0af9dad89d (height=1754) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 9dd8daf90a9ed09f26f52eba6c4a60fcc24d157bef086b5e9c37cab802ea4f60
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:29.809 [INF] DISC: Broadcasting batch of 5 new announcements
DEBUG:lnd(16331):2017-11-29 18:05:29.809 [DBG] SRVR: Broadcasting 5 messages
DEBUG:lnd(16331):2017-11-29 18:05:29.810 [DBG] PEER: Sending ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=1918647790534656) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:29.810 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.ChannelAnnouncement)(0xc4201c1880)({
DEBUG:lnd(16331): NodeSig1: (*btcec.Signature)(0xc4208ded00)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef560)(43373012348931471379750668301059184597519809338064330214542322802683742506418),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef580)(40642041275907896343546680384537193607974262465538365070189363671800167142083)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): NodeSig2: (*btcec.Signature)(0xc4208ded10)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef5a0)(111246116912173764115738335474082497860361028815071619309184566835457132508296),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef5c0)(18651561393997746568845224357174069714277810478608252321809872757253379336663)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSig1: (*btcec.Signature)(0xc4208ded20)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef5e0)(65328966953735514889059477589454334609340439078627033359741228766397816497779),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef600)(18971638635554556470391749823328323003838982657421894078989891566095810463134)
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_announcement for channel 1745:1:0
DEBUG:proc:lightning_gossipd(1724): TRACE: Not forwarding channel_announcement
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_update for channel 1745:1:0(1)
DEBUG:proc:lightning_gossipd(1724): TRACE: Ignoring outdated update.
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSig2: (*btcec.Signature)(0xc4208ded30)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef620)(30839087144885460431375255666909068793316045819800183771745310302205752660258),
DEBUG:proc:lightning_gossipd(1724): TRACE: Received channel_update for channel 1745:1:0(0)
DEBUG:proc:lightning_gossipd(1724): TRACE: Ignoring outdated update.
DEBUG:lnd(16331): S: (*big.Int)(0xc4208ef640)(20644146373512727118556863639841998015889867130867786153082552840449054669685)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc420146618)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1745,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:proc:lightning_gossipd(1724): TRACE: Received node_announcement for node 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d
DEBUG:lnd(16331): },
DEBUG:proc:lightning_gossipd(1724): TRACE: Ignoring node announcement, it's outdated.
DEBUG:proc:lightning_gossipd(1724): TRACE: Received node_announcement for node 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045
DEBUG:proc:lightning_gossipd(1724): TRACE: Ignoring node announcement, it's outdated.
DEBUG:lnd(16331): NodeID1: (*btcec.PublicKey)(0xc4208ef660)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef680)(107998571367332847073932951161264920695639806384551830343593157418773093380165),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef6a0)(91718268146366401233411679504382709496192671638243761873097350794964880017084)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): NodeID2: (*btcec.PublicKey)(0xc4208ef740)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef760)(16405506024614896252872555091242830942141026762834566769653055202225768008797),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef780)(92023483536520365060889430076071048107583936536450331822612563567028849358623)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinKey1: (*btcec.PublicKey)(0xc4208ef800)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef820)(11757689431313720003259502233281176985844483089880226551156977997120792581462),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef840)(83912352232881530099372279357715975123848582781919279428096812904034146776976)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinKey2: (*btcec.PublicKey)(0xc4208ef8c0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208ef8e0)(9464776250637948142914504618356431043685729825651693356944574229202982443687),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208ef900)(58408104796214074919798066452553239215222399413184898772287028720953138024222)
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:29.811 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=1918647790534656, flag=1, update_time=2017-11-29 18:05:25 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:29.814 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc4208d8410)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4208cc9e0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208f09c0)(114695333185145172445915842533364136240373533541070844849609399894596641110655),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208f09e0)(6391320680334139954505184718159120901430350919928277403274602846102548960494)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1745,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): Flags: (uint16) 1,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 6,
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): BaseFee: (uint32) 1,
DEBUG:lnd(16331): FeeRate: (uint32) 10
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:29.814 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=1918647790534656, flag=0, update_time=2017-11-29 18:05:25 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:29.815 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc4209b4410)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420960d40)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4209950c0)(83273504937277524269271981151548439357258713825287069249216830789423065782272),
DEBUG:lnd(16331): S: (*big.Int)(0xc4209950e0)(47431414904279678395741918466518342426093227018610700934864348161466890190166)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1745,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): Flags: (uint16) 0,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 6,
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): BaseFee: (uint32) 1,
DEBUG:lnd(16331): FeeRate: (uint32) 10
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:29.815 [DBG] PEER: Sending NodeAnnouncement(node=0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d, update_time=2017-11-29 18:05:25 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:29.816 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4208b2ba0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4208dedf0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4208ef9e0)(33260444095915820487396961329734403871801365577210297645314786515626770713311),
DEBUG:lnd(16331): S: (*big.Int)(0xc4208efa00)(1029123454794028145005721431911026586917035472835707566258464759104506980448)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc420146620)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4208efa20)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4208efa40)(16405506024614896252872555091242830942141026762834566769653055202225768008797),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4208efa60)(92023483536520365060889430076071048107583936536450331822612563567028849358623)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): red: (uint8) 3,
DEBUG:lnd(16331): green: (uint8) 36,
DEBUG:lnd(16331): blue: (uint8) 69
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) ANGRYWATER,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:05:29.818 [DBG] PEER: Sending NodeAnnouncement(node=02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045, update_time=2017-11-29 18:05:25 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:05:29.818 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4209b60c0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420961150)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420995300)(21579963012866974514512450113895749792035601959668622701499578212291384038469),
DEBUG:lnd(16331): S: (*big.Int)(0xc420995320)(41150490680455454537480752234457347106904371527533556273506506973833777570927)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42028c5b8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975125,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc420995340)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420995360)(107998571367332847073932951161264920695639806384551830343593157418773093380165),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420995380)(91718268146366401233411679504382709496192671638243761873097350794964880017084)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): red: (uint8) 2,
DEBUG:proc:lightningd(1540): Adding block 9dd8daf90a9ed09f26f52eba6c4a60fcc24d157bef086b5e9c37cab802ea4f60
DEBUG:lnd(16331): green: (uint8) 238,
DEBUG:lnd(16331): blue: (uint8) 197
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) LIGHTNINGSOUFFLE,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:29.949 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:29 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:29 keypool reserve 2209
DEBUG:bitcoind:2017-11-29 17:05:29 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:29 UpdateTip: new best=338eee1a2ad6847625c03af762d2e0d02878daaf862156029150b21e0e9405b1 height=1755 version=0x20000000 log2_work=11.778077 tx=1939 date='2017-11-29 17:05:29' progress=1.000000 cache=0.4MiB(1921txo)
DEBUG:bitcoind:2017-11-29 17:05:29 AddToWallet 712b1affbd9bfe73bfcb0cdbc5c33e1b5e72938f81eeff9fa9642569989a6d0e new
DEBUG:bitcoind:2017-11-29 17:05:30 keypool keep 2209
DEBUG:lnd(16331):2017-11-29 18:05:30.106 [INF] CRTR: Pruning channel graph using block 338eee1a2ad6847625c03af762d2e0d02878daaf862156029150b21e0e9405b1 (height=1755)
DEBUG:lnd(16331):2017-11-29 18:05:30.106 [INF] NTFN: New block: height=1755, sha=338eee1a2ad6847625c03af762d2e0d02878daaf862156029150b21e0e9405b1
DEBUG:lnd(16331):2017-11-29 18:05:30.113 [INF] CRTR: Block 338eee1a2ad6847625c03af762d2e0d02878daaf862156029150b21e0e9405b1 (height=1755) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block b105940e1eb2509102562186afda7828d0e0d262f73ac0257684d62a1aee8e33
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block b105940e1eb2509102562186afda7828d0e0d262f73ac0257684d62a1aee8e33
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:31.031 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:31 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:31 keypool reserve 2210
DEBUG:bitcoind:2017-11-29 17:05:31 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:31 UpdateTip: new best=2cf0712f6dc8c0a38d8140c7a07c9f9ade307f55711c669d1ffb4e52ec0e153f height=1756 version=0x20000000 log2_work=11.778898 tx=1940 date='2017-11-29 17:05:31' progress=1.000000 cache=0.4MiB(1922txo)
DEBUG:bitcoind:2017-11-29 17:05:31 AddToWallet ce0da2497e47edfcc5e1166df27afd1fdc112ea924bb2a5c6a8f6f78ace35804 new
DEBUG:bitcoind:2017-11-29 17:05:31 keypool keep 2210
DEBUG:proc:2017-11-29 18:05:31.194 [INF] BMGR: Processed 10 blocks in the last 10.69s (10 transactions, height 1756, 2017-11-29 18:05:31 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:05:31.196 [INF] CRTR: Pruning channel graph using block 2cf0712f6dc8c0a38d8140c7a07c9f9ade307f55711c669d1ffb4e52ec0e153f (height=1756)
DEBUG:lnd(16331):2017-11-29 18:05:31.196 [INF] NTFN: New block: height=1756, sha=2cf0712f6dc8c0a38d8140c7a07c9f9ade307f55711c669d1ffb4e52ec0e153f
DEBUG:lnd(16331):2017-11-29 18:05:31.208 [INF] CRTR: Block 2cf0712f6dc8c0a38d8140c7a07c9f9ade307f55711c669d1ffb4e52ec0e153f (height=1756) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 3f150eec524efb1f9d661c71557f30de9a9f7ca0c740818da3c0c86d2f71f02c
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 3f150eec524efb1f9d661c71557f30de9a9f7ca0c740818da3c0c86d2f71f02c
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:32.125 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:32 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:32 keypool reserve 2211
DEBUG:bitcoind:2017-11-29 17:05:32 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:32 UpdateTip: new best=516fffd1a703b768abac6110f793fd1084fc79fd78d05766778e8df8f48e70a7 height=1757 version=0x20000000 log2_work=11.779719 tx=1941 date='2017-11-29 17:05:32' progress=1.000000 cache=0.4MiB(1923txo)
DEBUG:bitcoind:2017-11-29 17:05:32 AddToWallet 0d90c46b093dd4b8cebdb8d7e4378cdd5c7ad45e6b305660e873d7578bb53824 new
DEBUG:bitcoind:2017-11-29 17:05:32 keypool keep 2211
DEBUG:lnd(16331):2017-11-29 18:05:32.264 [INF] CRTR: Pruning channel graph using block 516fffd1a703b768abac6110f793fd1084fc79fd78d05766778e8df8f48e70a7 (height=1757)
DEBUG:lnd(16331):2017-11-29 18:05:32.265 [INF] NTFN: New block: height=1757, sha=516fffd1a703b768abac6110f793fd1084fc79fd78d05766778e8df8f48e70a7
DEBUG:lnd(16331):2017-11-29 18:05:32.273 [INF] CRTR: Block 516fffd1a703b768abac6110f793fd1084fc79fd78d05766778e8df8f48e70a7 (height=1757) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block a7708ef4f88d8e776657d078fd79fc8410fd93f71061acab68b703a7d1ff6f51
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block a7708ef4f88d8e776657d078fd79fc8410fd93f71061acab68b703a7d1ff6f51
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:33.179 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:33 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:33 keypool reserve 2212
DEBUG:bitcoind:2017-11-29 17:05:33 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:33 UpdateTip: new best=0d521c8f916d28d55ad7580caccffba6eed6f23a87ed86cb0a2d05a3f9924110 height=1758 version=0x20000000 log2_work=11.78054 tx=1942 date='2017-11-29 17:05:33' progress=1.000000 cache=0.4MiB(1924txo)
DEBUG:bitcoind:2017-11-29 17:05:33 AddToWallet 647ac6c422f0215501614095e3b13f8c1e1357cfa639a89b644f55b53575b7c9 new
DEBUG:bitcoind:2017-11-29 17:05:33 keypool keep 2212
DEBUG:lnd(16331):2017-11-29 18:05:33.337 [INF] CRTR: Pruning channel graph using block 0d521c8f916d28d55ad7580caccffba6eed6f23a87ed86cb0a2d05a3f9924110 (height=1758)
DEBUG:lnd(16331):2017-11-29 18:05:33.338 [INF] NTFN: New block: height=1758, sha=0d521c8f916d28d55ad7580caccffba6eed6f23a87ed86cb0a2d05a3f9924110
DEBUG:lnd(16331):2017-11-29 18:05:33.345 [INF] CRTR: Block 0d521c8f916d28d55ad7580caccffba6eed6f23a87ed86cb0a2d05a3f9924110 (height=1758) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 104192f9a3052d0acb86ed873af2d6eea6fbcfac0c58d75ad5286d918f1c520d
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 104192f9a3052d0acb86ed873af2d6eea6fbcfac0c58d75ad5286d918f1c520d
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:34.248 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:34 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:34 keypool reserve 2213
DEBUG:bitcoind:2017-11-29 17:05:34 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:34 UpdateTip: new best=769b06e367390275eded3701671891817a7577f624e90087f464afb17a3d2327 height=1759 version=0x20000000 log2_work=11.78136 tx=1943 date='2017-11-29 17:05:34' progress=1.000000 cache=0.4MiB(1925txo)
DEBUG:bitcoind:2017-11-29 17:05:34 AddToWallet f42f3111cde8ee8222a06ac09bd15b98972da6cca1e104c93026408cc401eb03 new
DEBUG:bitcoind:2017-11-29 17:05:34 keypool keep 2213
DEBUG:lnd(16331):2017-11-29 18:05:34.305 [INF] CRTR: Pruning channel graph using block 769b06e367390275eded3701671891817a7577f624e90087f464afb17a3d2327 (height=1759)
DEBUG:lnd(16331):2017-11-29 18:05:34.305 [INF] NTFN: New block: height=1759, sha=769b06e367390275eded3701671891817a7577f624e90087f464afb17a3d2327
DEBUG:lnd(16331):2017-11-29 18:05:34.320 [INF] CRTR: Block 769b06e367390275eded3701671891817a7577f624e90087f464afb17a3d2327 (height=1759) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 27233d7ab1af64f48700e924f677757a819118670137eded75023967e3069b76
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 27233d7ab1af64f48700e924f677757a819118670137eded75023967e3069b76
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:35.327 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:35 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:35 keypool reserve 2214
DEBUG:bitcoind:2017-11-29 17:05:35 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:35 UpdateTip: new best=01f38b9a5e9ca510d60848062307b6d4da1d385df6d4f8877a2eb7d38d9b679c height=1760 version=0x20000000 log2_work=11.782179 tx=1944 date='2017-11-29 17:05:35' progress=1.000000 cache=0.4MiB(1926txo)
DEBUG:bitcoind:2017-11-29 17:05:35 AddToWallet d8a5d631331f1a761f719e8ef1942a293d460508bd9a225e49c49d46b5309d0d new
DEBUG:bitcoind:2017-11-29 17:05:35 keypool keep 2214
DEBUG:lnd(16331):2017-11-29 18:05:35.483 [INF] CRTR: Pruning channel graph using block 01f38b9a5e9ca510d60848062307b6d4da1d385df6d4f8877a2eb7d38d9b679c (height=1760)
DEBUG:lnd(16331):2017-11-29 18:05:35.483 [INF] NTFN: New block: height=1760, sha=01f38b9a5e9ca510d60848062307b6d4da1d385df6d4f8877a2eb7d38d9b679c
DEBUG:lnd(16331):2017-11-29 18:05:35.491 [INF] CRTR: Block 01f38b9a5e9ca510d60848062307b6d4da1d385df6d4f8877a2eb7d38d9b679c (height=1760) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 9c679b8dd3b72e7a87f8d4f65d381ddad4b60723064808d610a59c5e9a8bf301
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 9c679b8dd3b72e7a87f8d4f65d381ddad4b60723064808d610a59c5e9a8bf301
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:36.403 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:36 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:36 keypool reserve 2215
DEBUG:bitcoind:2017-11-29 17:05:36 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:36 UpdateTip: new best=59473b64e2d6fdfe96cbfa049d4740909b4d25d7ce63db4bd7b3e74531918ffd height=1761 version=0x20000000 log2_work=11.782998 tx=1945 date='2017-11-29 17:05:36' progress=1.000000 cache=0.4MiB(1927txo)
DEBUG:bitcoind:2017-11-29 17:05:36 AddToWallet 6dd20a54ef5a67ceedd841b3f2e903c86115534435721a400b4166fa9f974fb6 new
DEBUG:lnd(16331):2017-11-29 18:05:36.458 [INF] CRTR: Pruning channel graph using block 59473b64e2d6fdfe96cbfa049d4740909b4d25d7ce63db4bd7b3e74531918ffd (height=1761)
DEBUG:lnd(16331):2017-11-29 18:05:36.459 [INF] NTFN: New block: height=1761, sha=59473b64e2d6fdfe96cbfa049d4740909b4d25d7ce63db4bd7b3e74531918ffd
DEBUG:bitcoind:2017-11-29 17:05:36 keypool keep 2215
DEBUG:lnd(16331):2017-11-29 18:05:36.468 [INF] CRTR: Block 59473b64e2d6fdfe96cbfa049d4740909b4d25d7ce63db4bd7b3e74531918ffd (height=1761) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block fd8f913145e7b3d74bdb63ced7254d9b9040479d04facb96fefdd6e2643b4759
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block fd8f913145e7b3d74bdb63ced7254d9b9040479d04facb96fefdd6e2643b4759
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:37.480 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:37 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:37 keypool reserve 2216
DEBUG:bitcoind:2017-11-29 17:05:37 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:37 UpdateTip: new best=2e75f9295083790a9d16d03f9c463165ee76db0cc0ae9b7f412c5ebcb1e1715d height=1762 version=0x20000000 log2_work=11.783817 tx=1946 date='2017-11-29 17:05:37' progress=1.000000 cache=0.4MiB(1928txo)
DEBUG:bitcoind:2017-11-29 17:05:37 AddToWallet 7110166501433da94565f7420c3573b02eec5a40ab94f0ea116d17f8a42d9cd2 new
DEBUG:bitcoind:2017-11-29 17:05:37 keypool keep 2216
DEBUG:lnd(16331):2017-11-29 18:05:37.535 [INF] CRTR: Pruning channel graph using block 2e75f9295083790a9d16d03f9c463165ee76db0cc0ae9b7f412c5ebcb1e1715d (height=1762)
DEBUG:lnd(16331):2017-11-29 18:05:37.536 [INF] NTFN: New block: height=1762, sha=2e75f9295083790a9d16d03f9c463165ee76db0cc0ae9b7f412c5ebcb1e1715d
DEBUG:lnd(16331):2017-11-29 18:05:37.543 [INF] CRTR: Block 2e75f9295083790a9d16d03f9c463165ee76db0cc0ae9b7f412c5ebcb1e1715d (height=1762) closed 0 channels
DEBUG:proc:lightningd(1727): Adding block 5d71e1b1bc5e2c417f9baec00cdb76ee6531469c3fd0169d0a79835029f9752e
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Adding block 5d71e1b1bc5e2c417f9baec00cdb76ee6531469c3fd0169d0a79835029f9752e
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:38.549 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:38 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:38 keypool reserve 2217
DEBUG:bitcoind:2017-11-29 17:05:38 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:38 UpdateTip: new best=0b08f90053ded00292976258ffdbde84d8d67ce1f9f7e4ce63ce3a216e0087b7 height=1763 version=0x20000000 log2_work=11.784635 tx=1947 date='2017-11-29 17:05:38' progress=1.000000 cache=0.4MiB(1929txo)
DEBUG:proc:lightningd(1727): Ignoring chaintip 0b08f90053ded00292976258ffdbde84d8d67ce1f9f7e4ce63ce3a216e0087b7 status valid-headers
DEBUG:bitcoind:2017-11-29 17:05:38 AddToWallet 39f4372a68d056c3ce507cc14f70135c23817829ac8bc419471e7357e017a0cf new
DEBUG:bitcoind:2017-11-29 17:05:38 keypool keep 2217
DEBUG:lnd(16331):2017-11-29 18:05:38.685 [INF] CRTR: Pruning channel graph using block 0b08f90053ded00292976258ffdbde84d8d67ce1f9f7e4ce63ce3a216e0087b7 (height=1763)
DEBUG:lnd(16331):2017-11-29 18:05:38.686 [INF] NTFN: New block: height=1763, sha=0b08f90053ded00292976258ffdbde84d8d67ce1f9f7e4ce63ce3a216e0087b7
DEBUG:lnd(16331):2017-11-29 18:05:38.694 [INF] CRTR: Block 0b08f90053ded00292976258ffdbde84d8d67ce1f9f7e4ce63ce3a216e0087b7 (height=1763) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block b787006e213ace63cee4f7f9e17cd6d884dedbff5862979202d0de5300f9080b
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:39.601 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727): Adding block b787006e213ace63cee4f7f9e17cd6d884dedbff5862979202d0de5300f9080b
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:39 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:bitcoind:2017-11-29 17:05:39 keypool reserve 2218
DEBUG:bitcoind:2017-11-29 17:05:39 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:bitcoind:2017-11-29 17:05:39 UpdateTip: new best=21035a3f1335ae52888e10ffaa3d7544eafed7207e808fdee3becbae9680c26a height=1764 version=0x20000000 log2_work=11.785452 tx=1948 date='2017-11-29 17:05:39' progress=1.000000 cache=0.4MiB(1930txo)
DEBUG:bitcoind:2017-11-29 17:05:39 AddToWallet 620dfa8a05b447cd891b29bd6bf11ad9c34242a6f19730db012fd55635956114 new
DEBUG:bitcoind:2017-11-29 17:05:39 keypool keep 2218
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:lnd(16331):2017-11-29 18:05:39.738 [INF] CRTR: Pruning channel graph using block 21035a3f1335ae52888e10ffaa3d7544eafed7207e808fdee3becbae9680c26a (height=1764)
DEBUG:lnd(16331):2017-11-29 18:05:39.738 [INF] NTFN: New block: height=1764, sha=21035a3f1335ae52888e10ffaa3d7544eafed7207e808fdee3becbae9680c26a
DEBUG:lnd(16331):2017-11-29 18:05:39.752 [INF] CRTR: Block 21035a3f1335ae52888e10ffaa3d7544eafed7207e808fdee3becbae9680c26a (height=1764) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 6ac28096aecbbee3de8f807e20d7feea44753daaff108e8852ae35133f5a0321
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 6ac28096aecbbee3de8f807e20d7feea44753daaff108e8852ae35133f5a0321
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:40.653 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:40 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:40 keypool reserve 2219
DEBUG:bitcoind:2017-11-29 17:05:40 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:40 UpdateTip: new best=318292c70f441a6d40d83bfa1194cc6579c7973414e7def2f0c8831c265c78f5 height=1765 version=0x20000000 log2_work=11.78627 tx=1949 date='2017-11-29 17:05:40' progress=1.000000 cache=0.4MiB(1931txo)
DEBUG:bitcoind:2017-11-29 17:05:40 AddToWallet 876c9892a36982e1009400e16ef5ec11a78f15d8a679ff04c3a678413d44585b new
DEBUG:bitcoind:2017-11-29 17:05:40 keypool keep 2219
DEBUG:lnd(16331):2017-11-29 18:05:40.805 [INF] CRTR: Pruning channel graph using block 318292c70f441a6d40d83bfa1194cc6579c7973414e7def2f0c8831c265c78f5 (height=1765)
DEBUG:lnd(16331):2017-11-29 18:05:40.806 [INF] NTFN: New block: height=1765, sha=318292c70f441a6d40d83bfa1194cc6579c7973414e7def2f0c8831c265c78f5
DEBUG:lnd(16331):2017-11-29 18:05:40.819 [INF] CRTR: Block 318292c70f441a6d40d83bfa1194cc6579c7973414e7def2f0c8831c265c78f5 (height=1765) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block f5785c261c83c8f0f2dee7143497c77965cc9411fa3bd8406d1a440fc7928231
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block f5785c261c83c8f0f2dee7143497c77965cc9411fa3bd8406d1a440fc7928231
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:41.728 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:41 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:41 keypool reserve 2220
DEBUG:bitcoind:2017-11-29 17:05:41 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:41 UpdateTip: new best=0ff4f3bb2aaebf5a9437e0e38cc5ef179984f3b64f3f970bec500ab1ff19a476 height=1766 version=0x20000000 log2_work=11.787086 tx=1950 date='2017-11-29 17:05:41' progress=1.000000 cache=0.4MiB(1932txo)
DEBUG:bitcoind:2017-11-29 17:05:41 AddToWallet 709e8fa8574d31106f60a8ad23c6f4845409e96d6417cb6a5e967d5795587627 new
DEBUG:bitcoind:2017-11-29 17:05:41 keypool keep 2220
DEBUG:proc:2017-11-29 18:05:41.875 [INF] BMGR: Processed 10 blocks in the last 10.68s (10 transactions, height 1766, 2017-11-29 18:05:41 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:05:41.876 [INF] CRTR: Pruning channel graph using block 0ff4f3bb2aaebf5a9437e0e38cc5ef179984f3b64f3f970bec500ab1ff19a476 (height=1766)
DEBUG:lnd(16331):2017-11-29 18:05:41.877 [INF] NTFN: New block: height=1766, sha=0ff4f3bb2aaebf5a9437e0e38cc5ef179984f3b64f3f970bec500ab1ff19a476
DEBUG:lnd(16331):2017-11-29 18:05:41.893 [INF] CRTR: Block 0ff4f3bb2aaebf5a9437e0e38cc5ef179984f3b64f3f970bec500ab1ff19a476 (height=1766) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 76a419ffb10a50ec0b973f4fb6f3849917efc58ce3e037945abfae2abbf3f40f
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 76a419ffb10a50ec0b973f4fb6f3849917efc58ce3e037945abfae2abbf3f40f
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:42.799 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:42 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:42 keypool reserve 2221
DEBUG:bitcoind:2017-11-29 17:05:42 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:42 UpdateTip: new best=447649bbf6b1a3b43b049ce1a172b5c05ce4af11185a31b090363c1a232d66aa height=1767 version=0x20000000 log2_work=11.787903 tx=1951 date='2017-11-29 17:05:42' progress=1.000000 cache=0.4MiB(1933txo)
DEBUG:bitcoind:2017-11-29 17:05:42 AddToWallet be9dc9986853b0e8dc0ffd97f94021aa7296844ed326d8bbc1f28008e2c0931b new
DEBUG:bitcoind:2017-11-29 17:05:42 keypool keep 2221
DEBUG:lnd(16331):2017-11-29 18:05:42.937 [INF] CRTR: Pruning channel graph using block 447649bbf6b1a3b43b049ce1a172b5c05ce4af11185a31b090363c1a232d66aa (height=1767)
DEBUG:lnd(16331):2017-11-29 18:05:42.939 [INF] NTFN: New block: height=1767, sha=447649bbf6b1a3b43b049ce1a172b5c05ce4af11185a31b090363c1a232d66aa
DEBUG:lnd(16331):2017-11-29 18:05:42.950 [INF] CRTR: Block 447649bbf6b1a3b43b049ce1a172b5c05ce4af11185a31b090363c1a232d66aa (height=1767) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block aa662d231a3c3690b0315a1811afe45cc0b572a1e19c043bb4a3b1f6bb497644
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block aa662d231a3c3690b0315a1811afe45cc0b572a1e19c043bb4a3b1f6bb497644
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:43.851 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:43 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:43 keypool reserve 2222
DEBUG:bitcoind:2017-11-29 17:05:43 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:43 UpdateTip: new best=5fc1092d78e15de80ef81bb5a995f7302857ecfb350ecf0dc960a2e01e110655 height=1768 version=0x20000000 log2_work=11.788718 tx=1952 date='2017-11-29 17:05:43' progress=1.000000 cache=0.4MiB(1934txo)
DEBUG:bitcoind:2017-11-29 17:05:43 AddToWallet 0ae8b721e9b94138a110e9897682268618494fca88db9ca3daa2c9831b338fac new
DEBUG:bitcoind:2017-11-29 17:05:43 keypool keep 2222
DEBUG:lnd(16331):2017-11-29 18:05:43.980 [INF] CRTR: Pruning channel graph using block 5fc1092d78e15de80ef81bb5a995f7302857ecfb350ecf0dc960a2e01e110655 (height=1768)
DEBUG:lnd(16331):2017-11-29 18:05:43.981 [INF] NTFN: New block: height=1768, sha=5fc1092d78e15de80ef81bb5a995f7302857ecfb350ecf0dc960a2e01e110655
DEBUG:lnd(16331):2017-11-29 18:05:43.992 [INF] CRTR: Block 5fc1092d78e15de80ef81bb5a995f7302857ecfb350ecf0dc960a2e01e110655 (height=1768) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 5506111ee0a260c90dcf0e35fbec572830f795a9b51bf80ee85de1782d09c15f
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 5506111ee0a260c90dcf0e35fbec572830f795a9b51bf80ee85de1782d09c15f
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:44.902 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:44 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:44 keypool reserve 2223
DEBUG:bitcoind:2017-11-29 17:05:44 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:44 UpdateTip: new best=165790154348cbaf02ce1ee6e468fddde07373b066df0a8d61124fe5a0e27362 height=1769 version=0x20000000 log2_work=11.789534 tx=1953 date='2017-11-29 17:05:44' progress=1.000000 cache=0.4MiB(1935txo)
DEBUG:bitcoind:2017-11-29 17:05:44 AddToWallet 591aa3378c7c63b3105cd073dd81a1412834506a7442f6046904ad7f27a5819a new
DEBUG:bitcoind:2017-11-29 17:05:44 keypool keep 2223
DEBUG:lnd(16331):2017-11-29 18:05:45.045 [INF] NTFN: New block: height=1769, sha=165790154348cbaf02ce1ee6e468fddde07373b066df0a8d61124fe5a0e27362
DEBUG:lnd(16331):2017-11-29 18:05:45.045 [INF] CRTR: Pruning channel graph using block 165790154348cbaf02ce1ee6e468fddde07373b066df0a8d61124fe5a0e27362 (height=1769)
DEBUG:lnd(16331):2017-11-29 18:05:45.068 [INF] CRTR: Block 165790154348cbaf02ce1ee6e468fddde07373b066df0a8d61124fe5a0e27362 (height=1769) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 6273e2a0e54f12618d0adf66b07373e0ddfd68e4e61ece02afcb484315905716
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 6273e2a0e54f12618d0adf66b07373e0ddfd68e4e61ece02afcb484315905716
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:45.955 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:45 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:46 keypool reserve 2224
DEBUG:bitcoind:2017-11-29 17:05:46 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:46 UpdateTip: new best=19641d6dc2b97fb69a7e8e8f46edde8253832a6d898c02e16e96d605e2941f03 height=1770 version=0x20000000 log2_work=11.790348 tx=1954 date='2017-11-29 17:05:45' progress=1.000000 cache=0.4MiB(1936txo)
DEBUG:bitcoind:2017-11-29 17:05:46 AddToWallet cceee54c4517ddf708806c31a745012d4200c85ae617dbd36da1c33375a2989f new
DEBUG:bitcoind:2017-11-29 17:05:46 keypool keep 2224
DEBUG:lnd(16331):2017-11-29 18:05:46.116 [INF] CRTR: Pruning channel graph using block 19641d6dc2b97fb69a7e8e8f46edde8253832a6d898c02e16e96d605e2941f03 (height=1770)
DEBUG:lnd(16331):2017-11-29 18:05:46.116 [INF] NTFN: New block: height=1770, sha=19641d6dc2b97fb69a7e8e8f46edde8253832a6d898c02e16e96d605e2941f03
DEBUG:lnd(16331):2017-11-29 18:05:46.126 [INF] CRTR: Block 19641d6dc2b97fb69a7e8e8f46edde8253832a6d898c02e16e96d605e2941f03 (height=1770) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 031f94e205d6966ee1028c896d2a835382deed468f8e7e9ab67fb9c26d1d6419
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 031f94e205d6966ee1028c896d2a835382deed468f8e7e9ab67fb9c26d1d6419
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:47.029 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:47 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:47 keypool reserve 2225
DEBUG:bitcoind:2017-11-29 17:05:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:47 UpdateTip: new best=35484a261c81818fa5b73502ed630f50c736c8d29d741589dcd011c22943a1bb height=1771 version=0x20000000 log2_work=11.791163 tx=1955 date='2017-11-29 17:05:47' progress=1.000000 cache=0.4MiB(1937txo)
DEBUG:bitcoind:2017-11-29 17:05:47 AddToWallet 10cf42530bd2c8ac8cb9d9d567487e0570aeb633b0df94c647cffeab55952a21 new
DEBUG:bitcoind:2017-11-29 17:05:47 keypool keep 2225
DEBUG:lnd(16331):2017-11-29 18:05:47.179 [INF] CRTR: Pruning channel graph using block 35484a261c81818fa5b73502ed630f50c736c8d29d741589dcd011c22943a1bb (height=1771)
DEBUG:lnd(16331):2017-11-29 18:05:47.180 [INF] NTFN: New block: height=1771, sha=35484a261c81818fa5b73502ed630f50c736c8d29d741589dcd011c22943a1bb
DEBUG:lnd(16331):2017-11-29 18:05:47.190 [INF] CRTR: Block 35484a261c81818fa5b73502ed630f50c736c8d29d741589dcd011c22943a1bb (height=1771) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block bba14329c211d0dc8915749dd2c836c7500f63ed0235b7a58f81811c264a4835
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block bba14329c211d0dc8915749dd2c836c7500f63ed0235b7a58f81811c264a4835
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:48.100 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:bitcoind:2017-11-29 17:05:48 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:48 keypool reserve 2226
DEBUG:bitcoind:2017-11-29 17:05:48 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:48 UpdateTip: new best=452d10ce49da2a570119bbc28fbedef68bb4bb48f5e9bc94c50ed4264881ed48 height=1772 version=0x20000000 log2_work=11.791977 tx=1956 date='2017-11-29 17:05:48' progress=1.000000 cache=0.4MiB(1938txo)
DEBUG:bitcoind:2017-11-29 17:05:48 AddToWallet 4ff1761875664f62953c32ead3380a9748fe3aac261dc85645ef52e68599343b new
DEBUG:bitcoind:2017-11-29 17:05:48 keypool keep 2226
DEBUG:lnd(16331):2017-11-29 18:05:48.247 [INF] CRTR: Pruning channel graph using block 452d10ce49da2a570119bbc28fbedef68bb4bb48f5e9bc94c50ed4264881ed48 (height=1772)
DEBUG:lnd(16331):2017-11-29 18:05:48.247 [INF] NTFN: New block: height=1772, sha=452d10ce49da2a570119bbc28fbedef68bb4bb48f5e9bc94c50ed4264881ed48
DEBUG:lnd(16331):2017-11-29 18:05:48.257 [INF] CRTR: Block 452d10ce49da2a570119bbc28fbedef68bb4bb48f5e9bc94c50ed4264881ed48 (height=1772) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 48ed814826d40ec594bce9f548bbb48bf6debe8fc2bb1901572ada49ce102d45
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 48ed814826d40ec594bce9f548bbb48bf6debe8fc2bb1901572ada49ce102d45
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:49.162 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:49 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:49 keypool reserve 2227
DEBUG:bitcoind:2017-11-29 17:05:49 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:49 UpdateTip: new best=31b296822074f31250d492056d1981df5649b6b60c77900a27bb58294aa9b182 height=1773 version=0x20000000 log2_work=11.79279 tx=1957 date='2017-11-29 17:05:49' progress=1.000000 cache=0.4MiB(1939txo)
DEBUG:bitcoind:2017-11-29 17:05:49 AddToWallet 02d564224bc76ac65fd483b8b696461a4e1ddf31b1e6cebb50d12ee2f270694d new
DEBUG:bitcoind:2017-11-29 17:05:49 keypool keep 2227
DEBUG:lnd(16331):2017-11-29 18:05:49.310 [INF] CRTR: Pruning channel graph using block 31b296822074f31250d492056d1981df5649b6b60c77900a27bb58294aa9b182 (height=1773)
DEBUG:lnd(16331):2017-11-29 18:05:49.311 [INF] NTFN: New block: height=1773, sha=31b296822074f31250d492056d1981df5649b6b60c77900a27bb58294aa9b182
DEBUG:lnd(16331):2017-11-29 18:05:49.318 [INF] CRTR: Block 31b296822074f31250d492056d1981df5649b6b60c77900a27bb58294aa9b182 (height=1773) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 82b1a94a2958bb270a90770cb6b64956df81196d0592d45012f374208296b231
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 82b1a94a2958bb270a90770cb6b64956df81196d0592d45012f374208296b231
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:50.240 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:50 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:50 keypool reserve 2228
DEBUG:bitcoind:2017-11-29 17:05:50 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:50 UpdateTip: new best=1f274e8a17ab2c1b290fd4fab4c32f8cedef76928e8dfc59675c46e49ab18a52 height=1774 version=0x20000000 log2_work=11.793603 tx=1958 date='2017-11-29 17:05:50' progress=1.000000 cache=0.4MiB(1940txo)
DEBUG:bitcoind:2017-11-29 17:05:50 AddToWallet d3bdcf304d81ca0121996bda8dafc1c34e8d8820bb1a5757c8896a5a79965905 new
DEBUG:bitcoind:2017-11-29 17:05:50 keypool keep 2228
DEBUG:proc:lightningd(1540): Adding block 528ab19ae4465c6759fc8d8e9276efed8c2fc3b4fad40f291b2cab178a4e271f
DEBUG:lnd(16331):2017-11-29 18:05:50.388 [INF] CRTR: Pruning channel graph using block 1f274e8a17ab2c1b290fd4fab4c32f8cedef76928e8dfc59675c46e49ab18a52 (height=1774)
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:lnd(16331):2017-11-29 18:05:50.394 [INF] NTFN: New block: height=1774, sha=1f274e8a17ab2c1b290fd4fab4c32f8cedef76928e8dfc59675c46e49ab18a52
DEBUG:lnd(16331):2017-11-29 18:05:50.399 [INF] CRTR: Block 1f274e8a17ab2c1b290fd4fab4c32f8cedef76928e8dfc59675c46e49ab18a52 (height=1774) closed 0 channels
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 528ab19ae4465c6759fc8d8e9276efed8c2fc3b4fad40f291b2cab178a4e271f
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:51.301 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1727):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:05:51 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:05:51 keypool reserve 2229
DEBUG:bitcoind:2017-11-29 17:05:51 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:05:51 UpdateTip: new best=2d047dade9c5093e4cf4dd31c971d45277e6cdc8871bc865cff0c5ed3874b434 height=1775 version=0x20000000 log2_work=11.794416 tx=1959 date='2017-11-29 17:05:51' progress=1.000000 cache=0.4MiB(1941txo)
DEBUG:bitcoind:2017-11-29 17:05:51 AddToWallet a8b64873dcb56917a9f043b38050314bdbf63603836dccd20af64df10ed99559 new
DEBUG:bitcoind:2017-11-29 17:05:51 keypool keep 2229
DEBUG:lnd(16331):2017-11-29 18:05:51.351 [INF] CRTR: Pruning channel graph using block 2d047dade9c5093e4cf4dd31c971d45277e6cdc8871bc865cff0c5ed3874b434 (height=1775)
DEBUG:lnd(16331):2017-11-29 18:05:51.352 [INF] NTFN: New block: height=1775, sha=2d047dade9c5093e4cf4dd31c971d45277e6cdc8871bc865cff0c5ed3874b434
DEBUG:lnd(16331):2017-11-29 18:05:51.361 [INF] CRTR: Block 2d047dade9c5093e4cf4dd31c971d45277e6cdc8871bc865cff0c5ed3874b434 (height=1775) closed 0 channels
DEBUG:proc:lightningd(1540): Adding block 34b47438edc5f0cf65c81b87c8cde67752d471c931ddf44c3e09c5e9ad7d042d
DEBUG:proc:lightningd(1540): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1540): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1540): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1540): Slow feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Adding block 34b47438edc5f0cf65c81b87c8cde67752d471c931ddf44c3e09c5e9ad7d042d
DEBUG:proc:lightningd(1727): Unable to estimate CONSERVATIVE/2 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/4 fee
DEBUG:proc:lightningd(1727): Unable to estimate ECONOMICAL/100 fee
DEBUG:proc:lightningd(1727): Immediate feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Normal feerate 0 (was 0)
DEBUG:proc:lightningd(1727): Slow feerate 0 (was 0)
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75e71e320>, <lightningd.LightningNode object at 0x7fb742f7c908>), (<lightningd.LightningNode object at 0x7fb742f7c908>, <lightningd.LightningNode object at 0x7fb75ca6bcc0>)]
DEBUG:lnd(16331):2017-11-29 18:05:52.368 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d not found
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303 state: GOSSIPING
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1540): Connected json input
DEBUG:proc:lightning_gossipd(1724): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightning_gossipd(1724): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:lightning-node(16332):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'channel': '1745:1:0', 'peerid': '02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045', 'owner': 'lightning_channeld', 'msatoshi_to_us': 10000000000, 'state': 'CHANNELD_NORMAL'}, {'peerid': '02868b45d7bf09f1606816350447c2145c948d90aa22f85b5d0171119cc5b50303', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:32942'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:proc:lightningd(1540):jcon fd 14: Success
DEBUG:lightning-node(16332):Channel 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d -> 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 state: CHANNELD_NORMAL
DEBUG:proc:lightningd(1540):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16333):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(1727): Connected json input
DEBUG:proc:lightning_gossipd(1843): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(1843): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(1727):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16333):Call returned {'peers': [{'msatoshi_total': 10000000000, 'netaddr': ['::ffff:127.0.0.1:42422'], 'connected': True, 'channel': '1745:1:0', 'peerid': '0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d', 'owner': 'lightning_channeld', 'msatoshi_to_us': 0, 'state': 'CHANNELD_NORMAL'}]}
DEBUG:lightning-node(16333):Channel 02eec50673cfc8940527ba6d949225365a830ad2f737295d2e77b17aa1a0397045 -> 0324452ff684338649eec3b37ec4f74b838702918c243a7b39dcbdcaa9c06a8c5d state: CHANNELD_NORMAL
--------------------------- Captured stdout teardown ---------------------------
DEBUG:proc:2017-11-29 18:05:52.431 [ERR] RPCS: Websocket receive error from 127.0.0.1:42608: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:05:52.431 [ERR] RPCS: Websocket receive error from 127.0.0.1:42602: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:05:52.431 [INF] RPCS: Disconnected websocket client 127.0.0.1:42608
DEBUG:proc:2017-11-29 18:05:52.431 [ERR] RPCS: Websocket receive error from 127.0.0.1:42600: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:05:52.431 [INF] RPCS: Disconnected websocket client 127.0.0.1:42602
DEBUG:proc:2017-11-29 18:05:52.431 [ERR] RPCS: Websocket receive error from 127.0.0.1:42606: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:05:52.431 [INF] RPCS: Disconnected websocket client 127.0.0.1:42600
DEBUG:proc:2017-11-29 18:05:52.431 [INF] RPCS: Disconnected websocket client 127.0.0.1:42606
INFO:root:LightningD stopped
INFO:root:LightningD stopped
--------------------------- Captured stderr teardown ---------------------------
lightning_channeld: Writing out status 32768 len 27: Broken pipe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment