Skip to content

Instantly share code, notes, and snippets.

Created November 29, 2017 21:49
Show Gist options
  • Save anonymous/d272ae1f6659b40b21f9657dda218847 to your computer and use it in GitHub Desktop.
Save anonymous/d272ae1f6659b40b21f9657dda218847 to your computer and use it in GitHub Desktop.
__________________________ test_reconnect[lnd_eclair] __________________________
bitcoind = <utils.BitcoinD object at 0x7fb768e47198>
node_factory = <test.NodeFactory object at 0x7fb730c77978>
impls = (<class 'lnd.LndNode'>, <class 'eclair.EclairNode'>)
 @pytest.mark.parametrize("impls", product(impls, repeat=2), ids=idfn)
 def test_reconnect(bitcoind, node_factory, impls):
 node1 = node_factory.get_node(implementation=impls[0])
 node2 = node_factory.get_node(implementation=impls[1])
 capacity = 10**7
 
 node1.connect('localhost', node2.daemon.port, node2.id())
 
 wait_for(lambda: node1.peers(), interval=1)
 wait_for(lambda: node2.peers(), interval=1)
 
 node1.addfunds(bitcoind, 2*capacity)
 time.sleep(5)
 bitcoind.rpc.generate(10)
 time.sleep(5)
 
 node1.openchannel(node2.id(), 'localhost', node2.daemon.port, capacity)
 
 for i in range(30):
 node1.bitcoin.rpc.generate(1)
 time.sleep(1)
 
> wait_for(lambda: node1.check_channel(node2))
test.py:353:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
success = <function test_reconnect.<locals>.<lambda> at 0x7fb75e6fe048>
timeout = 30, interval = 1
 def wait_for(success, timeout=30, interval=1):
 start_time = time.time()
 while not success() and time.time() < start_time + timeout:
 time.sleep(interval)
 if time.time() > start_time + timeout:
> raise ValueError("Error waiting for {}", success)
E ValueError: ('Error waiting for {}', <function test_reconnect.<locals>.<lambda> at 0x7fb75e6fe048>)
test.py:111: ValueError
----------------------------- Captured stdout call -----------------------------
DEBUG:root:Starting 'bin/lnd --peerport=16331 --rpcport=26331 --bitcoin.active --datadir=/tmp/lightning-il5fkavy/test_reconnect[lnd_eclair]/node-1/ --debuglevel=trace --bitcoin.rpcuser=rpcuser --bitcoin.rpcpass=rpcpass --configfile=/tmp/lightning-il5fkavy/test_reconnect[lnd_eclair]/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:22:46.974 [INF] LTND: Version 0.3.0-alpha
DEBUG:lnd(16331):2017-11-29 18:22:47.010 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
DEBUG:lnd(16331):2017-11-29 18:22:47.026 [INF] LTND: Primary chain is set to: bitcoin
DEBUG:lnd(16331):2017-11-29 18:22:47.026 [INF] LTND: Initializing btcd backed fee estimator
DEBUG:proc:2017-11-29 18:22:47.063 [INF] RPCS: New websocket client 127.0.0.1:51984
DEBUG:lnd(16331):2017-11-29 18:22:50.104 [INF] LNWL: Opened wallet
DEBUG:proc:2017-11-29 18:22:50.150 [INF] RPCS: New websocket client 127.0.0.1:51986
DEBUG:lnd(16331):2017-11-29 18:22:50.960 [INF] LNWL: The wallet has been unlocked without a time limit
DEBUG:lnd(16331):2017-11-29 18:22:50.961 [INF] LNWL: Catching up block hashes to height 2251, this will take a while...
DEBUG:lnd(16331):2017-11-29 18:22:50.976 [INF] LTND: LightningWallet opened
DEBUG:lnd(16331):2017-11-29 18:22:50.995 [TRC] FNDG: Funding manager running
DEBUG:lnd(16331):2017-11-29 18:22:50.995 [INF] RPCS: RPC server listening on 127.0.0.1:26331
DEBUG:lnd(16331):2017-11-29 18:22:50.995 [INF] RPCS: gRPC proxy started at localhost:8080
DEBUG:lnd(16331):2017-11-29 18:22:50.995 [INF] LTND: Waiting for chain backend to finish sync, start_height=2251
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:22:51.245 [INF] LNWL: Done catching up block hashes
DEBUG:root:Found 'Done catching up block hashes' in logs
DEBUG:lnd(16331):2017-11-29 18:22:51.253 [INF] LNWL: Started rescan from block 7ce372a0918978f900b0719530014b9a67ebd3ba1df74c98ba0c24210a8bd670 (height 2251) for 1 address
DEBUG:proc:2017-11-29 18:22:51.253 [INF] RPCS: Beginning rescan for 1 address
DEBUG:proc:2017-11-29 18:22:51.254 [INF] RPCS: Finished rescan
DEBUG:lnd(16331):2017-11-29 18:22:51.254 [INF] LNWL: Catching up block hashes to height 2251, this might take a while
DEBUG:lnd(16331):2017-11-29 18:22:51.261 [INF] LNWL: Done catching up block hashes
DEBUG:lnd(16331):2017-11-29 18:22:51.261 [INF] LNWL: Finished rescan for 1 address (synced to block 7ce372a0918978f900b0719530014b9a67ebd3ba1df74c98ba0c24210a8bd670, height 2251)
DEBUG:lnd(16331):2017-11-29 18:22:51.999 [INF] LTND: Chain backend is fully synced (end_height=2251)!
DEBUG:proc:2017-11-29 18:22:52.103 [INF] RPCS: New websocket client 127.0.0.1:51992
DEBUG:lnd(16331):2017-11-29 18:22:52.104 [INF] HSWC: Starting HTLC Switch
DEBUG:lnd(16331):2017-11-29 18:22:52.104 [TRC] UTXN: Starting UTXO nursery
DEBUG:lnd(16331):2017-11-29 18:22:52.104 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:22:52.104 [TRC] BRAR: Starting breach arbiter
DEBUG:lnd(16331):2017-11-29 18:22:52.105 [INF] DISC: Authenticated Gossiper is starting
DEBUG:lnd(16331):2017-11-29 18:22:52.105 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:22:52.105 [TRC] CRTR: Channel Router starting
DEBUG:lnd(16331):2017-11-29 18:22:52.105 [INF] CRTR: FilteredChainView starting
DEBUG:lnd(16331):2017-11-29 18:22:52.105 [ERR] DISC: unable to rebroadcast stale channels: error while retrieving outgoing channels: no graph edges exist
DEBUG:proc:2017-11-29 18:22:52.172 [INF] RPCS: New websocket client 127.0.0.1:51994
DEBUG:lnd(16331):2017-11-29 18:22:52.193 [INF] CRTR: Filtering chain using 0 channels active
DEBUG:lnd(16331):2017-11-29 18:22:52.194 [INF] CRTR: Prune tip for Channel Graph: height=2251, hash=7ce372a0918978f900b0719530014b9a67ebd3ba1df74c98ba0c24210a8bd670
DEBUG:lnd(16331):2017-11-29 18:22:52.194 [INF] SRVR: Auto peer bootstrapping is disabled
DEBUG:lnd(16331):2017-11-29 18:22:52.194 [TRC] CMGR: Connection manager started
DEBUG:lnd(16331):2017-11-29 18:22:52.194 [INF] CMGR: Server listening on [::]:16331
INFO:root:LND started (pid: 13400)
DEBUG:root:Starting '/usr/lib/jvm/java-8-openjdk-amd64/bin/java -Declair.datadir=/tmp/lightning-il5fkavy/test_reconnect[lnd_eclair]/node-2/ -Declair.printToConsole=true -jar bin/eclair.jar'
DEBUG:root:Waiting for 'connected to tcp://127.0.0.1:29000' in the logs
DEBUG:eclair(16332):18:22:58,094 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml]
DEBUG:eclair(16332):18:22:58,094 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy]
DEBUG:eclair(16332):18:22:58,094 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [jar:file:/home/cdecker/.capsule/apps/eclair-node-0.2-SNAPSHOT-2d5d68b/eclair-node_2.11-0.2-SNAPSHOT.jar!/logback.xml]
DEBUG:eclair(16332):18:22:58,109 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@66729f81 - URL [jar:file:/home/cdecker/.capsule/apps/eclair-node-0.2-SNAPSHOT-2d5d68b/eclair-node_2.11-0.2-SNAPSHOT.jar!/logback.xml] is not of type file
DEBUG:eclair(16332):18:22:58,153 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16332):18:22:58,155 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16332):18:22:58,162 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16332):18:22:58,185 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.FileAppender]
DEBUG:eclair(16332):18:22:58,186 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [FILE]
DEBUG:eclair(16332):18:22:58,187 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16332):18:22:58,188 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/tmp/lightning-il5fkavy/test_reconnect[lnd_eclair]/node-2//eclair.log]
DEBUG:eclair(16332):18:22:58,195 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel] to DEBUG
DEBUG:eclair(16332):18:22:58,195 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel.Register] to DEBUG
DEBUG:eclair(16332):18:22:58,195 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.router] to INFO
DEBUG:eclair(16332):18:22:58,436 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16332):18:22:58,437 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16332):18:22:58,437 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16332):18:22:58,438 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [CONSOLE] to Logger[ROOT]
DEBUG:eclair(16332):18:22:58,438 |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to INFO
DEBUG:eclair(16332):18:22:58,438 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [FILE] to Logger[ROOT]
DEBUG:eclair(16332):18:22:58,438 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration.
DEBUG:eclair(16332):18:22:58,439 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@662e52d - Registering current configuration as safe fallback point
DEBUG:eclair(16332):2017-11-29 18:22:58,440 INFO akka.event.slf4j.Slf4jLogger - Slf4jLogger started
DEBUG:eclair(16332):2017-11-29 18:22:58,451 INFO fr.acinq.eclair.Setup - hello!
DEBUG:eclair(16332):2017-11-29 18:22:58,452 INFO fr.acinq.eclair.Setup - version=0.2-SNAPSHOT commit=2d5d68bf3f57363075d04e23447b9c19924d9f8a
DEBUG:eclair(16332):2017-11-29 18:22:58,483 INFO org.bitcoin.Secp256k1Context - couldn't find secp256k1 library, defaulting to spongycastle
DEBUG:eclair(16332):2017-11-29 18:22:59,173 INFO fr.acinq.eclair.Setup - nodeid=032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 alias=eclair
DEBUG:eclair(16332):2017-11-29 18:22:59,174 INFO fr.acinq.eclair.Setup - using chain=regtest chainHash=06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f
DEBUG:eclair(16332):2017-11-29 18:22:59,174 INFO fr.acinq.eclair.Setup - initializing secure random generator
DEBUG:eclair(16332):2017-11-29 18:23:00,698 INFO fr.acinq.eclair.Setup - initial feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:bitcoind:2017-11-29 17:23:00 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:eclair(16332):2017-11-29 18:23:00,732 INFO fr.acinq.eclair.Setup - current feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:bitcoind:2017-11-29 17:23:00 keypool reserve 2677
DEBUG:bitcoind:2017-11-29 17:23:00 keypool keep 2677
DEBUG:eclair(16332):2017-11-29 18:23:00,752 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - loading network announcements from db...
DEBUG:eclair(16332):2017-11-29 18:23:00,754 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - starting state machine
DEBUG:eclair(16332):2017-11-29 18:23:00,763 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - current status channels=0 nodes=0 updates=0
DEBUG:eclair(16332):2017-11-29 18:23:00,771 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - bound on /0:0:0:0:0:0:0:0:16332
DEBUG:eclair(16332):2017-11-29 18:23:00,814 INFO fr.acinq.eclair.Setup - initial wallet address=2Mz9vAPshtKXhjEq63KqjSLjXSjDdKwRKNK
DEBUG:eclair(16332):2017-11-29 18:23:01,807 INFO f.a.e.b.bitcoind.zmq.ZMQActor akka://default/user/$a/zmq - connected to tcp://127.0.0.1:29000
DEBUG:root:Found 'connected to tcp://127.0.0.1:29000' in logs
DEBUG:root:Waiting for 'initial wallet address=([a-zA-Z0-9]+)' in the logs
DEBUG:root:Found 'initial wallet address=([a-zA-Z0-9]+)' in logs
INFO:eclair(16332):Eclair started (pid: 13727)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): localhost
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2251, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:23:01.909 [DBG] SRVR: Connecting to 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:01.910 [DBG] RPCS: Connected to peer: 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:01.910 [DBG] CMGR: Attempting to connect to 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3@127.0.0.1:16332 (reqid 1)
DEBUG:root:
DEBUG:lnd(16331):2017-11-29 18:23:01.911 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:23:01.911 [DBG] RPCS: [listpeers] yielded [] peers
DEBUG:eclair(16332):2017-11-29 18:23:01,912 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - connected to /127.0.0.1:41860
DEBUG:lnd(16331):2017-11-29 18:23:01.959 [DBG] CMGR: Connected to 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3@127.0.0.1:16332 (reqid 1)
DEBUG:lnd(16331):2017-11-29 18:23:01.959 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:01.959 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16331):2017-11-29 18:23:01.959 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:01.959 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc420144490)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc420146060)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
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:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:eclair(16332):2017-11-29 18:23:01,967 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - handshake completed with 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82
DEBUG:eclair(16332):2017-11-29 18:23:01,977 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - registering as a listener to Actor[akka://default/user/$i/server/$a#-1586530347]
DEBUG:eclair(16332):2017-11-29 18:23:01,990 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 has features: initialRoutingSync=true
DEBUG:lnd(16331):2017-11-29 18:23:02.000 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:02.000 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc4201a01d0)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4206de028)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4206de030)({
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:23:02.000 [DBG] PEER: Loaded 0 active channels from database with peerID(1)
DEBUG:lnd(16331):2017-11-29 18:23:02.000 [INF] DISC: Syncing channel graph state with 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 18:23:02.000 [INF] SRVR: Attempting to send msgs 1 to: 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3
DEBUG:lnd(16331):2017-11-29 18:23:02.000 [DBG] PEER: Sending NodeAnnouncement(node=039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82, update_time=2017-11-29 18:22:50 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:02.001 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4306fc300)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4201a0440)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420148e20)(83636012208800502328928693597086088547730199594977284992863665661114649043213),
DEBUG:lnd(16331): S: (*big.Int)(0xc420148e40)(53555661177174549398172591067455618571349158630815215624466220456039272738924)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4206de038)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511976170,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc420148d00)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420148d20)(66214313770521763144935804872904385756686276040260504879453166814403883219586),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420148d40)(28438332602991221144195995259455465658692224551895656396543070390042063807775)
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) 039263f93702fc3f26a5,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:23:02.001 [TRC] PEER: Update stream for gossiper created
DEBUG:eclair(16332):2017-11-29 18:23:02,018 WARN fr.acinq.eclair.router.Router akka://default/user/$f/router - ignoring NodeAnnouncement(3045022100b8e84e2d09dbd9d12991ef3b84f95244e20df656d020408430594320418e610d022076676e166cd1a3cf334493594337f63b158a624f333142effb86f95d2e78f06c01,,1511976170,039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82,(0,0,0),039263f93702fc3f26a5,List()) (no related channel found)
DEBUG:lnd(16331):2017-11-29 18:23:02.913 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:23:02.913 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
INFO:root:Calling peers with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 114
DEBUG:root:Method peers returned {'result': ['039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82'], 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:23:02.935 [INF] RPCS: [newaddress] addr=2N9Riqacm3BnvKDGLJRVeq6nHcBo7KBnuUo
{"method": "sendtoaddress", "params": ["2N9Riqacm3BnvKDGLJRVeq6nHcBo7KBnuUo", 0.2], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:02 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:02 keypool reserve 1115
DEBUG:bitcoind:2017-11-29 17:23:03 Fee Calculation: Fee:6760 Bytes:338 Needed:6760 Tgt:6 (requested 6) Reason:"Fallback fee" Decay 0.96200: Estimation: (-1 - -1) -nan% 0.0/(0.0 0 mem 0.0 out) Fail: (0 - 1e+99) 100.00% 0.7/(0.7 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 17:23:03 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=547cfb6425, ver=2, vin.size=2, vout.size=2, nLockTime=2251)
DEBUG:bitcoind: CTxIn(COutPoint(a08a33829d, 0), scriptSig=47304402201e10ad4485d1e2, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(70ae3509df, 1), scriptSig=47304402201a6188febc50dc, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=0.01022316, scriptPubKey=76a91496695d29b298908356f25a40)
DEBUG:bitcoind: CTxOut(nValue=0.20000000, scriptPubKey=a914b17e413f75f2868f373a61a71a)
DEBUG:bitcoind:2017-11-29 17:23:03 keypool keep 1115
DEBUG:bitcoind:2017-11-29 17:23:03 AddToWallet 547cfb64252a819058d6f7e5a77121b498b5537eb09f8034fa1099fbc3b5f862 new
DEBUG:bitcoind:2017-11-29 17:23:03 AddToWallet 547cfb64252a819058d6f7e5a77121b498b5537eb09f8034fa1099fbc3b5f862
DEBUG:bitcoind:2017-11-29 17:23:03 Relaying wtx 547cfb64252a819058d6f7e5a77121b498b5537eb09f8034fa1099fbc3b5f862
DEBUG:root:Waiting for 'Inserting unconfirmed transaction' in the logs
DEBUG:lnd(16331):2017-11-29 18:23:09.402 [INF] LNWL: Inserting unconfirmed transaction 547cfb64252a819058d6f7e5a77121b498b5537eb09f8034fa1099fbc3b5f862
DEBUG:lnd(16331):2017-11-29 18:23:09.403 [DBG] LNWL: Marked address 2N9Riqacm3BnvKDGLJRVeq6nHcBo7KBnuUo used
DEBUG:root:Found 'Inserting unconfirmed transaction' in logs
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:09 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:09 keypool reserve 2678
DEBUG:bitcoind:2017-11-29 17:23:09 CreateNewBlock(): total size: 599 block weight: 2288 txs: 1 fees: 6760 sigops 404
DEBUG:bitcoind:2017-11-29 17:23:09 UpdateTip: new best=65fd385f34de019c795a64b7c85c8ab4a8424e2dfe1893cc7c248a2fd12e7ed5 height=2252 version=0x20000000 log2_work=12.137632 tx=2462 date='2017-11-29 17:23:09' progress=1.000000 cache=0.5MiB(2452txo)
DEBUG:bitcoind:2017-11-29 17:23:09 AddToWallet be40ee386a0e19e0778c1a70e28e766edf1859dfb253c938fc3eb05fc861bc8a new
DEBUG:bitcoind:2017-11-29 17:23:09 AddToWallet 547cfb64252a819058d6f7e5a77121b498b5537eb09f8034fa1099fbc3b5f862 update
DEBUG:bitcoind:2017-11-29 17:23:09 keypool keep 2678
DEBUG:root:Waiting for 'Marking unconfirmed transaction' in the logs
DEBUG:proc:2017-11-29 18:23:09.550 [INF] BMGR: Processed 8 blocks in the last 49.07s (9 transactions, height 2252, 2017-11-29 18:23:09 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:23:09.552 [INF] LNWL: Marking unconfirmed transaction 547cfb64252a819058d6f7e5a77121b498b5537eb09f8034fa1099fbc3b5f862 mined in block 2252
DEBUG:lnd(16331):2017-11-29 18:23:09.553 [INF] CRTR: Pruning channel graph using block 65fd385f34de019c795a64b7c85c8ab4a8424e2dfe1893cc7c248a2fd12e7ed5 (height=2252)
DEBUG:root:Found 'Marking unconfirmed transaction' in logs
DEBUG:lnd(16331):2017-11-29 18:23:09.554 [DBG] LNWL: Marked address 2N9Riqacm3BnvKDGLJRVeq6nHcBo7KBnuUo used
DEBUG:lnd(16331):2017-11-29 18:23:09.555 [INF] NTFN: New block: height=2252, sha=65fd385f34de019c795a64b7c85c8ab4a8424e2dfe1893cc7c248a2fd12e7ed5
DEBUG:lnd(16331):2017-11-29 18:23:09.572 [INF] CRTR: Block 65fd385f34de019c795a64b7c85c8ab4a8424e2dfe1893cc7c248a2fd12e7ed5 (height=2252) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:10.559 [DBG] RPCS: [walletbalance] balance=0.2 BTC
{"method": "generate", "params": [10], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:15 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:15 keypool reserve 2679
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=7a6288fbb16513526c0cff9411b6393c3a8f00368200de85f491d6c5746e988d height=2253 version=0x20000000 log2_work=12.138272 tx=2463 date='2017-11-29 17:23:15' progress=1.000000 cache=0.5MiB(2453txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet 0fe3dd83f5105e156797e65d1814981fa3010169728967ffc972312a665380c3 new
DEBUG:bitcoind:2017-11-29 17:23:15 keypool keep 2679
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=7496cde9ee790b5e51e0e9e8e9cf51080516455d5265566703674408d495cefd height=2254 version=0x20000000 log2_work=12.138912 tx=2464 date='2017-11-29 17:23:15' progress=1.000000 cache=0.5MiB(2454txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet 56ef2a15042fec2d43817e3a3b1e70444e484badd38483d93840e2abcd489c3e new
DEBUG:proc:2017-11-29 18:23:15.637 [INF] CHAN: Adding orphan block 7496cde9ee790b5e51e0e9e8e9cf51080516455d5265566703674408d495cefd with parent 7a6288fbb16513526c0cff9411b6393c3a8f00368200de85f491d6c5746e988d
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=5a42df2a06f8ebe9066e34e2c1350beb5ea217873b23b1ed0739d22fa6a2c310 height=2255 version=0x20000000 log2_work=12.139551 tx=2465 date='2017-11-29 17:23:15' progress=1.000000 cache=0.5MiB(2455txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet 09824d13fdb4671e4774689c5be1bf55c89209537c3670078078cb78a3c104ef new
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=3a645bfd938f83dcb44f762c3f6eaa7a3ecf95b7b2ac5a15869f9d17e5c06d10 height=2256 version=0x20000000 log2_work=12.140191 tx=2466 date='2017-11-29 17:23:15' progress=1.000000 cache=0.5MiB(2456txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet b8423c436207029065be9c98c0e9981c53828c8d58273b95ec46ec7124bdaf7f new
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=2d0409b82a9c60b6f02595f4e8c6073c9681959125428d28f77f3db5700e1463 height=2257 version=0x20000000 log2_work=12.14083 tx=2467 date='2017-11-29 17:23:15' progress=1.000000 cache=0.5MiB(2457txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet 172a99faead5ee3c8638b50fedae1c75c39ad50bd1e7f3fc719aad3870d5dd5f new
DEBUG:proc:2017-11-29 18:23:15.660 [INF] CHAN: Adding orphan block 2d0409b82a9c60b6f02595f4e8c6073c9681959125428d28f77f3db5700e1463 with parent 3a645bfd938f83dcb44f762c3f6eaa7a3ecf95b7b2ac5a15869f9d17e5c06d10
DEBUG:lnd(16331):2017-11-29 18:23:15.662 [INF] CRTR: Pruning channel graph using block 7a6288fbb16513526c0cff9411b6393c3a8f00368200de85f491d6c5746e988d (height=2253)
DEBUG:lnd(16331):2017-11-29 18:23:15.663 [INF] NTFN: New block: height=2253, sha=7a6288fbb16513526c0cff9411b6393c3a8f00368200de85f491d6c5746e988d
DEBUG:lnd(16331):2017-11-29 18:23:15.664 [INF] NTFN: New block: height=2254, sha=7496cde9ee790b5e51e0e9e8e9cf51080516455d5265566703674408d495cefd
DEBUG:lnd(16331):2017-11-29 18:23:15.665 [INF] NTFN: New block: height=2255, sha=5a42df2a06f8ebe9066e34e2c1350beb5ea217873b23b1ed0739d22fa6a2c310
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:lnd(16331):2017-11-29 18:23:15.674 [INF] CRTR: Block 7a6288fbb16513526c0cff9411b6393c3a8f00368200de85f491d6c5746e988d (height=2253) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.674 [INF] CRTR: Pruning channel graph using block 7496cde9ee790b5e51e0e9e8e9cf51080516455d5265566703674408d495cefd (height=2254)
DEBUG:lnd(16331):2017-11-29 18:23:15.675 [INF] NTFN: New block: height=2256, sha=3a645bfd938f83dcb44f762c3f6eaa7a3ecf95b7b2ac5a15869f9d17e5c06d10
DEBUG:lnd(16331):2017-11-29 18:23:15.675 [INF] NTFN: New block: height=2257, sha=2d0409b82a9c60b6f02595f4e8c6073c9681959125428d28f77f3db5700e1463
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=7a69ae9719ee0427b63416df6e44992a5e285fb1ad2e1478cfa020248f0e0f96 height=2258 version=0x20000000 log2_work=12.141469 tx=2468 date='2017-11-29 17:23:15' progress=1.000000 cache=0.5MiB(2458txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet 1f7749d88a772f66e38d44b4a170b703360a0b1e25a3dacfe1becdc4148ebbab new
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=3ab697b22eb1087c471bf69cab1afac1bb975c2450ad5fc5a46604b67b2d7e9e height=2259 version=0x20000000 log2_work=12.142107 tx=2469 date='2017-11-29 17:23:16' progress=1.000000 cache=0.5MiB(2459txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet d248ba4216aa2299e248f8ec94868c5fa5407f87f9af0b15b7c3caae9d2e2637 new
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=0dcf33dfce5546fc747ecd29099b223724711015daf7dd108848617666bdc7f4 height=2260 version=0x20000000 log2_work=12.142745 tx=2470 date='2017-11-29 17:23:16' progress=1.000000 cache=0.5MiB(2460txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet 9fc0a1d80623fd2b9c6fd252c8ada0dd333fe1b92d392bbdf80b027777911162 new
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=42737edf609ebbc0af13290fe72a0ff7e390a97650e055481cb6de90b85fc366 height=2261 version=0x20000000 log2_work=12.143383 tx=2471 date='2017-11-29 17:23:16' progress=1.000000 cache=0.5MiB(2461txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet dd511f4d9212776d999a57e965407251de0c88d487e32aac0fd9023b0cc461ab new
DEBUG:bitcoind:2017-11-29 17:23:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:15 UpdateTip: new best=0c25c01617496df6c5328434ef03cd2dce026f450e16e2b0d73182f0c2ada43b height=2262 version=0x20000000 log2_work=12.144021 tx=2472 date='2017-11-29 17:23:16' progress=1.000000 cache=0.5MiB(2462txo)
DEBUG:bitcoind:2017-11-29 17:23:15 AddToWallet 8873d38d795545ccd9bd873dd84069d9ac89bc8b3e56a3e00d722571caaefc3f new
DEBUG:lnd(16331):2017-11-29 18:23:15.757 [INF] CRTR: Block 7496cde9ee790b5e51e0e9e8e9cf51080516455d5265566703674408d495cefd (height=2254) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.757 [INF] CRTR: Pruning channel graph using block 5a42df2a06f8ebe9066e34e2c1350beb5ea217873b23b1ed0739d22fa6a2c310 (height=2255)
DEBUG:lnd(16331):2017-11-29 18:23:15.763 [INF] CRTR: Block 5a42df2a06f8ebe9066e34e2c1350beb5ea217873b23b1ed0739d22fa6a2c310 (height=2255) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.763 [INF] CRTR: Pruning channel graph using block 3a645bfd938f83dcb44f762c3f6eaa7a3ecf95b7b2ac5a15869f9d17e5c06d10 (height=2256)
DEBUG:lnd(16331):2017-11-29 18:23:15.769 [INF] CRTR: Block 3a645bfd938f83dcb44f762c3f6eaa7a3ecf95b7b2ac5a15869f9d17e5c06d10 (height=2256) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.769 [INF] CRTR: Pruning channel graph using block 2d0409b82a9c60b6f02595f4e8c6073c9681959125428d28f77f3db5700e1463 (height=2257)
DEBUG:lnd(16331):2017-11-29 18:23:15.776 [INF] CRTR: Block 2d0409b82a9c60b6f02595f4e8c6073c9681959125428d28f77f3db5700e1463 (height=2257) closed 0 channels
DEBUG:proc:2017-11-29 18:23:15.806 [INF] CHAN: Adding orphan block 0c25c01617496df6c5328434ef03cd2dce026f450e16e2b0d73182f0c2ada43b with parent 42737edf609ebbc0af13290fe72a0ff7e390a97650e055481cb6de90b85fc366
DEBUG:lnd(16331):2017-11-29 18:23:15.810 [INF] CRTR: Pruning channel graph using block 7a69ae9719ee0427b63416df6e44992a5e285fb1ad2e1478cfa020248f0e0f96 (height=2258)
DEBUG:lnd(16331):2017-11-29 18:23:15.810 [INF] NTFN: New block: height=2258, sha=7a69ae9719ee0427b63416df6e44992a5e285fb1ad2e1478cfa020248f0e0f96
DEBUG:lnd(16331):2017-11-29 18:23:15.811 [INF] NTFN: New block: height=2259, sha=3ab697b22eb1087c471bf69cab1afac1bb975c2450ad5fc5a46604b67b2d7e9e
DEBUG:lnd(16331):2017-11-29 18:23:15.811 [INF] NTFN: New block: height=2260, sha=0dcf33dfce5546fc747ecd29099b223724711015daf7dd108848617666bdc7f4
DEBUG:lnd(16331):2017-11-29 18:23:15.811 [INF] NTFN: New block: height=2261, sha=42737edf609ebbc0af13290fe72a0ff7e390a97650e055481cb6de90b85fc366
DEBUG:lnd(16331):2017-11-29 18:23:15.813 [INF] NTFN: New block: height=2262, sha=0c25c01617496df6c5328434ef03cd2dce026f450e16e2b0d73182f0c2ada43b
DEBUG:lnd(16331):2017-11-29 18:23:15.821 [INF] CRTR: Block 7a69ae9719ee0427b63416df6e44992a5e285fb1ad2e1478cfa020248f0e0f96 (height=2258) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.821 [INF] CRTR: Pruning channel graph using block 3ab697b22eb1087c471bf69cab1afac1bb975c2450ad5fc5a46604b67b2d7e9e (height=2259)
DEBUG:lnd(16331):2017-11-29 18:23:15.828 [INF] CRTR: Block 3ab697b22eb1087c471bf69cab1afac1bb975c2450ad5fc5a46604b67b2d7e9e (height=2259) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.828 [INF] CRTR: Pruning channel graph using block 0dcf33dfce5546fc747ecd29099b223724711015daf7dd108848617666bdc7f4 (height=2260)
DEBUG:lnd(16331):2017-11-29 18:23:15.837 [INF] CRTR: Block 0dcf33dfce5546fc747ecd29099b223724711015daf7dd108848617666bdc7f4 (height=2260) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.837 [INF] CRTR: Pruning channel graph using block 42737edf609ebbc0af13290fe72a0ff7e390a97650e055481cb6de90b85fc366 (height=2261)
DEBUG:lnd(16331):2017-11-29 18:23:15.844 [INF] CRTR: Block 42737edf609ebbc0af13290fe72a0ff7e390a97650e055481cb6de90b85fc366 (height=2261) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:23:15.844 [INF] CRTR: Pruning channel graph using block 0c25c01617496df6c5328434ef03cd2dce026f450e16e2b0d73182f0c2ada43b (height=2262)
DEBUG:lnd(16331):2017-11-29 18:23:15.853 [INF] CRTR: Block 0c25c01617496df6c5328434ef03cd2dce026f450e16e2b0d73182f0c2ada43b (height=2262) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2262, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:23:20.730 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:23:20.730 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lnd(16331):2017-11-29 18:23:20.731 [TRC] RPCS: [openchannel] request to peerid(1) allocation(us=10000000, them=0)
DEBUG:lnd(16331):2017-11-29 18:23:20.732 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:23:20.732 [DBG] RPCS: [openchannel]: using fee of 25 sat/byte for funding tx
DEBUG:lnd(16331):2017-11-29 18:23:20.732 [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:23:20.732 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:23:20.732 [INF] LNWL: Performing funding tx coin selection using 6 sat/weight as fee rate
DEBUG:lnd(16331):2017-11-29 18:23:20.782 [INF] FNDG: Target commit tx sat/kw for pendingID(ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942): 6000
DEBUG:lnd(16331):2017-11-29 18:23:20.782 [INF] FNDG: Starting funding workflow with 127.0.0.1:16332 for pendingID(ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942)
DEBUG:lnd(16331):2017-11-29 18:23:20.782 [INF] SRVR: Attempting to send msgs 1 to: 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3
DEBUG:lnd(16331):2017-11-29 18:23:20.782 [DBG] PEER: Sending MsgOpenChannel(temp_chan_id=ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942, 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:23:20.782 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.OpenChannel)(0xc420248420)({
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 ec f6 81 5a 34 27 da 22 e9 27 59 ff fd 5a 0a 15 |...Z4'.".'Y..Z..|
DEBUG:lnd(16331): 00000010 71 1b 7f e2 bc 2e 08 d5 08 ad 82 e0 09 90 d9 42 |q..............B|
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)(0xc4206fbdd0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc42049ba60)(9893607747162960508123591345973219262021447234222574942998953135371083341988),
DEBUG:lnd(16331): Y: (*big.Int)(0xc42049bac0)(87305070027716617455109634707693320769343249091990988082545385375211314748508)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RevocationPoint: (*btcec.PublicKey)(0xc4201430e0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420148e20)(51485300051268598789653361319361096285102161467692491730525400755933129510387),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420148e40)(79079031438065162884789201019337655991749885123686086727203846739586106167979)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): PaymentPoint: (*btcec.PublicKey)(0xc420143e30)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc42027e4e0)(102173771947083764290095692588175342765731262726499278002256897697431375735300),
DEBUG:lnd(16331): Y: (*big.Int)(0xc42027e500)(37242605513355789028689694745407181598794011092212476374847708197207732911608)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4201c46f0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc42027f1a0)(63726525505380278007161903173767625647700852880719256011028393799285116807174),
DEBUG:lnd(16331): Y: (*big.Int)(0xc42027f220)(60568382847090617911879711959538095787027627517509606632200865692505909714537)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): HtlcPoint: (*btcec.PublicKey)(0xc420143770)({
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)(0xc4201497a0)(27819046598547619727755539890075243822173543018727715043975142262832486446075),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201497c0)(45012685946407799508051715101987604142823576906342978621573109932962523861128)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): FirstCommitmentPoint: (*btcec.PublicKey)(0xc4204fee60)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4204fedc0)(64880446368174881809834923864900335066083251203120809698439949683449381246598),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4204fede0)(63129060619538919985078369499437588423703831189607516072244008806505389866728)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelFlags: (lnwire.FundingFlag) 1
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:eclair(16332):2017-11-29 18:23:22,464 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - accepting a new channel to 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82
DEBUG:bitcoind:2017-11-29 17:23:22 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:22 keypool reserve 2680
DEBUG:bitcoind:2017-11-29 17:23:22 keypool keep 2680
DEBUG:eclair(16332):2017-11-29 18:23:22,636 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a - setting repeating timer 'TickRefreshChannelUpdate'/1 day: TickRefreshChannelUpdate
DEBUG:eclair(16332):2017-11-29 18:23:22,655 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a 0000000000000000000000000000000000000000000000000000000000000000 - processing Event(INPUT_INIT_FUNDEE(ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942,LocalParams(032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3,542,100000000000,100000,1000000,144,30,50316547dafa7a64a9219a92268060494fe4520519c8d9fc726530d5c546176801,2deed9d653e56a3a885d0d170a732c83aff0da495ee8eb230d661eda0d03baa4,3e1c1558a9c51a5b034e53a8392ae0ae401154729df3fd3fdc9776112505580d,c7edceb0547e57633250faf2b1f8b204dbd336455058f1d8b6253d52b99564d4,07e90c20cc8c7a3c7680e098a056062a18de7bc72f144c5a9b78a4c4c40c277e,a9149adde62997077de111bd0da3057bdb1cdc00ec8787,01665498ee10ab17681542de0c552528ba44aa0b6aa67b1800b28e9b4977390c,false,,08),Actor[akka://default/user/$i/server/$a#-1586530347],Init(,08)),Nothing) from Actor[akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82#1516414639] in state WAIT_FOR_INIT_INTERNAL
DEBUG:eclair(16332):2017-11-29 18:23:22,656 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a 0000000000000000000000000000000000000000000000000000000000000000 - transition WAIT_FOR_INIT_INTERNAL -> WAIT_FOR_OPEN_CHANNEL
DEBUG:eclair(16332):2017-11-29 18:23:22,658 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942 - processing Event(OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942,10000000,0,573,9900000000,100000,0,6000,4,483,0215df95631528ed7dd83aa5c26c637734d48db4149134b43a8739c58e5ee060a4,0371d3a5ac339767448a6a210819237eafd5c2d3aede4cd4af2988baf4a3248df3,02e1e44e3973588fb7b34628151f0d3c38f385f653cb29df245aea5cc4702e6a04,038ce3ef6baa3a66783f2ace063086832b9e3777219ea9e88cfcabfdf87e00a806,023d8105bb7ef5267c558b158428024b5a456c4e9fb8cfb213346557e7c8d473fb,028f7108034823cf72130bb5388ad31474050166499cfd16e4eed26de31f2bd686,1),DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942,LocalParams(032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3,542,100000000000,100000,1000000,144,30,50316547dafa7a64a9219a92268060494fe4520519c8d9fc726530d5c546176801,2deed9d653e56a3a885d0d170a732c83aff0da495ee8eb230d661eda0d03baa4,3e1c1558a9c51a5b034e53a8392ae0ae401154729df3fd3fdc9776112505580d,c7edceb0547e57633250faf2b1f8b204dbd336455058f1d8b6253d52b99564d4,07e90c20cc8c7a3c7680e098a056062a18de7bc72f144c5a9b78a4c4c40c277e,a9149adde62997077de111bd0da3057bdb1cdc00ec8787,01665498ee10ab17681542de0c552528ba44aa0b6aa67b1800b28e9b4977390c,false,,08),Actor[akka://default/user/$i/server/$a#-1586530347],Init(,08)))) from Actor[akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82#1516414639] in state WAIT_FOR_OPEN_CHANNEL
DEBUG:eclair(16332):2017-11-29 18:23:22,658 WARN fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942 - local/remote feerates are too different: remoteFeeratePerKw=6000 localFeeratePerKw=53760
DEBUG:eclair(16332):2017-11-29 18:23:22,659 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942 - transition WAIT_FOR_OPEN_CHANNEL -> CLOSED
DEBUG:lnd(16331):2017-11-29 18:23:22.661 [DBG] PEER: Received Error(chan_id=ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942, err=[108 111 99 97 108 47 114 101 109 111 116 101 32 102 101 101 114 97 116 101 115 32 97 114 101 32 116 111 111 32 100 105 102 102 101 114 101 110 116 58 32 114 101 109 111 116 101 70 101 101 114 97 116 101 80 101 114 75 119 61 54 48 48 48 32 108 111 99 97 108 70 101 101 114 97 116 101 80 101 114 75 119 61 53 51 55 54 48]) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:22.661 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Error)(0xc420670000)({
DEBUG:lnd(16331): ChanID: (lnwire.ChannelID) (len=32 cap=32) ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942,
DEBUG:lnd(16331): Data: (lnwire.ErrorData) (len=88 cap=88) {
DEBUG:lnd(16331): 00000000 6c 6f 63 61 6c 2f 72 65 6d 6f 74 65 20 66 65 65 |local/remote fee|
DEBUG:lnd(16331): 00000010 72 61 74 65 73 20 61 72 65 20 74 6f 6f 20 64 69 |rates are too di|
DEBUG:lnd(16331): 00000020 66 66 65 72 65 6e 74 3a 20 72 65 6d 6f 74 65 46 |fferent: remoteF|
DEBUG:lnd(16331): 00000030 65 65 72 61 74 65 50 65 72 4b 77 3d 36 30 30 30 |eeratePerKw=6000|
DEBUG:lnd(16331): 00000040 20 6c 6f 63 61 6c 46 65 65 72 61 74 65 50 65 72 | localFeeratePer|
DEBUG:lnd(16331): 00000050 4b 77 3d 35 33 37 36 30 |Kw=53760|
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:23:22.661 [ERR] FNDG: Received funding error from 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3: unknown error
DEBUG:lnd(16331):2017-11-29 18:23:22.661 [INF] FNDG: Cancelling funding reservation for node_key=032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3, chan_id=ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942
DEBUG:lnd(16331):2017-11-29 18:23:22.661 [ERR] RPCS: unable to open channel to identityPub() nor peerID(1): rpc error: code = Code(208) desc = unknown error
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:25 keypool reserve 2681
DEBUG:bitcoind:2017-11-29 17:23:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:25 UpdateTip: new best=53aefde95b60d1645e5140fa1e2a23f95ea18e2e42e0a6322476b72bee78edc0 height=2263 version=0x20000000 log2_work=12.144658 tx=2473 date='2017-11-29 17:23:25' progress=1.000000 cache=0.5MiB(2463txo)
DEBUG:bitcoind:2017-11-29 17:23:25 AddToWallet 14862e82a2c058aaacf28b8e2c109f1eb93ec0cfb8bbf847de89af75c6a54796 new
DEBUG:proc:2017-11-29 18:23:25.761 [INF] BMGR: Processed 8 blocks in the last 16.21s (8 transactions, height 2263, 2017-11-29 18:23:25 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:23:25.761 [INF] CRTR: Pruning channel graph using block 53aefde95b60d1645e5140fa1e2a23f95ea18e2e42e0a6322476b72bee78edc0 (height=2263)
DEBUG:lnd(16331):2017-11-29 18:23:25.762 [INF] NTFN: New block: height=2263, sha=53aefde95b60d1645e5140fa1e2a23f95ea18e2e42e0a6322476b72bee78edc0
DEBUG:bitcoind:2017-11-29 17:23:25 keypool keep 2681
DEBUG:lnd(16331):2017-11-29 18:23:25.767 [INF] CRTR: Block 53aefde95b60d1645e5140fa1e2a23f95ea18e2e42e0a6322476b72bee78edc0 (height=2263) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:26 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:26 keypool reserve 2682
DEBUG:bitcoind:2017-11-29 17:23:26 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:26 UpdateTip: new best=7ea6eca255b4089557fec7cf4a0ecb82332f04b433c3a76869e93ed73918be6c height=2264 version=0x20000000 log2_work=12.145295 tx=2474 date='2017-11-29 17:23:26' progress=1.000000 cache=0.5MiB(2464txo)
DEBUG:bitcoind:2017-11-29 17:23:26 AddToWallet db8075a26341485223f07f275f99c5134c0b242df2b88b8462937b371fe3499d new
DEBUG:bitcoind:2017-11-29 17:23:26 keypool keep 2682
DEBUG:lnd(16331):2017-11-29 18:23:26.909 [INF] CRTR: Pruning channel graph using block 7ea6eca255b4089557fec7cf4a0ecb82332f04b433c3a76869e93ed73918be6c (height=2264)
DEBUG:lnd(16331):2017-11-29 18:23:26.911 [INF] NTFN: New block: height=2264, sha=7ea6eca255b4089557fec7cf4a0ecb82332f04b433c3a76869e93ed73918be6c
DEBUG:lnd(16331):2017-11-29 18:23:26.920 [INF] CRTR: Block 7ea6eca255b4089557fec7cf4a0ecb82332f04b433c3a76869e93ed73918be6c (height=2264) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:27 keypool reserve 2683
DEBUG:bitcoind:2017-11-29 17:23:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:27 UpdateTip: new best=52646e4b7ad9c47e8d0b008d7c1bbd714eb416d015886f1eb25be964a613550a height=2265 version=0x20000000 log2_work=12.145932 tx=2475 date='2017-11-29 17:23:27' progress=1.000000 cache=0.5MiB(2465txo)
DEBUG:bitcoind:2017-11-29 17:23:27 AddToWallet e8aa73ec78d817edf05a38744d87f6730f78d10b3626c3d66c65421e104d7880 new
DEBUG:bitcoind:2017-11-29 17:23:27 keypool keep 2683
DEBUG:lnd(16331):2017-11-29 18:23:27.838 [INF] CRTR: Pruning channel graph using block 52646e4b7ad9c47e8d0b008d7c1bbd714eb416d015886f1eb25be964a613550a (height=2265)
DEBUG:lnd(16331):2017-11-29 18:23:27.838 [INF] NTFN: New block: height=2265, sha=52646e4b7ad9c47e8d0b008d7c1bbd714eb416d015886f1eb25be964a613550a
DEBUG:lnd(16331):2017-11-29 18:23:27.852 [INF] CRTR: Block 52646e4b7ad9c47e8d0b008d7c1bbd714eb416d015886f1eb25be964a613550a (height=2265) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:28 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:28 keypool reserve 2684
DEBUG:bitcoind:2017-11-29 17:23:28 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:28 UpdateTip: new best=527952c88e749c749bfbf14eadce1c6cdd9aed6ab171b13a44e0070c5b76838c height=2266 version=0x20000000 log2_work=12.146569 tx=2476 date='2017-11-29 17:23:28' progress=1.000000 cache=0.5MiB(2466txo)
DEBUG:bitcoind:2017-11-29 17:23:28 AddToWallet ee5cd2787c67ab69a224cf60909e83f8a837635db79c9401a146692db16b245a new
DEBUG:bitcoind:2017-11-29 17:23:28 keypool keep 2684
DEBUG:lnd(16331):2017-11-29 18:23:29.006 [INF] CRTR: Pruning channel graph using block 527952c88e749c749bfbf14eadce1c6cdd9aed6ab171b13a44e0070c5b76838c (height=2266)
DEBUG:lnd(16331):2017-11-29 18:23:29.007 [INF] NTFN: New block: height=2266, sha=527952c88e749c749bfbf14eadce1c6cdd9aed6ab171b13a44e0070c5b76838c
DEBUG:lnd(16331):2017-11-29 18:23:29.013 [INF] CRTR: Block 527952c88e749c749bfbf14eadce1c6cdd9aed6ab171b13a44e0070c5b76838c (height=2266) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:29 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:29 keypool reserve 2685
DEBUG:bitcoind:2017-11-29 17:23:29 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:29 UpdateTip: new best=37b5824cfa31c25e8d423a809a025310a50dbe109281378dde1a3bbc8e387225 height=2267 version=0x20000000 log2_work=12.147205 tx=2477 date='2017-11-29 17:23:29' progress=1.000000 cache=0.5MiB(2467txo)
DEBUG:bitcoind:2017-11-29 17:23:29 AddToWallet 06e8cdb6d4f01e2de94b1acc81acf78781892b724853641c4973d9d289afd72b new
DEBUG:bitcoind:2017-11-29 17:23:29 keypool keep 2685
DEBUG:lnd(16331):2017-11-29 18:23:29.959 [INF] NTFN: New block: height=2267, sha=37b5824cfa31c25e8d423a809a025310a50dbe109281378dde1a3bbc8e387225
DEBUG:lnd(16331):2017-11-29 18:23:29.962 [INF] CRTR: Pruning channel graph using block 37b5824cfa31c25e8d423a809a025310a50dbe109281378dde1a3bbc8e387225 (height=2267)
DEBUG:lnd(16331):2017-11-29 18:23:29.983 [INF] CRTR: Block 37b5824cfa31c25e8d423a809a025310a50dbe109281378dde1a3bbc8e387225 (height=2267) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:30 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:31 keypool reserve 2686
DEBUG:bitcoind:2017-11-29 17:23:31 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:31 UpdateTip: new best=7d4494d1a2e0b758f783a93b3c4fae1faa6d2a5836aedb71a39983a42b85e3cb height=2268 version=0x20000000 log2_work=12.147841 tx=2478 date='2017-11-29 17:23:31' progress=1.000000 cache=0.5MiB(2468txo)
DEBUG:bitcoind:2017-11-29 17:23:31 AddToWallet 8fbb1b717f66a15f3c35648b7c524bcfbee854a6bf22fc2f32822b9f5e714812 new
DEBUG:bitcoind:2017-11-29 17:23:31 keypool keep 2686
DEBUG:lnd(16331):2017-11-29 18:23:31.122 [INF] CRTR: Pruning channel graph using block 7d4494d1a2e0b758f783a93b3c4fae1faa6d2a5836aedb71a39983a42b85e3cb (height=2268)
DEBUG:lnd(16331):2017-11-29 18:23:31.123 [INF] NTFN: New block: height=2268, sha=7d4494d1a2e0b758f783a93b3c4fae1faa6d2a5836aedb71a39983a42b85e3cb
DEBUG:lnd(16331):2017-11-29 18:23:31.130 [INF] CRTR: Block 7d4494d1a2e0b758f783a93b3c4fae1faa6d2a5836aedb71a39983a42b85e3cb (height=2268) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:32 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:32 keypool reserve 2687
DEBUG:bitcoind:2017-11-29 17:23:32 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:32 UpdateTip: new best=7d8cd7c434aeb3f8ffc73d82a6bedfc868842b5bdf65437951a039efb940b00f height=2269 version=0x20000000 log2_work=12.148477 tx=2479 date='2017-11-29 17:23:32' progress=1.000000 cache=0.5MiB(2469txo)
DEBUG:bitcoind:2017-11-29 17:23:32 AddToWallet 3c7bce4aec83b8e9e04b78de1c7d67648dd3bb76dad6fd442cd0237adace22c0 new
DEBUG:bitcoind:2017-11-29 17:23:32 keypool keep 2687
DEBUG:lnd(16331):2017-11-29 18:23:32.176 [INF] CRTR: Pruning channel graph using block 7d8cd7c434aeb3f8ffc73d82a6bedfc868842b5bdf65437951a039efb940b00f (height=2269)
DEBUG:lnd(16331):2017-11-29 18:23:32.177 [INF] NTFN: New block: height=2269, sha=7d8cd7c434aeb3f8ffc73d82a6bedfc868842b5bdf65437951a039efb940b00f
DEBUG:lnd(16331):2017-11-29 18:23:32.187 [INF] CRTR: Block 7d8cd7c434aeb3f8ffc73d82a6bedfc868842b5bdf65437951a039efb940b00f (height=2269) closed 0 channels
DEBUG:eclair(16332):2017-11-29 18:23:32,679 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942 - processing Event('shutdown,DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942,LocalParams(032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3,542,100000000000,100000,1000000,144,30,50316547dafa7a64a9219a92268060494fe4520519c8d9fc726530d5c546176801,2deed9d653e56a3a885d0d170a732c83aff0da495ee8eb230d661eda0d03baa4,3e1c1558a9c51a5b034e53a8392ae0ae401154729df3fd3fdc9776112505580d,c7edceb0547e57633250faf2b1f8b204dbd336455058f1d8b6253d52b99564d4,07e90c20cc8c7a3c7680e098a056062a18de7bc72f144c5a9b78a4c4c40c277e,a9149adde62997077de111bd0da3057bdb1cdc00ec8787,01665498ee10ab17681542de0c552528ba44aa0b6aa67b1800b28e9b4977390c,false,,08),Actor[akka://default/user/$i/server/$a#-1586530347],Init(,08)))) from Actor[akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a#-1541930467] in state CLOSED
DEBUG:eclair(16332):2017-11-29 18:23:32,681 INFO fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82/$a ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942 - shutting down
DEBUG:eclair(16332):2017-11-29 18:23:32,688 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - channel closed: channelId=TemporaryChannelId(ecf6815a3427da22e92759fffd5a0a15711b7fe2bc2e08d508ad82e00990d942)
DEBUG:eclair(16332):2017-11-29 18:23:32,689 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - that was the last open channel, closing the connection
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [INF] PEER: unable to read message from 127.0.0.1:16332: EOF
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [TRC] PEER: Disconnecting 127.0.0.1:16332, reason: read handler closed
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [TRC] PEER: writeHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [DBG] SRVR: Peer 127.0.0.1:16332 has been disconnected
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [DBG] FNDG: Cancelling all reservations for peer 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [ERR] SRVR: unable to get channel links: unable to locate channel link bydestination hop id 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [DBG] SRVR: removing peer 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [DBG] SRVR: Attempting to re-establish persistent connection to peer 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:32.689 [DBG] CMGR: Attempting to connect to 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3@127.0.0.1:16332 (reqid 2)
DEBUG:lnd(16331):2017-11-29 18:23:32.690 [TRC] PEER: readHandler for peer 127.0.0.1:16332 done
DEBUG:lnd(16331):2017-11-29 18:23:32.690 [TRC] PEER: Update stream for gossiper exited
DEBUG:lnd(16331):2017-11-29 18:23:32.690 [DBG] CMGR: Disconnected from 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3@127.0.0.1:16332 (reqid 1)
DEBUG:eclair(16332):2017-11-29 18:23:32,690 WARN fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - lost connection to 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82
DEBUG:eclair(16332):2017-11-29 18:23:32,693 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - connected to /127.0.0.1:41912
DEBUG:lnd(16331):2017-11-29 18:23:32.701 [DBG] CMGR: Connected to 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3@127.0.0.1:16332 (reqid 2)
DEBUG:lnd(16331):2017-11-29 18:23:32.701 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:32.701 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16331):2017-11-29 18:23:32.701 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:32.701 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc420276390)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc420146060)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42050a118)({
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:eclair(16332):2017-11-29 18:23:32,704 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - handshake completed with 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82
DEBUG:lnd(16331):2017-11-29 18:23:32.706 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:32.706 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc42025ed60)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4201461a8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:eclair(16332):2017-11-29 18:23:32,707 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - registering as a listener to Actor[akka://default/user/$i/server/$b#353821875]
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201461b0)({
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:23:32.707 [DBG] PEER: Loaded 0 active channels from database with peerID(2)
DEBUG:lnd(16331):2017-11-29 18:23:32.707 [INF] DISC: Syncing channel graph state with 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 18:23:32.707 [INF] SRVR: Attempting to send msgs 1 to: 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3
DEBUG:lnd(16331):2017-11-29 18:23:32.707 [DBG] PEER: Sending NodeAnnouncement(node=039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82, update_time=2017-11-29 18:22:50 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:23:32.707 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc42014c1e0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc42025efd0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420149ee0)(83636012208800502328928693597086088547730199594977284992863665661114649043213),
DEBUG:lnd(16331): S: (*big.Int)(0xc420149f20)(53555661177174549398172591067455618571349158630815215624466220456039272738924)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4201461b8)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511976170,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc420149d80)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420149da0)(66214313770521763144935804872904385756686276040260504879453166814403883219586),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420149dc0)(28438332602991221144195995259455465658692224551895656396543070390042063807775)
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) 039263f93702fc3f26a5,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:23:32.707 [TRC] PEER: Update stream for gossiper created
DEBUG:eclair(16332):2017-11-29 18:23:32,707 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 has features: initialRoutingSync=true
DEBUG:eclair(16332):2017-11-29 18:23:32,712 WARN fr.acinq.eclair.router.Router akka://default/user/$f/router - ignoring NodeAnnouncement(3045022100b8e84e2d09dbd9d12991ef3b84f95244e20df656d020408430594320418e610d022076676e166cd1a3cf334493594337f63b158a624f333142effb86f95d2e78f06c01,,1511976170,039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82,(0,0,0),039263f93702fc3f26a5,List()) (no related channel found)
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:33 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:33 keypool reserve 2688
DEBUG:bitcoind:2017-11-29 17:23:33 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:33 UpdateTip: new best=069af3c7d7934bddfad86d56ba96aed8ff0e2827b6fbead08059a3949de74371 height=2270 version=0x20000000 log2_work=12.149112 tx=2480 date='2017-11-29 17:23:33' progress=1.000000 cache=0.5MiB(2470txo)
DEBUG:bitcoind:2017-11-29 17:23:33 AddToWallet ff3d049604f1363c12e7896e66bc3f7f12ac804f5cf1cd8584bb8967d1181b97 new
DEBUG:bitcoind:2017-11-29 17:23:33 keypool keep 2688
DEBUG:lnd(16331):2017-11-29 18:23:33.224 [INF] CRTR: Pruning channel graph using block 069af3c7d7934bddfad86d56ba96aed8ff0e2827b6fbead08059a3949de74371 (height=2270)
DEBUG:lnd(16331):2017-11-29 18:23:33.225 [INF] NTFN: New block: height=2270, sha=069af3c7d7934bddfad86d56ba96aed8ff0e2827b6fbead08059a3949de74371
DEBUG:lnd(16331):2017-11-29 18:23:33.239 [INF] CRTR: Block 069af3c7d7934bddfad86d56ba96aed8ff0e2827b6fbead08059a3949de74371 (height=2270) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:34 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:34 keypool reserve 2689
DEBUG:bitcoind:2017-11-29 17:23:34 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:34 UpdateTip: new best=0e23cc06eee7778e424d02ae06bb2efa4b12a2a17b61b2ce1f2402cadf3cfcc6 height=2271 version=0x20000000 log2_work=12.149747 tx=2481 date='2017-11-29 17:23:34' progress=1.000000 cache=0.5MiB(2471txo)
DEBUG:bitcoind:2017-11-29 17:23:34 AddToWallet 53d7148b6c33663e44aef0157dfdd4800ed2e0f845ab4cbb06e0e702f1bdaef0 new
DEBUG:bitcoind:2017-11-29 17:23:34 keypool keep 2689
DEBUG:lnd(16331):2017-11-29 18:23:34.293 [INF] CRTR: Pruning channel graph using block 0e23cc06eee7778e424d02ae06bb2efa4b12a2a17b61b2ce1f2402cadf3cfcc6 (height=2271)
DEBUG:lnd(16331):2017-11-29 18:23:34.293 [INF] NTFN: New block: height=2271, sha=0e23cc06eee7778e424d02ae06bb2efa4b12a2a17b61b2ce1f2402cadf3cfcc6
DEBUG:lnd(16331):2017-11-29 18:23:34.307 [INF] CRTR: Block 0e23cc06eee7778e424d02ae06bb2efa4b12a2a17b61b2ce1f2402cadf3cfcc6 (height=2271) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:35 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:35 keypool reserve 2690
DEBUG:bitcoind:2017-11-29 17:23:35 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:35 UpdateTip: new best=6ef54391ea778679ab6b52f8909bf62403d3243ad5cddd41aa6292ec9b78f6cf height=2272 version=0x20000000 log2_work=12.150382 tx=2482 date='2017-11-29 17:23:35' progress=1.000000 cache=0.5MiB(2472txo)
DEBUG:bitcoind:2017-11-29 17:23:35 AddToWallet be062ccd828bbc363e4878549252134718976587631c13d6dfb23407ec3f964d new
DEBUG:bitcoind:2017-11-29 17:23:35 keypool keep 2690
DEBUG:lnd(16331):2017-11-29 18:23:35.356 [INF] CRTR: Pruning channel graph using block 6ef54391ea778679ab6b52f8909bf62403d3243ad5cddd41aa6292ec9b78f6cf (height=2272)
DEBUG:lnd(16331):2017-11-29 18:23:35.356 [INF] NTFN: New block: height=2272, sha=6ef54391ea778679ab6b52f8909bf62403d3243ad5cddd41aa6292ec9b78f6cf
DEBUG:lnd(16331):2017-11-29 18:23:35.367 [INF] CRTR: Block 6ef54391ea778679ab6b52f8909bf62403d3243ad5cddd41aa6292ec9b78f6cf (height=2272) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:36 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:36 keypool reserve 2691
DEBUG:bitcoind:2017-11-29 17:23:36 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:36 UpdateTip: new best=4f58d46069b5c5e68d2d1b0b656578aafd241e958ad453870988e07da29e8e46 height=2273 version=0x20000000 log2_work=12.151017 tx=2483 date='2017-11-29 17:23:36' progress=1.000000 cache=0.5MiB(2473txo)
DEBUG:bitcoind:2017-11-29 17:23:36 AddToWallet f9121cc89cd26c73c5c398726f356f550d6039b612bf81c8d50fba97243a6ed6 new
DEBUG:bitcoind:2017-11-29 17:23:36 keypool keep 2691
DEBUG:proc:2017-11-29 18:23:36.412 [INF] BMGR: Processed 10 blocks in the last 10.65s (10 transactions, height 2273, 2017-11-29 18:23:36 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:23:36.414 [INF] CRTR: Pruning channel graph using block 4f58d46069b5c5e68d2d1b0b656578aafd241e958ad453870988e07da29e8e46 (height=2273)
DEBUG:lnd(16331):2017-11-29 18:23:36.415 [INF] NTFN: New block: height=2273, sha=4f58d46069b5c5e68d2d1b0b656578aafd241e958ad453870988e07da29e8e46
DEBUG:lnd(16331):2017-11-29 18:23:36.422 [INF] CRTR: Block 4f58d46069b5c5e68d2d1b0b656578aafd241e958ad453870988e07da29e8e46 (height=2273) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:37 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:37 keypool reserve 2692
DEBUG:bitcoind:2017-11-29 17:23:37 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:37 UpdateTip: new best=07a4b10f0b3f136300614a849cb590c1a9b71eaa3d872115189339580d297529 height=2274 version=0x20000000 log2_work=12.151651 tx=2484 date='2017-11-29 17:23:37' progress=1.000000 cache=0.5MiB(2474txo)
DEBUG:bitcoind:2017-11-29 17:23:37 AddToWallet 669b739ec7e301c1a98bc3ece5d205ffcf31f855a95753475a6736df9244e9a5 new
DEBUG:bitcoind:2017-11-29 17:23:37 keypool keep 2692
DEBUG:lnd(16331):2017-11-29 18:23:37.476 [INF] CRTR: Pruning channel graph using block 07a4b10f0b3f136300614a849cb590c1a9b71eaa3d872115189339580d297529 (height=2274)
DEBUG:lnd(16331):2017-11-29 18:23:37.477 [INF] NTFN: New block: height=2274, sha=07a4b10f0b3f136300614a849cb590c1a9b71eaa3d872115189339580d297529
DEBUG:lnd(16331):2017-11-29 18:23:37.491 [INF] CRTR: Block 07a4b10f0b3f136300614a849cb590c1a9b71eaa3d872115189339580d297529 (height=2274) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:38 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:38 keypool reserve 2693
DEBUG:bitcoind:2017-11-29 17:23:38 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:38 UpdateTip: new best=436a59545af27b0538c00f8b63f92208c73187126a91152255eb4a4258451abd height=2275 version=0x20000000 log2_work=12.152285 tx=2485 date='2017-11-29 17:23:38' progress=1.000000 cache=0.5MiB(2475txo)
DEBUG:bitcoind:2017-11-29 17:23:38 AddToWallet 79d365e4dceadb3c1fe0b0edd47133df398113474b1d736b64c4ec1b9da440ed new
DEBUG:bitcoind:2017-11-29 17:23:38 keypool keep 2693
DEBUG:lnd(16331):2017-11-29 18:23:38.431 [INF] CRTR: Pruning channel graph using block 436a59545af27b0538c00f8b63f92208c73187126a91152255eb4a4258451abd (height=2275)
DEBUG:lnd(16331):2017-11-29 18:23:38.432 [INF] NTFN: New block: height=2275, sha=436a59545af27b0538c00f8b63f92208c73187126a91152255eb4a4258451abd
DEBUG:lnd(16331):2017-11-29 18:23:38.442 [INF] CRTR: Block 436a59545af27b0538c00f8b63f92208c73187126a91152255eb4a4258451abd (height=2275) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:39 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:39 keypool reserve 2694
DEBUG:bitcoind:2017-11-29 17:23:39 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:39 UpdateTip: new best=1cbff177f06cd79232e67cf0843e8f002d3c04fe4e6eb4b54da51b1536f11f51 height=2276 version=0x20000000 log2_work=12.152919 tx=2486 date='2017-11-29 17:23:39' progress=1.000000 cache=0.5MiB(2476txo)
DEBUG:bitcoind:2017-11-29 17:23:39 AddToWallet 6db80897e788c5fc944c53e460d4df00a305dee9480060484e8a64bbaed0f690 new
DEBUG:bitcoind:2017-11-29 17:23:39 keypool keep 2694
DEBUG:lnd(16331):2017-11-29 18:23:39.579 [INF] CRTR: Pruning channel graph using block 1cbff177f06cd79232e67cf0843e8f002d3c04fe4e6eb4b54da51b1536f11f51 (height=2276)
DEBUG:lnd(16331):2017-11-29 18:23:39.581 [INF] NTFN: New block: height=2276, sha=1cbff177f06cd79232e67cf0843e8f002d3c04fe4e6eb4b54da51b1536f11f51
DEBUG:lnd(16331):2017-11-29 18:23:39.589 [INF] CRTR: Block 1cbff177f06cd79232e67cf0843e8f002d3c04fe4e6eb4b54da51b1536f11f51 (height=2276) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:40 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:40 keypool reserve 2695
DEBUG:bitcoind:2017-11-29 17:23:40 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:40 UpdateTip: new best=1e393d1acaf821122deb63d0fd1ef0f8cedc30663168f3e8db352f30ab13fd56 height=2277 version=0x20000000 log2_work=12.153552 tx=2487 date='2017-11-29 17:23:40' progress=1.000000 cache=0.5MiB(2477txo)
DEBUG:bitcoind:2017-11-29 17:23:40 AddToWallet 330a0a5075bde0d121b9de0c9ed6124adc441edc882f75672501205d1cfdd40c new
DEBUG:bitcoind:2017-11-29 17:23:40 keypool keep 2695
DEBUG:lnd(16331):2017-11-29 18:23:40.526 [INF] CRTR: Pruning channel graph using block 1e393d1acaf821122deb63d0fd1ef0f8cedc30663168f3e8db352f30ab13fd56 (height=2277)
DEBUG:lnd(16331):2017-11-29 18:23:40.527 [INF] NTFN: New block: height=2277, sha=1e393d1acaf821122deb63d0fd1ef0f8cedc30663168f3e8db352f30ab13fd56
DEBUG:lnd(16331):2017-11-29 18:23:40.542 [INF] CRTR: Block 1e393d1acaf821122deb63d0fd1ef0f8cedc30663168f3e8db352f30ab13fd56 (height=2277) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:41 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:41 keypool reserve 2696
DEBUG:bitcoind:2017-11-29 17:23:41 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:41 UpdateTip: new best=6d8bd25adf877497441ab4b543fd2b56b6c10beb365672ec334eeaf710d11fb5 height=2278 version=0x20000000 log2_work=12.154185 tx=2488 date='2017-11-29 17:23:41' progress=1.000000 cache=0.5MiB(2478txo)
DEBUG:bitcoind:2017-11-29 17:23:41 AddToWallet fd9be4c123e3e63e5a89bc54cb81b884f13c17da6c6e337437ecfd328c6f21a2 new
DEBUG:bitcoind:2017-11-29 17:23:41 keypool keep 2696
DEBUG:lnd(16331):2017-11-29 18:23:41.590 [INF] CRTR: Pruning channel graph using block 6d8bd25adf877497441ab4b543fd2b56b6c10beb365672ec334eeaf710d11fb5 (height=2278)
DEBUG:lnd(16331):2017-11-29 18:23:41.591 [INF] NTFN: New block: height=2278, sha=6d8bd25adf877497441ab4b543fd2b56b6c10beb365672ec334eeaf710d11fb5
DEBUG:lnd(16331):2017-11-29 18:23:41.605 [INF] CRTR: Block 6d8bd25adf877497441ab4b543fd2b56b6c10beb365672ec334eeaf710d11fb5 (height=2278) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:42 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:42 keypool reserve 2697
DEBUG:bitcoind:2017-11-29 17:23:42 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:42 UpdateTip: new best=212dd793ec74cbe631f16a9c3b98f31f1aed3d260a580d6f58604db4f9985be8 height=2279 version=0x20000000 log2_work=12.154818 tx=2489 date='2017-11-29 17:23:42' progress=1.000000 cache=0.5MiB(2479txo)
DEBUG:bitcoind:2017-11-29 17:23:42 AddToWallet 7e754a1aaaf578bdeebd5584f2b5e78db33fe7e847e92aafb66ac9b2b97dd296 new
DEBUG:bitcoind:2017-11-29 17:23:42 keypool keep 2697
DEBUG:lnd(16331):2017-11-29 18:23:42.767 [INF] CRTR: Pruning channel graph using block 212dd793ec74cbe631f16a9c3b98f31f1aed3d260a580d6f58604db4f9985be8 (height=2279)
DEBUG:lnd(16331):2017-11-29 18:23:42.768 [INF] NTFN: New block: height=2279, sha=212dd793ec74cbe631f16a9c3b98f31f1aed3d260a580d6f58604db4f9985be8
DEBUG:lnd(16331):2017-11-29 18:23:42.776 [INF] CRTR: Block 212dd793ec74cbe631f16a9c3b98f31f1aed3d260a580d6f58604db4f9985be8 (height=2279) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:43 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:43 keypool reserve 2698
DEBUG:bitcoind:2017-11-29 17:23:43 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:43 UpdateTip: new best=2308d0b4bb118b6dcf41e266ba2eb98f76904218961c850fe38bb802efb64436 height=2280 version=0x20000000 log2_work=12.155451 tx=2490 date='2017-11-29 17:23:43' progress=1.000000 cache=0.5MiB(2480txo)
DEBUG:bitcoind:2017-11-29 17:23:43 AddToWallet 823e93f49016a0c9fb20cc99a25f3b14d0b45ba62a1acdaeb95a8e6d06e6076c new
DEBUG:bitcoind:2017-11-29 17:23:43 keypool keep 2698
DEBUG:lnd(16331):2017-11-29 18:23:43.832 [INF] CRTR: Pruning channel graph using block 2308d0b4bb118b6dcf41e266ba2eb98f76904218961c850fe38bb802efb64436 (height=2280)
DEBUG:lnd(16331):2017-11-29 18:23:43.832 [INF] NTFN: New block: height=2280, sha=2308d0b4bb118b6dcf41e266ba2eb98f76904218961c850fe38bb802efb64436
DEBUG:lnd(16331):2017-11-29 18:23:43.847 [INF] CRTR: Block 2308d0b4bb118b6dcf41e266ba2eb98f76904218961c850fe38bb802efb64436 (height=2280) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:44 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:44 keypool reserve 2699
DEBUG:bitcoind:2017-11-29 17:23:44 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:44 UpdateTip: new best=0a7e29144f6b259424902815551f47fab6473fc468514930fd2af9edac1b48df height=2281 version=0x20000000 log2_work=12.156083 tx=2491 date='2017-11-29 17:23:44' progress=1.000000 cache=0.5MiB(2481txo)
DEBUG:bitcoind:2017-11-29 17:23:44 AddToWallet ffbe98c49301ed353ae17d19774cd6b1729329d9a02532e346d44fc542bbea69 new
DEBUG:bitcoind:2017-11-29 17:23:44 keypool keep 2699
DEBUG:lnd(16331):2017-11-29 18:23:44.894 [INF] CRTR: Pruning channel graph using block 0a7e29144f6b259424902815551f47fab6473fc468514930fd2af9edac1b48df (height=2281)
DEBUG:lnd(16331):2017-11-29 18:23:44.895 [INF] NTFN: New block: height=2281, sha=0a7e29144f6b259424902815551f47fab6473fc468514930fd2af9edac1b48df
DEBUG:lnd(16331):2017-11-29 18:23:44.902 [INF] CRTR: Block 0a7e29144f6b259424902815551f47fab6473fc468514930fd2af9edac1b48df (height=2281) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:45 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:45 keypool reserve 2700
DEBUG:bitcoind:2017-11-29 17:23:45 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:45 UpdateTip: new best=1d0c1b48b710b0ec85422089db225e3218913ebc3858d239e92d62de1f8b885e height=2282 version=0x20000000 log2_work=12.156715 tx=2492 date='2017-11-29 17:23:45' progress=1.000000 cache=0.5MiB(2482txo)
DEBUG:bitcoind:2017-11-29 17:23:45 AddToWallet d9c2c5a09495430b55246ed383bde96a53fc5b970e0f53ebe562dc6b196f8065 new
DEBUG:lnd(16331):2017-11-29 18:23:45.832 [INF] CRTR: Pruning channel graph using block 1d0c1b48b710b0ec85422089db225e3218913ebc3858d239e92d62de1f8b885e (height=2282)
DEBUG:lnd(16331):2017-11-29 18:23:45.832 [INF] NTFN: New block: height=2282, sha=1d0c1b48b710b0ec85422089db225e3218913ebc3858d239e92d62de1f8b885e
DEBUG:bitcoind:2017-11-29 17:23:45 keypool keep 2700
DEBUG:lnd(16331):2017-11-29 18:23:45.845 [INF] CRTR: Block 1d0c1b48b710b0ec85422089db225e3218913ebc3858d239e92d62de1f8b885e (height=2282) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:46 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:46 keypool reserve 2701
DEBUG:bitcoind:2017-11-29 17:23:46 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:46 UpdateTip: new best=14286a23ef5a3ab1649f81ad476441e8bc5de06e9780425ec6336c3cb2e1350d height=2283 version=0x20000000 log2_work=12.157347 tx=2493 date='2017-11-29 17:23:46' progress=1.000000 cache=0.5MiB(2483txo)
DEBUG:bitcoind:2017-11-29 17:23:46 AddToWallet adaa5ea66b97ca3f4749b93a0ae5d1ba804a7972cb71dcd7870ad5634dc10f56 new
DEBUG:proc:2017-11-29 18:23:46.890 [INF] BMGR: Processed 10 blocks in the last 10.47s (10 transactions, height 2283, 2017-11-29 18:23:46 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:23:46.891 [INF] CRTR: Pruning channel graph using block 14286a23ef5a3ab1649f81ad476441e8bc5de06e9780425ec6336c3cb2e1350d (height=2283)
DEBUG:lnd(16331):2017-11-29 18:23:46.891 [INF] NTFN: New block: height=2283, sha=14286a23ef5a3ab1649f81ad476441e8bc5de06e9780425ec6336c3cb2e1350d
DEBUG:bitcoind:2017-11-29 17:23:46 keypool keep 2701
DEBUG:lnd(16331):2017-11-29 18:23:46.898 [INF] CRTR: Block 14286a23ef5a3ab1649f81ad476441e8bc5de06e9780425ec6336c3cb2e1350d (height=2283) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:47 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:47 keypool reserve 2702
DEBUG:bitcoind:2017-11-29 17:23:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:47 UpdateTip: new best=0db201f09f61be1047770616e8c0d733f6ff2e304c96d4f3cb6b937ee7dec610 height=2284 version=0x20000000 log2_work=12.157978 tx=2494 date='2017-11-29 17:23:47' progress=1.000000 cache=0.5MiB(2484txo)
DEBUG:bitcoind:2017-11-29 17:23:47 AddToWallet f30aeeca63d7d315c140027e6aff460bf1e2a3d24dbf6480f6e644dfabda340d new
DEBUG:bitcoind:2017-11-29 17:23:47 keypool keep 2702
DEBUG:lnd(16331):2017-11-29 18:23:47.931 [INF] CRTR: Pruning channel graph using block 0db201f09f61be1047770616e8c0d733f6ff2e304c96d4f3cb6b937ee7dec610 (height=2284)
DEBUG:lnd(16331):2017-11-29 18:23:47.931 [INF] NTFN: New block: height=2284, sha=0db201f09f61be1047770616e8c0d733f6ff2e304c96d4f3cb6b937ee7dec610
DEBUG:lnd(16331):2017-11-29 18:23:47.942 [INF] CRTR: Block 0db201f09f61be1047770616e8c0d733f6ff2e304c96d4f3cb6b937ee7dec610 (height=2284) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:48 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:48 keypool reserve 2703
DEBUG:bitcoind:2017-11-29 17:23:48 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:48 UpdateTip: new best=569e0372256d2ef7a6f9dbdc3fae66027566336a4b1cd1205de5ba85f9f6d8c3 height=2285 version=0x20000000 log2_work=12.15861 tx=2495 date='2017-11-29 17:23:48' progress=1.000000 cache=0.5MiB(2485txo)
DEBUG:bitcoind:2017-11-29 17:23:48 AddToWallet 49c732a81270acf0e6c4fb0e7f6505593fc1ce6a67b7a0064658015ecba1a254 new
DEBUG:bitcoind:2017-11-29 17:23:48 keypool keep 2703
DEBUG:lnd(16331):2017-11-29 18:23:48.999 [INF] CRTR: Pruning channel graph using block 569e0372256d2ef7a6f9dbdc3fae66027566336a4b1cd1205de5ba85f9f6d8c3 (height=2285)
DEBUG:lnd(16331):2017-11-29 18:23:48.999 [INF] NTFN: New block: height=2285, sha=569e0372256d2ef7a6f9dbdc3fae66027566336a4b1cd1205de5ba85f9f6d8c3
DEBUG:lnd(16331):2017-11-29 18:23:49.011 [INF] CRTR: Block 569e0372256d2ef7a6f9dbdc3fae66027566336a4b1cd1205de5ba85f9f6d8c3 (height=2285) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:50 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:50 keypool reserve 2704
DEBUG:bitcoind:2017-11-29 17:23:50 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:50 UpdateTip: new best=3ade216292ba0ce88b095cb2cfc841518e4c925e286cb36588008d7a76fcf841 height=2286 version=0x20000000 log2_work=12.159241 tx=2496 date='2017-11-29 17:23:50' progress=1.000000 cache=0.5MiB(2486txo)
DEBUG:bitcoind:2017-11-29 17:23:50 AddToWallet aeb5262d4ef27ebcfb2bdb89c4aac6a7d5b105b6b95957fc3d043b2948f9978f new
DEBUG:bitcoind:2017-11-29 17:23:50 keypool keep 2704
DEBUG:lnd(16331):2017-11-29 18:23:50.147 [INF] CRTR: Pruning channel graph using block 3ade216292ba0ce88b095cb2cfc841518e4c925e286cb36588008d7a76fcf841 (height=2286)
DEBUG:lnd(16331):2017-11-29 18:23:50.147 [INF] NTFN: New block: height=2286, sha=3ade216292ba0ce88b095cb2cfc841518e4c925e286cb36588008d7a76fcf841
DEBUG:lnd(16331):2017-11-29 18:23:50.157 [INF] CRTR: Block 3ade216292ba0ce88b095cb2cfc841518e4c925e286cb36588008d7a76fcf841 (height=2286) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:51 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:51 keypool reserve 2705
DEBUG:bitcoind:2017-11-29 17:23:51 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:51 UpdateTip: new best=4b72c8dc6656b99d57405ead6b312704ad4712e65908baaaeb6c5c5d20e061e9 height=2287 version=0x20000000 log2_work=12.159871 tx=2497 date='2017-11-29 17:23:51' progress=1.000000 cache=0.5MiB(2487txo)
DEBUG:bitcoind:2017-11-29 17:23:51 AddToWallet 8a2b6c56fa6354e0a4f5ce1761cc8f39c1536630cd7c3d163ff5a67213ee39a9 new
DEBUG:bitcoind:2017-11-29 17:23:51 keypool keep 2705
DEBUG:lnd(16331):2017-11-29 18:23:51.208 [INF] CRTR: Pruning channel graph using block 4b72c8dc6656b99d57405ead6b312704ad4712e65908baaaeb6c5c5d20e061e9 (height=2287)
DEBUG:lnd(16331):2017-11-29 18:23:51.208 [INF] NTFN: New block: height=2287, sha=4b72c8dc6656b99d57405ead6b312704ad4712e65908baaaeb6c5c5d20e061e9
DEBUG:lnd(16331):2017-11-29 18:23:51.215 [INF] CRTR: Block 4b72c8dc6656b99d57405ead6b312704ad4712e65908baaaeb6c5c5d20e061e9 (height=2287) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:52 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:52 keypool reserve 2706
DEBUG:bitcoind:2017-11-29 17:23:52 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:52 UpdateTip: new best=503fc661e487f2a248892281cc2063324dc6421e659d74c96d3b70673fed0aea height=2288 version=0x20000000 log2_work=12.160502 tx=2498 date='2017-11-29 17:23:52' progress=1.000000 cache=0.5MiB(2488txo)
DEBUG:bitcoind:2017-11-29 17:23:52 AddToWallet 9acd9dd1ee52b528fccca704ad8a268e8b127b07f806240bac627295ac65fe76 new
DEBUG:bitcoind:2017-11-29 17:23:52 keypool keep 2706
DEBUG:lnd(16331):2017-11-29 18:23:52.263 [INF] CRTR: Pruning channel graph using block 503fc661e487f2a248892281cc2063324dc6421e659d74c96d3b70673fed0aea (height=2288)
DEBUG:lnd(16331):2017-11-29 18:23:52.265 [INF] NTFN: New block: height=2288, sha=503fc661e487f2a248892281cc2063324dc6421e659d74c96d3b70673fed0aea
DEBUG:lnd(16331):2017-11-29 18:23:52.278 [INF] CRTR: Block 503fc661e487f2a248892281cc2063324dc6421e659d74c96d3b70673fed0aea (height=2288) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:53 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:53 keypool reserve 2707
DEBUG:bitcoind:2017-11-29 17:23:53 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:53 UpdateTip: new best=6723684ec059e8dda696330f9f116c325074b718e3a4c3715b5b772f8c57b61c height=2289 version=0x20000000 log2_work=12.161132 tx=2499 date='2017-11-29 17:23:53' progress=1.000000 cache=0.5MiB(2489txo)
DEBUG:bitcoind:2017-11-29 17:23:53 AddToWallet 45c59dfaa51b923c877bf017bae92fdec05614b875f6b0645732a4ef38b84738 new
DEBUG:bitcoind:2017-11-29 17:23:53 keypool keep 2707
DEBUG:lnd(16331):2017-11-29 18:23:53.202 [INF] CRTR: Pruning channel graph using block 6723684ec059e8dda696330f9f116c325074b718e3a4c3715b5b772f8c57b61c (height=2289)
DEBUG:lnd(16331):2017-11-29 18:23:53.202 [INF] NTFN: New block: height=2289, sha=6723684ec059e8dda696330f9f116c325074b718e3a4c3715b5b772f8c57b61c
DEBUG:lnd(16331):2017-11-29 18:23:53.211 [INF] CRTR: Block 6723684ec059e8dda696330f9f116c325074b718e3a4c3715b5b772f8c57b61c (height=2289) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:54 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:54 keypool reserve 2708
DEBUG:bitcoind:2017-11-29 17:23:54 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:54 UpdateTip: new best=62c1ff67773d479b484ea53daa96aa66db231011d99da7a79b8d97197879bbb1 height=2290 version=0x20000000 log2_work=12.161762 tx=2500 date='2017-11-29 17:23:54' progress=1.000000 cache=0.5MiB(2490txo)
DEBUG:bitcoind:2017-11-29 17:23:54 AddToWallet 01916ddffc057b67ac180be98847ba9b32114a15a161c355132673fffbafe59a new
DEBUG:bitcoind:2017-11-29 17:23:54 keypool keep 2708
DEBUG:lnd(16331):2017-11-29 18:23:54.276 [INF] CRTR: Pruning channel graph using block 62c1ff67773d479b484ea53daa96aa66db231011d99da7a79b8d97197879bbb1 (height=2290)
DEBUG:lnd(16331):2017-11-29 18:23:54.276 [INF] NTFN: New block: height=2290, sha=62c1ff67773d479b484ea53daa96aa66db231011d99da7a79b8d97197879bbb1
DEBUG:lnd(16331):2017-11-29 18:23:54.285 [INF] CRTR: Block 62c1ff67773d479b484ea53daa96aa66db231011d99da7a79b8d97197879bbb1 (height=2290) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:55 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:55 keypool reserve 2709
DEBUG:bitcoind:2017-11-29 17:23:55 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:55 UpdateTip: new best=00a7759319f412e18ab3bdd5dabec909953c38f49f6678b4097dae4532b0fd8e height=2291 version=0x20000000 log2_work=12.162391 tx=2501 date='2017-11-29 17:23:55' progress=1.000000 cache=0.5MiB(2491txo)
DEBUG:bitcoind:2017-11-29 17:23:55 AddToWallet e27fbdd930debaa2a59830345aabcdf082c615b138d161d3e819071c7861534e new
DEBUG:bitcoind:2017-11-29 17:23:55 keypool keep 2709
DEBUG:lnd(16331):2017-11-29 18:23:55.437 [INF] CRTR: Pruning channel graph using block 00a7759319f412e18ab3bdd5dabec909953c38f49f6678b4097dae4532b0fd8e (height=2291)
DEBUG:lnd(16331):2017-11-29 18:23:55.438 [INF] NTFN: New block: height=2291, sha=00a7759319f412e18ab3bdd5dabec909953c38f49f6678b4097dae4532b0fd8e
DEBUG:lnd(16331):2017-11-29 18:23:55.446 [INF] CRTR: Block 00a7759319f412e18ab3bdd5dabec909953c38f49f6678b4097dae4532b0fd8e (height=2291) closed 0 channels
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:23:56 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:23:56 keypool reserve 2710
DEBUG:bitcoind:2017-11-29 17:23:56 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:23:56 UpdateTip: new best=3fe9e9b5ed78c50bd09ecdc3033b926f8de6706e03fbf6c211d90ec79b09c005 height=2292 version=0x20000000 log2_work=12.163021 tx=2502 date='2017-11-29 17:23:56' progress=1.000000 cache=0.5MiB(2492txo)
DEBUG:bitcoind:2017-11-29 17:23:56 AddToWallet 179df324f61d9641a0950f8071da498b3dcb46c849d0c9f99f8e63515ec934b6 new
DEBUG:bitcoind:2017-11-29 17:23:56 keypool keep 2710
DEBUG:lnd(16331):2017-11-29 18:23:56.495 [INF] NTFN: New block: height=2292, sha=3fe9e9b5ed78c50bd09ecdc3033b926f8de6706e03fbf6c211d90ec79b09c005
DEBUG:lnd(16331):2017-11-29 18:23:56.497 [INF] CRTR: Pruning channel graph using block 3fe9e9b5ed78c50bd09ecdc3033b926f8de6706e03fbf6c211d90ec79b09c005 (height=2292)
DEBUG:lnd(16331):2017-11-29 18:23:56.515 [INF] CRTR: Block 3fe9e9b5ed78c50bd09ecdc3033b926f8de6706e03fbf6c211d90ec79b09c005 (height=2292) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2279, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:23:57.436 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2279, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:23:58.467 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:23:59.495 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:00.511 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:01.541 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:02.571 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
DEBUG:lnd(16331):2017-11-29 18:24:02.738 [DBG] PEER: Received Ping from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:02.738 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Ping)(0xc4207fca00)({
DEBUG:lnd(16331): NumPongBytes: (uint16) 816,
DEBUG:lnd(16331): PaddingBytes: (lnwire.PingPayload) (len=826 cap=826) {
DEBUG:lnd(16331): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000200 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000210 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000220 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000230 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000250 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000260 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000270 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000280 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000290 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000310 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000320 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000330 00 00 00 00 00 00 00 00 00 00 |..........|
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:24:02.743 [DBG] PEER: Sending Pong to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:24:02.743 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Pong)(0xc42075dc60)({
DEBUG:lnd(16331): PongBytes: (lnwire.PongPayload) (len=816 cap=816) {
DEBUG:lnd(16331): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000200 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000210 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000220 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000230 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000250 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000260 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000270 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000280 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000290 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 000002f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000310 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): 00000320 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):
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:03.604 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:04.637 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:05.655 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:06.669 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:07.687 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:08.719 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:09.746 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:10.762 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:11.777 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:12.813 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:13.830 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:14.846 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:15.857 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:16.873 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:17.883 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:18.897 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:19.906 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:20.919 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:21.928 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:22.942 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:23.968 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:24.980 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:26.005 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:27.020 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26332 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3', 'alias': 'eclair', 'blockHeight': 2292, 'port': 16332}, 'id': 'scala-client'}
DEBUG:lnd(16331):2017-11-29 18:24:28.050 [INF] RPCS: [listchannels] fetched 0 channels from DB
WARNING:lnd-node(16331):Channel 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 -> 032a6e046102edb3275c4f15230093545817c912ca7c2fc3ac04e4d11f4b1a2cc3 not found
--------------------------- Captured stdout teardown ---------------------------
DEBUG:proc:2017-11-29 18:24:28.098 [ERR] RPCS: Websocket receive error from 127.0.0.1:51994: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:24:28.098 [INF] RPCS: Disconnected websocket client 127.0.0.1:51994
DEBUG:proc:2017-11-29 18:24:28.098 [ERR] RPCS: Websocket receive error from 127.0.0.1:51984: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:24:28.098 [ERR] RPCS: Websocket receive error from 127.0.0.1:51986: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:24:28.098 [ERR] RPCS: Websocket receive error from 127.0.0.1:51992: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:24:28.098 [INF] RPCS: Disconnected websocket client 127.0.0.1:51986
DEBUG:proc:2017-11-29 18:24:28.098 [INF] RPCS: Disconnected websocket client 127.0.0.1:51984
DEBUG:proc:2017-11-29 18:24:28.098 [INF] RPCS: Disconnected websocket client 127.0.0.1:51992
DEBUG:eclair(16332):2017-11-29 18:24:28,099 WARN f.a.eclair.crypto.TransportHandler akka://default/user/$i/server/$b - connection closed
DEBUG:eclair(16332):2017-11-29 18:24:28,101 WARN fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82 - lost connection to 039263f93702fc3f26a5845dec100f9e896d6725cf9165de9ca4b533123a34ba82
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment