Skip to content

Instantly share code, notes, and snippets.

Created November 29, 2017 21:48
Show Gist options
  • Save anonymous/0e502ab24029c10464d98e299aef6989 to your computer and use it in GitHub Desktop.
Save anonymous/0e502ab24029c10464d98e299aef6989 to your computer and use it in GitHub Desktop.
____________________ test_forwarded_payment[lnd_lnd_eclair] ____________________
bitcoind = <utils.BitcoinD object at 0x7fb768e47198>
node_factory = <test.NodeFactory object at 0x7fb75c970550>
impls = (<class 'lnd.LndNode'>, <class 'lnd.LndNode'>, <class 'eclair.EclairNode'>)
 @pytest.mark.parametrize("impls", product(impls, repeat=3), ids=idfn)
 def test_forwarded_payment(bitcoind, node_factory, impls):
 num_nodes = len(impls)
 nodes = [node_factory.get_node(implementation=impls[i]) for i in range(3)]
 capacity = 10**7
 
 for i in range(num_nodes-1):
 nodes[i].connect('localhost', nodes[i+1].daemon.port, nodes[i+1].id())
 nodes[i].addfunds(bitcoind, 4 * capacity)
 
 for i in range(num_nodes-1):
 nodes[i].openchannel(nodes[i+1].id(), 'localhost', nodes[i+1].daemon.port, capacity)
 confirm_channel(bitcoind, nodes[i], nodes[i+1])
 
 sync_blockheight(bitcoind, nodes)
 
 # Make sure that everybody knows about its own channel and it's confirmed
> generate_until(bitcoind, lambda: check_channels([(nodes[0], nodes[1]), (nodes[1], nodes[2])]), interval=1)
test.py:313:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
btc = <utils.BitcoinD object at 0x7fb768e47198>
success = <function test_forwarded_payment.<locals>.<lambda> at 0x7fb730c141e0>
blocks = 30, interval = 1
 def generate_until(btc, success, blocks=30, interval=1):
 """Generate new blocks until `success` returns true.
 
 Mainly used to wait for transactions to confirm since they might
 be delayed and we don't want to add a long waiting time to all
 tests just because some are slow.
 """
 for i in range(blocks):
 time.sleep(interval)
 if success():
 return
 btc.rpc.generate(1)
 time.sleep(interval)
 if not success():
> raise ValueError("Generated %d blocks, but still no success", blocks)
E ValueError: ('Generated %d blocks, but still no success', 30)
test.py:136: ValueError
----------------------------- Captured stdout call -----------------------------
DEBUG:root:Starting 'bin/lnd --peerport=16331 --rpcport=26331 --bitcoin.active --datadir=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lnd_eclair]/node-1/ --debuglevel=trace --bitcoin.rpcuser=rpcuser --bitcoin.rpcpass=rpcpass --configfile=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_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:08:04.296 [INF] LTND: Version 0.3.0-alpha
DEBUG:lnd(16331):2017-11-29 18:08:04.333 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
DEBUG:lnd(16331):2017-11-29 18:08:04.350 [INF] LTND: Primary chain is set to: bitcoin
DEBUG:lnd(16331):2017-11-29 18:08:04.350 [INF] LTND: Initializing btcd backed fee estimator
DEBUG:proc:2017-11-29 18:08:04.384 [INF] RPCS: New websocket client 127.0.0.1:45848
DEBUG:lnd(16331):2017-11-29 18:08:07.172 [INF] LNWL: Opened wallet
DEBUG:proc:2017-11-29 18:08:07.218 [INF] RPCS: New websocket client 127.0.0.1:45854
DEBUG:lnd(16331):2017-11-29 18:08:08.049 [INF] LNWL: The wallet has been unlocked without a time limit
DEBUG:lnd(16331):2017-11-29 18:08:08.050 [INF] LNWL: Catching up block hashes to height 1837, this will take a while...
DEBUG:lnd(16331):2017-11-29 18:08:08.069 [INF] LTND: LightningWallet opened
DEBUG:lnd(16331):2017-11-29 18:08:08.090 [TRC] FNDG: Funding manager running
DEBUG:lnd(16331):2017-11-29 18:08:08.091 [INF] RPCS: gRPC proxy started at localhost:8080
DEBUG:lnd(16331):2017-11-29 18:08:08.090 [INF] RPCS: RPC server listening on 127.0.0.1:26331
DEBUG:root:Found 'server listening on' in logs
DEBUG:root:Waiting for 'Done catching up block hashes' in the logs
DEBUG:lnd(16331):2017-11-29 18:08:08.091 [INF] LTND: Waiting for chain backend to finish sync, start_height=1837
DEBUG:lnd(16331):2017-11-29 18:08:08.300 [INF] LNWL: Done catching up block hashes
DEBUG:root:Found 'Done catching up block hashes' in logs
DEBUG:lnd(16331):2017-11-29 18:08:08.308 [INF] LNWL: Started rescan from block 00fed488eebd6a898b8a8e344819ffe9ccc2a4529269349d425a7ba6a76f87d1 (height 1837) for 1 address
DEBUG:proc:2017-11-29 18:08:08.309 [INF] RPCS: Beginning rescan for 1 address
DEBUG:proc:2017-11-29 18:08:08.310 [INF] RPCS: Finished rescan
DEBUG:lnd(16331):2017-11-29 18:08:08.310 [INF] LNWL: Catching up block hashes to height 1837, this might take a while
DEBUG:lnd(16331):2017-11-29 18:08:08.316 [INF] LNWL: Done catching up block hashes
DEBUG:lnd(16331):2017-11-29 18:08:08.316 [INF] LNWL: Finished rescan for 1 address (synced to block 00fed488eebd6a898b8a8e344819ffe9ccc2a4529269349d425a7ba6a76f87d1, height 1837)
DEBUG:lnd(16331):2017-11-29 18:08:09.093 [INF] LTND: Chain backend is fully synced (end_height=1837)!
DEBUG:proc:2017-11-29 18:08:09.226 [INF] RPCS: New websocket client 127.0.0.1:45858
DEBUG:lnd(16331):2017-11-29 18:08:09.228 [INF] HSWC: Starting HTLC Switch
DEBUG:lnd(16331):2017-11-29 18:08:09.228 [TRC] UTXN: Starting UTXO nursery
DEBUG:lnd(16331):2017-11-29 18:08:09.228 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:08:09.229 [TRC] BRAR: Starting breach arbiter
DEBUG:lnd(16331):2017-11-29 18:08:09.229 [INF] DISC: Authenticated Gossiper is starting
DEBUG:lnd(16331):2017-11-29 18:08:09.229 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:08:09.229 [TRC] CRTR: Channel Router starting
DEBUG:lnd(16331):2017-11-29 18:08:09.229 [INF] CRTR: FilteredChainView starting
DEBUG:lnd(16331):2017-11-29 18:08:09.230 [ERR] DISC: unable to rebroadcast stale channels: error while retrieving outgoing channels: no graph edges exist
DEBUG:proc:2017-11-29 18:08:09.300 [INF] RPCS: New websocket client 127.0.0.1:45860
DEBUG:lnd(16331):2017-11-29 18:08:09.323 [INF] CRTR: Filtering chain using 0 channels active
DEBUG:lnd(16331):2017-11-29 18:08:09.324 [INF] CRTR: Prune tip for Channel Graph: height=1837, hash=00fed488eebd6a898b8a8e344819ffe9ccc2a4529269349d425a7ba6a76f87d1
DEBUG:lnd(16331):2017-11-29 18:08:09.325 [INF] SRVR: Auto peer bootstrapping is disabled
DEBUG:lnd(16331):2017-11-29 18:08:09.325 [TRC] CMGR: Connection manager started
DEBUG:lnd(16331):2017-11-29 18:08:09.325 [INF] CMGR: Server listening on [::]:16331
INFO:root:LND started (pid: 10948)
DEBUG:root:Starting 'bin/lnd --peerport=16332 --rpcport=26332 --bitcoin.active --datadir=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lnd_eclair]/node-2/ --debuglevel=trace --bitcoin.rpcuser=rpcuser --bitcoin.rpcpass=rpcpass --configfile=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lnd_eclair]/node-2/lnd.conf --bitcoin.regtest --no-macaroons --nobootstrap --noencryptwallet'
DEBUG:root:Waiting for 'server listening on' in the logs
DEBUG:lnd(16332):2017-11-29 18:08:13.435 [INF] LTND: Version 0.3.0-alpha
DEBUG:lnd(16332):2017-11-29 18:08:13.465 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
DEBUG:lnd(16332):2017-11-29 18:08:13.504 [INF] LTND: Primary chain is set to: bitcoin
DEBUG:lnd(16332):2017-11-29 18:08:13.504 [INF] LTND: Initializing btcd backed fee estimator
DEBUG:proc:2017-11-29 18:08:13.542 [INF] RPCS: New websocket client 127.0.0.1:45862
DEBUG:lnd(16332):2017-11-29 18:08:16.315 [INF] LNWL: Opened wallet
DEBUG:proc:2017-11-29 18:08:16.374 [INF] RPCS: New websocket client 127.0.0.1:45864
DEBUG:lnd(16332):2017-11-29 18:08:17.262 [INF] LNWL: The wallet has been unlocked without a time limit
DEBUG:lnd(16332):2017-11-29 18:08:17.263 [INF] LNWL: Catching up block hashes to height 1837, this will take a while...
DEBUG:lnd(16332):2017-11-29 18:08:17.278 [INF] LTND: LightningWallet opened
DEBUG:lnd(16332):2017-11-29 18:08:17.300 [TRC] FNDG: Funding manager running
DEBUG:lnd(16332):2017-11-29 18:08:17.300 [ERR] LTND: gRPC proxy unable to listen on localhost:8080
DEBUG:lnd(16332):2017-11-29 18:08:17.300 [INF] RPCS: RPC server listening on 127.0.0.1:26332
DEBUG:root:Found 'server listening on' in logs
DEBUG:root:Waiting for 'Done catching up block hashes' in the logs
DEBUG:lnd(16332):2017-11-29 18:08:17.301 [INF] LTND: Waiting for chain backend to finish sync, start_height=1837
DEBUG:lnd(16332):2017-11-29 18:08:17.486 [INF] LNWL: Done catching up block hashes
DEBUG:root:Found 'Done catching up block hashes' in logs
DEBUG:lnd(16332):2017-11-29 18:08:17.494 [INF] LNWL: Started rescan from block 00fed488eebd6a898b8a8e344819ffe9ccc2a4529269349d425a7ba6a76f87d1 (height 1837) for 1 address
DEBUG:proc:2017-11-29 18:08:17.495 [INF] RPCS: Beginning rescan for 1 address
DEBUG:proc:2017-11-29 18:08:17.495 [INF] RPCS: Finished rescan
DEBUG:lnd(16332):2017-11-29 18:08:17.496 [INF] LNWL: Catching up block hashes to height 1837, this might take a while
DEBUG:lnd(16332):2017-11-29 18:08:17.501 [INF] LNWL: Done catching up block hashes
DEBUG:lnd(16332):2017-11-29 18:08:17.502 [INF] LNWL: Finished rescan for 1 address (synced to block 00fed488eebd6a898b8a8e344819ffe9ccc2a4529269349d425a7ba6a76f87d1, height 1837)
DEBUG:lnd(16332):2017-11-29 18:08:18.303 [INF] LTND: Chain backend is fully synced (end_height=1837)!
DEBUG:proc:2017-11-29 18:08:18.360 [INF] RPCS: New websocket client 127.0.0.1:45868
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [INF] HSWC: Starting HTLC Switch
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [TRC] UTXN: Starting UTXO nursery
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [TRC] BRAR: Starting breach arbiter
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [INF] DISC: Authenticated Gossiper is starting
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [TRC] CRTR: Channel Router starting
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [INF] CRTR: FilteredChainView starting
DEBUG:lnd(16332):2017-11-29 18:08:18.361 [ERR] DISC: unable to rebroadcast stale channels: error while retrieving outgoing channels: no graph edges exist
DEBUG:proc:2017-11-29 18:08:18.399 [INF] RPCS: New websocket client 127.0.0.1:45870
DEBUG:lnd(16332):2017-11-29 18:08:18.424 [INF] CRTR: Filtering chain using 0 channels active
DEBUG:lnd(16332):2017-11-29 18:08:18.425 [INF] CRTR: Prune tip for Channel Graph: height=1837, hash=00fed488eebd6a898b8a8e344819ffe9ccc2a4529269349d425a7ba6a76f87d1
DEBUG:lnd(16332):2017-11-29 18:08:18.425 [INF] SRVR: Auto peer bootstrapping is disabled
DEBUG:lnd(16332):2017-11-29 18:08:18.425 [TRC] CMGR: Connection manager started
DEBUG:lnd(16332):2017-11-29 18:08:18.426 [INF] CMGR: Server listening on [::]:16332
INFO:root:LND started (pid: 11237)
DEBUG:root:Starting '/usr/lib/jvm/java-8-openjdk-amd64/bin/java -Declair.datadir=/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lnd_eclair]/node-3/ -Declair.printToConsole=true -jar bin/eclair.jar'
DEBUG:root:Waiting for 'connected to tcp://127.0.0.1:29000' in the logs
DEBUG:eclair(16333):18:08:24,174 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml]
DEBUG:eclair(16333):18:08:24,174 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy]
DEBUG:eclair(16333):18:08:24,174 |-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(16333):18:08:24,183 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@555efb45 - 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(16333):18:08:24,218 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16333):18:08:24,221 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16333):18:08:24,227 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16333):18:08:24,246 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.FileAppender]
DEBUG:eclair(16333):18:08:24,247 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [FILE]
DEBUG:eclair(16333):18:08:24,248 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16333):18:08:24,249 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/tmp/lightning-il5fkavy/test_forwarded_payment[lnd_lnd_eclair]/node-3//eclair.log]
DEBUG:eclair(16333):18:08:24,251 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel] to DEBUG
DEBUG:eclair(16333):18:08:24,251 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel.Register] to DEBUG
DEBUG:eclair(16333):18:08:24,251 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.router] to INFO
DEBUG:eclair(16333):18:08:24,438 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16333):18:08:24,438 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16333):18:08:24,438 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16333):18:08:24,439 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [CONSOLE] to Logger[ROOT]
DEBUG:eclair(16333):18:08:24,439 |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to INFO
DEBUG:eclair(16333):18:08:24,439 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [FILE] to Logger[ROOT]
DEBUG:eclair(16333):18:08:24,439 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration.
DEBUG:eclair(16333):18:08:24,441 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@4d12ca0 - Registering current configuration as safe fallback point
DEBUG:eclair(16333):2017-11-29 18:08:24,443 INFO akka.event.slf4j.Slf4jLogger - Slf4jLogger started
DEBUG:eclair(16333):2017-11-29 18:08:24,454 INFO fr.acinq.eclair.Setup - hello!
DEBUG:eclair(16333):2017-11-29 18:08:24,455 INFO fr.acinq.eclair.Setup - version=0.2-SNAPSHOT commit=2d5d68bf3f57363075d04e23447b9c19924d9f8a
DEBUG:eclair(16333):2017-11-29 18:08:24,514 INFO org.bitcoin.Secp256k1Context - couldn't find secp256k1 library, defaulting to spongycastle
DEBUG:eclair(16333):2017-11-29 18:08:25,027 INFO fr.acinq.eclair.Setup - nodeid=03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b alias=eclair
DEBUG:eclair(16333):2017-11-29 18:08:25,027 INFO fr.acinq.eclair.Setup - using chain=regtest chainHash=06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f
DEBUG:eclair(16333):2017-11-29 18:08:25,028 INFO fr.acinq.eclair.Setup - initializing secure random generator
DEBUG:eclair(16333):2017-11-29 18:08:26,299 INFO fr.acinq.eclair.Setup - initial feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:eclair(16333):2017-11-29 18:08:26,310 INFO fr.acinq.eclair.Setup - current feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:bitcoind:2017-11-29 17:08:26 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:eclair(16333):2017-11-29 18:08:26,337 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - loading network announcements from db...
DEBUG:eclair(16333):2017-11-29 18:08:26,340 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - starting state machine
DEBUG:bitcoind:2017-11-29 17:08:26 keypool reserve 2297
DEBUG:bitcoind:2017-11-29 17:08:26 keypool keep 2297
DEBUG:eclair(16333):2017-11-29 18:08:26,352 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - current status channels=0 nodes=0 updates=0
DEBUG:eclair(16333):2017-11-29 18:08:26,356 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - bound on /0:0:0:0:0:0:0:0:16333
DEBUG:eclair(16333):2017-11-29 18:08:26,415 INFO fr.acinq.eclair.Setup - initial wallet address=2Mt7hdgv6MacSNi6qVTpSNEVSDzUvakhuXJ
DEBUG:eclair(16333):2017-11-29 18:08:27,407 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(16333):Eclair started (pid: 11511)
DEBUG:lnd(16331):2017-11-29 18:08:27.435 [DBG] SRVR: Connecting to 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:08:27.435 [DBG] RPCS: Connected to peer: 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9@127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:08:27.435 [DBG] CMGR: Attempting to connect to 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9@127.0.0.1:16332 (reqid 1)
DEBUG:root:
DEBUG:lnd(16331):2017-11-29 18:08:27.443 [DBG] CMGR: Connected to 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9@127.0.0.1:16332 (reqid 1)
DEBUG:lnd(16331):2017-11-29 18:08:27.443 [INF] SRVR: Established connection to: 127.0.0.1:16332
DEBUG:lnd(16332):2017-11-29 18:08:27.444 [INF] SRVR: New inbound connection from 127.0.0.1:35740
DEBUG:lnd(16331):2017-11-29 18:08:27.443 [TRC] PEER: peer 127.0.0.1:16332 starting
DEBUG:lnd(16332):2017-11-29 18:08:27.444 [TRC] PEER: peer 127.0.0.1:35740 starting
DEBUG:lnd(16331):2017-11-29 18:08:27.443 [DBG] PEER: Sending Init to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:08:27.444 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Init)(0xc42018a4c0)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42016c030)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42016c080)({
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:08:27.446 [DBG] PEER: Received Init from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:08:27.446 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Init)(0xc42009cb30)({
DEBUG:lnd(16331): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e030)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42000e048)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16331): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:27.447 [DBG] PEER: Loaded 0 active channels from database with peerID(1)
DEBUG:lnd(16332):2017-11-29 18:08:27.445 [DBG] PEER: Sending Init to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:08:27.445 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.Init)(0xc42029a5d0)({
DEBUG:lnd(16332): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e0d8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4206e8020)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16332): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:27.446 [DBG] PEER: Received Init from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:08:27.446 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.Init)(0xc42029a720)({
DEBUG:lnd(16332): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4201a20c0)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201a20c8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16332): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:27.448 [DBG] PEER: Loaded 0 active channels from database with peerID(1)
DEBUG:lnd(16332):2017-11-29 18:08:27.448 [INF] DISC: Syncing channel graph state with 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, sending 1 vertexes and 0 edges
DEBUG:lnd(16331):2017-11-29 18:08:27.448 [INF] DISC: Syncing channel graph state with 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, sending 1 vertexes and 0 edges
{"method": "sendtoaddress", "params": ["2NAwcTKE4RutokZzkQtTpjyiQiVxi2iTU5C", 0.4], "id": 1, "version": "1.1"}
DEBUG:lnd(16332):2017-11-29 18:08:27.449 [INF] SRVR: Attempting to send msgs 1 to: 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16331):2017-11-29 18:08:27.448 [INF] SRVR: Attempting to send msgs 1 to: 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16332):2017-11-29 18:08:27.449 [DBG] PEER: Sending NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:17 +0100 CET) to 127.0.0.1:35740
DEBUG:lnd(16331):2017-11-29 18:08:27.447 [INF] RPCS: [newaddress] addr=2NAwcTKE4RutokZzkQtTpjyiQiVxi2iTU5C
DEBUG:lnd(16332):2017-11-29 18:08:27.449 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.NodeAnnouncement)(0xc42018ba40)({
DEBUG:lnd(16331):2017-11-29 18:08:27.448 [DBG] PEER: Sending NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:08 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc4201a8d00)({
DEBUG:lnd(16331):2017-11-29 18:08:27.448 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc420538780)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420586cc0)(74767406368339565558846714998653504119426207045532621309829615843697162870146),
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc42009ce80)({
DEBUG:lnd(16332): S: (*big.Int)(0xc420586ce0)(54785985705341813313236855336186136436175212538690271232869196998492965633934)
DEBUG:lnd(16331): R: (*big.Int)(0xc420149980)(67675543333784410033098906536687809687225703950003403100445946220522645153279),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): S: (*big.Int)(0xc4201499a0)(57026642883140117134088014731829127849514601273658908875836888947411673345667)
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc42000e1a8)({
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42000e0a8)({
DEBUG:lnd(16332): }
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): }
DEBUG:lnd(16332): Timestamp: (uint32) 1511975297,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420586bc0)({
DEBUG:lnd(16331): Timestamp: (uint32) 1511975288,
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc420149880)({
DEBUG:lnd(16332): X: (*big.Int)(0xc420586be0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): Y: (*big.Int)(0xc420586c00)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16331): X: (*big.Int)(0xc4201498a0)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201498c0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16331): red: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16331): green: (uint8) 0,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): blue: (uint8) 0
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16331): },
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) 038d90d32bd642200bb7,
DEBUG:lnd(16332):})
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):
DEBUG:lnd(16331):})
DEBUG:lnd(16332):2017-11-29 18:08:27.450 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16331):
DEBUG:lnd(16332):2017-11-29 18:08:27.452 [DBG] PEER: Received NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:08 +0100 CET) from 127.0.0.1:35740
DEBUG:lnd(16331):2017-11-29 18:08:27.451 [DBG] PEER: Received NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:17 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16332):2017-11-29 18:08:27.452 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.NodeAnnouncement)(0xc420072780)({
DEBUG:lnd(16331):2017-11-29 18:08:27.451 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc4202780f0)({
DEBUG:lnd(16331):2017-11-29 18:08:27.451 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc420073500)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4206d80a0)(67675543333784410033098906536687809687225703950003403100445946220522645153279),
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4201a2870)({
DEBUG:lnd(16332): S: (*big.Int)(0xc4206d80c0)(57026642883140117134088014731829127849514601273658908875836888947411673345667)
DEBUG:lnd(16331): R: (*big.Int)(0xc4201c5740)(74767406368339565558846714998653504119426207045532621309829615843697162870146),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): S: (*big.Int)(0xc4201c5760)(54785985705341813313236855336186136436175212538690271232869196998492965633934)
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201e8000)({
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4201a60a8)({
DEBUG:lnd(16332): }
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): }
DEBUG:lnd(16332): Timestamp: (uint32) 1511975288,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc4206d80e0)({
DEBUG:lnd(16331): Timestamp: (uint32) 1511975297,
DEBUG:bitcoind:2017-11-29 17:08:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4201c5780)({
DEBUG:lnd(16332): X: (*big.Int)(0xc4206d8100)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): Y: (*big.Int)(0xc4206d8120)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16331): X: (*big.Int)(0xc4201c57a0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201c57e0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16331): red: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16331): green: (uint8) 0,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): blue: (uint8) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 038d90d32bd642200bb7,
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:27.456 [DBG] DISC: Ignoring node announcement for node not found in channel graph (036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9)
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:27.455 [DBG] DISC: Ignoring node announcement for node not found in channel graph (038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088)
DEBUG:bitcoind:2017-11-29 17:08:27 keypool reserve 1103
DEBUG:bitcoind:2017-11-29 17:08:27 Fee Calculation: Fee:6080 Bytes:304 Needed:6080 Tgt:6 (requested 6) Reason:"Fallback fee" Decay 0.96200: Estimation: (-1 - -1) -nan% 0.0/(0.0 0 mem 0.0 out) Fail: (0 - 1e+99) 100.00% 0.6/(0.6 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 17:08:27 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=39c2073fcd, ver=2, vin.size=2, vout.size=2, nLockTime=1837)
DEBUG:bitcoind: CTxIn(COutPoint(664edc85c3, 0), scriptSig=47304402207f3038b53a01a0, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(f06fb032d7, 0), scriptSig=483045022100ef162c2afd8a, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=0.40000000, scriptPubKey=a914c21d87cfad59c71b5dcdfd8998)
DEBUG:bitcoind: CTxOut(nValue=0.01497826, scriptPubKey=76a914656a7d816b83a300f7ac7245)
DEBUG:bitcoind:2017-11-29 17:08:27 keypool keep 1103
DEBUG:bitcoind:2017-11-29 17:08:27 AddToWallet 39c2073fcd01b429a75914e3cb656fd5456a5cf1da704454ce73e3f9d6cf817d new
DEBUG:bitcoind:2017-11-29 17:08:27 AddToWallet 39c2073fcd01b429a75914e3cb656fd5456a5cf1da704454ce73e3f9d6cf817d
DEBUG:bitcoind:2017-11-29 17:08:27 Relaying wtx 39c2073fcd01b429a75914e3cb656fd5456a5cf1da704454ce73e3f9d6cf817d
DEBUG:root:Waiting for 'Inserting unconfirmed transaction' in the logs
DEBUG:lnd(16331):2017-11-29 18:08:34.711 [INF] LNWL: Inserting unconfirmed transaction 39c2073fcd01b429a75914e3cb656fd5456a5cf1da704454ce73e3f9d6cf817d
DEBUG:lnd(16331):2017-11-29 18:08:34.712 [DBG] LNWL: Marked address 2NAwcTKE4RutokZzkQtTpjyiQiVxi2iTU5C used
DEBUG:root:Found 'Inserting unconfirmed transaction' in logs
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:34 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:34 keypool reserve 2298
DEBUG:bitcoind:2017-11-29 17:08:34 CreateNewBlock(): total size: 566 block weight: 2156 txs: 1 fees: 6080 sigops 404
DEBUG:bitcoind:2017-11-29 17:08:34 UpdateTip: new best=1d43151ad9cb87d37df167a31710fc6a297a39190e94b5d0f9f477cc5f93bf31 height=1838 version=0x20000000 log2_work=11.844706 tx=2026 date='2017-11-29 17:08:34' progress=1.000000 cache=0.4MiB(2011txo)
DEBUG:bitcoind:2017-11-29 17:08:34 AddToWallet 38c7a369addfe57b4666a3fd20ec675da89b93e1bd8113a1af9ee609295e508c new
DEBUG:bitcoind:2017-11-29 17:08:34 AddToWallet 39c2073fcd01b429a75914e3cb656fd5456a5cf1da704454ce73e3f9d6cf817d update
DEBUG:bitcoind:2017-11-29 17:08:34 keypool keep 2298
DEBUG:root:Waiting for 'Marking unconfirmed transaction' in the logs
DEBUG:proc:2017-11-29 18:08:34.845 [INF] BMGR: Processed 3 blocks in the last 33.76s (4 transactions, height 1838, 2017-11-29 18:08:34 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:08:34.845 [INF] CRTR: Pruning channel graph using block 1d43151ad9cb87d37df167a31710fc6a297a39190e94b5d0f9f477cc5f93bf31 (height=1838)
DEBUG:lnd(16331):2017-11-29 18:08:34.846 [INF] LNWL: Marking unconfirmed transaction 39c2073fcd01b429a75914e3cb656fd5456a5cf1da704454ce73e3f9d6cf817d mined in block 1838
DEBUG:lnd(16331):2017-11-29 18:08:34.846 [DBG] LNWL: Marked address 2NAwcTKE4RutokZzkQtTpjyiQiVxi2iTU5C used
DEBUG:lnd(16331):2017-11-29 18:08:34.846 [INF] CRTR: Pruning channel graph using block 1d43151ad9cb87d37df167a31710fc6a297a39190e94b5d0f9f477cc5f93bf31 (height=1838)
DEBUG:root:Found 'Marking unconfirmed transaction' in logs
DEBUG:lnd(16332):2017-11-29 18:08:34.847 [INF] NTFN: New block: height=1838, sha=1d43151ad9cb87d37df167a31710fc6a297a39190e94b5d0f9f477cc5f93bf31
DEBUG:lnd(16331):2017-11-29 18:08:34.847 [INF] NTFN: New block: height=1838, sha=1d43151ad9cb87d37df167a31710fc6a297a39190e94b5d0f9f477cc5f93bf31
DEBUG:lnd(16331):2017-11-29 18:08:34.865 [INF] CRTR: Block 1d43151ad9cb87d37df167a31710fc6a297a39190e94b5d0f9f477cc5f93bf31 (height=1838) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:08:34.865 [INF] CRTR: Block 1d43151ad9cb87d37df167a31710fc6a297a39190e94b5d0f9f477cc5f93bf31 (height=1838) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:35.849 [DBG] RPCS: [walletbalance] balance=0.4 BTC
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): localhost
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1837, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:08:36.007 [DBG] SRVR: Connecting to 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b@127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:08:36.007 [DBG] RPCS: Connected to peer: 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b@127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:08:36.007 [DBG] CMGR: Attempting to connect to 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b@127.0.0.1:16333 (reqid 1)
DEBUG:root:
DEBUG:eclair(16333):2017-11-29 18:08:36,012 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - connected to /127.0.0.1:45242
DEBUG:lnd(16332):2017-11-29 18:08:36.016 [INF] RPCS: [newaddress] addr=2NDPciVYVumxefuQSRRtWhNENn4R3KK7Nro
{"method": "sendtoaddress", "params": ["2NDPciVYVumxefuQSRRtWhNENn4R3KK7Nro", 0.4], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:36 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:36 keypool reserve 1104
DEBUG:bitcoind:2017-11-29 17:08:36 Fee Calculation: Fee:6080 Bytes:304 Needed:6080 Tgt:6 (requested 6) Reason:"Fallback fee" Decay 0.96200: Estimation: (-1 - -1) -nan% 0.0/(0.0 0 mem 0.0 out) Fail: (0 - 1e+99) 100.00% 1.5/(1.5 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 17:08:36 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=5e2be88209, ver=2, vin.size=2, vout.size=2, nLockTime=1838)
DEBUG:bitcoind: CTxIn(COutPoint(226ab9e3a2, 0), scriptSig=4830450221009146b0d3aab3, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(ba08eb40d3, 0), scriptSig=483045022100fbeb338ddfec, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=0.01497826, scriptPubKey=76a914111f4bf3beed9a037434f84f)
DEBUG:bitcoind: CTxOut(nValue=0.40000000, scriptPubKey=a914dcf8d0c6c0f95549599c1835d6)
DEBUG:bitcoind:2017-11-29 17:08:36 keypool keep 1104
DEBUG:lnd(16332):2017-11-29 18:08:36.060 [DBG] CMGR: Connected to 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b@127.0.0.1:16333 (reqid 1)
DEBUG:lnd(16332):2017-11-29 18:08:36.060 [INF] SRVR: Established connection to: 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:08:36.060 [TRC] PEER: peer 127.0.0.1:16333 starting
DEBUG:lnd(16332):2017-11-29 18:08:36.060 [DBG] PEER: Sending Init to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:08:36.060 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.Init)(0xc42029ac00)({
DEBUG:lnd(16332): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e0d8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201a20e8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16332): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:eclair(16333):2017-11-29 18:08:36,070 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - handshake completed with 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:bitcoind:2017-11-29 17:08:36 AddToWallet 5e2be88209916c7675ab0b1035633628b6b4806395fd7742d0359b65de4ff213 new
DEBUG:eclair(16333):2017-11-29 18:08:36,079 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - registering as a listener to Actor[akka://default/user/$i/server/$a#314255907]
DEBUG:bitcoind:2017-11-29 17:08:36 AddToWallet 5e2be88209916c7675ab0b1035633628b6b4806395fd7742d0359b65de4ff213
DEBUG:bitcoind:2017-11-29 17:08:36 Relaying wtx 5e2be88209916c7675ab0b1035633628b6b4806395fd7742d0359b65de4ff213
DEBUG:root:Waiting for 'Inserting unconfirmed transaction' in the logs
DEBUG:eclair(16333):2017-11-29 18:08:36,098 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 has features: initialRoutingSync=true
DEBUG:lnd(16332):2017-11-29 18:08:36.109 [DBG] PEER: Received Init from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:08:36.109 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.Init)(0xc420190cb0)({
DEBUG:lnd(16332): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc4206e8128)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4206e8130)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16332): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:36.109 [DBG] PEER: Loaded 0 active channels from database with peerID(2)
DEBUG:lnd(16332):2017-11-29 18:08:36.109 [INF] DISC: Syncing channel graph state with 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b, sending 1 vertexes and 0 edges
DEBUG:lnd(16332):2017-11-29 18:08:36.109 [INF] SRVR: Attempting to send msgs 1 to: 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b
DEBUG:lnd(16332):2017-11-29 18:08:36.109 [DBG] PEER: Sending NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:17 +0100 CET) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:08:36.109 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.NodeAnnouncement)(0xc4202d3860)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420190fc0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4201a00c0)(74767406368339565558846714998653504119426207045532621309829615843697162870146),
DEBUG:lnd(16332): S: (*big.Int)(0xc4201a00e0)(54785985705341813313236855336186136436175212538690271232869196998492965633934)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4206e8138)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975297,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc4206b7fa0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4206b7fc0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4206b7fe0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:36.110 [TRC] PEER: Update stream for gossiper created
DEBUG:eclair(16333):2017-11-29 18:08:36,150 WARN fr.acinq.eclair.router.Router akka://default/user/$f/router - ignoring NodeAnnouncement(3045022100a54cda33b95229c16886e77db0518cc144195b27cbb078fa0ab53e9419825d820220791fc4df7f4d1633888ca1d2d763d125f2102edc0f3a82941767f07820f4ff8e01,,1511975297,036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9,(0,0,0),036f802e9c8c060ea909,List()) (no related channel found)
DEBUG:lnd(16332):2017-11-29 18:08:36.755 [INF] LNWL: Inserting unconfirmed transaction 5e2be88209916c7675ab0b1035633628b6b4806395fd7742d0359b65de4ff213
DEBUG:lnd(16332):2017-11-29 18:08:36.755 [DBG] LNWL: Marked address 2NDPciVYVumxefuQSRRtWhNENn4R3KK7Nro used
DEBUG:root:Found 'Inserting unconfirmed transaction' in logs
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:36 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:36 keypool reserve 2299
DEBUG:bitcoind:2017-11-29 17:08:36 CreateNewBlock(): total size: 567 block weight: 2160 txs: 1 fees: 6080 sigops 404
DEBUG:bitcoind:2017-11-29 17:08:36 UpdateTip: new best=229e1f4362f3daf6bcf3f4d9537090a4c6f2b735b179beb3c11538adb976ba36 height=1839 version=0x20000000 log2_work=11.84549 tx=2028 date='2017-11-29 17:08:36' progress=1.000000 cache=0.4MiB(2014txo)
DEBUG:bitcoind:2017-11-29 17:08:36 AddToWallet f140861b7eb5b79421ba4bc0f944ce5561fcfc985c25a83d648257eb9fe6e427 new
DEBUG:bitcoind:2017-11-29 17:08:36 AddToWallet 5e2be88209916c7675ab0b1035633628b6b4806395fd7742d0359b65de4ff213 update
DEBUG:bitcoind:2017-11-29 17:08:36 keypool keep 2299
DEBUG:lnd(16331):2017-11-29 18:08:36.791 [INF] CRTR: Pruning channel graph using block 229e1f4362f3daf6bcf3f4d9537090a4c6f2b735b179beb3c11538adb976ba36 (height=1839)
DEBUG:lnd(16332):2017-11-29 18:08:36.791 [INF] CRTR: Pruning channel graph using block 229e1f4362f3daf6bcf3f4d9537090a4c6f2b735b179beb3c11538adb976ba36 (height=1839)
DEBUG:lnd(16332):2017-11-29 18:08:36.791 [INF] LNWL: Marking unconfirmed transaction 5e2be88209916c7675ab0b1035633628b6b4806395fd7742d0359b65de4ff213 mined in block 1839
DEBUG:lnd(16332):2017-11-29 18:08:36.791 [DBG] LNWL: Marked address 2NDPciVYVumxefuQSRRtWhNENn4R3KK7Nro used
DEBUG:lnd(16331):2017-11-29 18:08:36.792 [INF] NTFN: New block: height=1839, sha=229e1f4362f3daf6bcf3f4d9537090a4c6f2b735b179beb3c11538adb976ba36
DEBUG:lnd(16332):2017-11-29 18:08:36.793 [INF] NTFN: New block: height=1839, sha=229e1f4362f3daf6bcf3f4d9537090a4c6f2b735b179beb3c11538adb976ba36
DEBUG:lnd(16332):2017-11-29 18:08:36.806 [INF] CRTR: Block 229e1f4362f3daf6bcf3f4d9537090a4c6f2b735b179beb3c11538adb976ba36 (height=1839) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:36.806 [INF] CRTR: Block 229e1f4362f3daf6bcf3f4d9537090a4c6f2b735b179beb3c11538adb976ba36 (height=1839) closed 0 channels
DEBUG:root:Waiting for 'Marking unconfirmed transaction' in the logs
DEBUG:root:Found 'Marking unconfirmed transaction' in logs
DEBUG:lnd(16332):2017-11-29 18:08:37.820 [DBG] RPCS: [walletbalance] balance=0.4 BTC
DEBUG:lnd(16331):2017-11-29 18:08:37.822 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:08:37.822 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lnd(16331):2017-11-29 18:08:37.825 [TRC] RPCS: [openchannel] request to peerid(1) allocation(us=10000000, them=0)
DEBUG:lnd(16331):2017-11-29 18:08:37.826 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:08:37.826 [DBG] RPCS: [openchannel]: using fee of 25 sat/byte for funding tx
DEBUG:lnd(16331):2017-11-29 18:08:37.826 [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:08:37.829 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:08:37.829 [INF] LNWL: Performing funding tx coin selection using 6 sat/weight as fee rate
DEBUG:lnd(16331):2017-11-29 18:08:37.889 [INF] FNDG: Target commit tx sat/kw for pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0): 6000
DEBUG:lnd(16331):2017-11-29 18:08:37.889 [INF] FNDG: Starting funding workflow with 127.0.0.1:16332 for pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0)
DEBUG:lnd(16331):2017-11-29 18:08:37.889 [INF] SRVR: Attempting to send msgs 1 to: 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16331):2017-11-29 18:08:37.889 [DBG] PEER: Sending MsgOpenChannel(temp_chan_id=3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0, 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:08:37.890 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.OpenChannel)(0xc4200b1ef0)({
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 3c c2 a0 ee d2 ae e9 09 7c 92 a5 35 3a 60 16 18 |<.......|..5:`..|
DEBUG:lnd(16331): 00000010 04 f7 59 63 81 d1 84 2f 00 cb b8 07 92 0d b4 f0 |..Yc.../........|
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)(0xc420545470)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4206f7900)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4206f7940)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RevocationPoint: (*btcec.PublicKey)(0xc420199da0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420271ba0)(47260538874253385152451366940044082314823477815354488112848471934141173470881),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420271bc0)(67675183350702726774453106100725309328856550339684931215626033934662745271494)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): PaymentPoint: (*btcec.PublicKey)(0xc420598c60)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc42058ae40)(71515309262329317174107715948358140847895131434260610761037573261806344619567),
DEBUG:lnd(16331): Y: (*big.Int)(0xc42058ae60)(104399518208792882982614915139274112819869273422951583696608967146771639255448)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4205992c0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc42058b740)(23134069704906443548989604953755164970537941375758373238726967144830971033551),
DEBUG:lnd(16331): Y: (*big.Int)(0xc42058b760)(95237229776493446796121830968910538455830265151764498558141858925225039591342)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): HtlcPoint: (*btcec.PublicKey)(0xc4205985d0)({
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)(0xc42058a540)(80101644820510984377085390610405250733423796523232260698281567215255668568325),
DEBUG:lnd(16331): Y: (*big.Int)(0xc42058a560)(89355123317807015579771747306540618986268251899116740712583392460716236910906)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): FirstCommitmentPoint: (*btcec.PublicKey)(0xc4205aa800)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4205aa780)(11216154345553844071498813068517201682477164086015603567245168921111001608489),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4205aa7a0)(66353456929956151018725012028920911338691976157026245190449424078057088538638)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelFlags: (lnwire.FundingFlag) 1
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16332):2017-11-29 18:08:39.798 [DBG] PEER: Received MsgOpenChannel(temp_chan_id=3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0, chain=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, csv=4, amt=0.1 BTC, push_amt=0 mSAT, reserve=0.001 BTC, flags=1) from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:08:39.798 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.OpenChannel)(0xc42030e420)({
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): PendingChannelID: ([32]uint8) (len=32 cap=32) {
DEBUG:lnd(16332): 00000000 3c c2 a0 ee d2 ae e9 09 7c 92 a5 35 3a 60 16 18 |<.......|..5:`..|
DEBUG:lnd(16332): 00000010 04 f7 59 63 81 d1 84 2f 00 cb b8 07 92 0d b4 f0 |..Yc.../........|
DEBUG:lnd(16332): },
DEBUG:lnd(16332): FundingAmount: (btcutil.Amount) 0.1 BTC,
DEBUG:lnd(16332): PushAmount: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): DustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): MaxValueInFlight: (lnwire.MilliSatoshi) 9900000000 mSAT,
DEBUG:lnd(16332): ChannelReserve: (btcutil.Amount) 0.001 BTC,
DEBUG:lnd(16332): HtlcMinimum: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): FeePerKiloWeight: (uint32) 6000,
DEBUG:lnd(16332): CsvDelay: (uint16) 4,
DEBUG:lnd(16332): MaxAcceptedHTLCs: (uint16) 483,
DEBUG:lnd(16332): FundingKey: (*btcec.PublicKey)(0xc4204f7440)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4204f74c0)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4204f7580)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RevocationPoint: (*btcec.PublicKey)(0xc4204f78c0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4204f78e0)(47260538874253385152451366940044082314823477815354488112848471934141173470881),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4204f7900)(67675183350702726774453106100725309328856550339684931215626033934662745271494)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): PaymentPoint: (*btcec.PublicKey)(0xc4204f79c0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4204f79e0)(71515309262329317174107715948358140847895131434260610761037573261806344619567),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4204f7a00)(104399518208792882982614915139274112819869273422951583696608967146771639255448)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4204f7a80)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4204f7aa0)(23134069704906443548989604953755164970537941375758373238726967144830971033551),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4204f7ac0)(95237229776493446796121830968910538455830265151764498558141858925225039591342)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): HtlcPoint: (*btcec.PublicKey)(0xc4204f7b40)({
DEBUG:lnd(16332): Curve: (*btcec.KoblitzCurve)(0x14eb520)({
DEBUG:lnd(16332): CurveParams: (*elliptic.CurveParams)(0xc420018ec0)({
DEBUG:lnd(16332): P: (*big.Int)(0xc42000d120)(115792089237316195423570985008687907853269984665640564039457584007908834671663),
DEBUG:lnd(16332): N: (*big.Int)(0xc42000d160)(115792089237316195423570985008687907852837564279074904382605163141518161494337),
DEBUG:lnd(16332): B: (*big.Int)(0xc42000d1a0)(7),
DEBUG:lnd(16332): Gx: (*big.Int)(0xc42000d1e0)(55066263022277343669578718895168534326250603453777594175500187360389116729240),
DEBUG:lnd(16332): Gy: (*big.Int)(0xc42000d220)(32670510020758816978083085130507043184471273380659243275938904335757337482424),
DEBUG:lnd(16332): BitSize: (int) 256,
DEBUG:lnd(16332): Name: (string) ""
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): q: (*big.Int)(0xc42000d260)(28948022309329048855892746252171976963317496166410141009864396001977208667916),
DEBUG:lnd(16332): H: (int) 1,
DEBUG:lnd(16332): halfOrder: (*big.Int)(0xc42000d2c0)(57896044618658097711785492504343953926418782139537452191302581570759080747168),
DEBUG:lnd(16332): byteSize: (int) 32,
DEBUG:lnd(16332): (btcec.fieldVal) 0000000000000000000000000000000000000000000000000000000000000000
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): lambda: (*big.Int)(0xc42000db80)(37718080363155996902926221483475020450927657555482586988616620542887997980018),
DEBUG:lnd(16332): beta: (*btcec.fieldVal)(0xc420015110)(7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee),
DEBUG:lnd(16332): a1: (*big.Int)(0xc42000dbe0)(64502973549206556628585045361533709077),
DEBUG:lnd(16332): b1: (*big.Int)(0xc42000dc20)(-303414439467246543595250775667605759171),
DEBUG:lnd(16332): a2: (*big.Int)(0xc42000dc60)(367917413016453100223835821029139468248),
DEBUG:lnd(16332): b2: (*big.Int)(0xc42000dca0)(64502973549206556628585045361533709077)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): X: (*big.Int)(0xc4204f7b60)(80101644820510984377085390610405250733423796523232260698281567215255668568325),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4204f7b80)(89355123317807015579771747306540618986268251899116740712583392460716236910906)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): FirstCommitmentPoint: (*btcec.PublicKey)(0xc4204f7c00)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4204f7c20)(11216154345553844071498813068517201682477164086015603567245168921111001608489),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4204f7c40)(66353456929956151018725012028920911338691976157026245190449424078057088538638)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChannelFlags: (lnwire.FundingFlag) 1
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:41.582 [INF] FNDG: Recv'd fundingRequest(amt=0.1 BTC, push=0 mSAT, delay=4, pendingId=3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0) from peer(038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088)
DEBUG:lnd(16332):2017-11-29 18:08:41.621 [INF] FNDG: Requiring 1 confirmations for pendingChan(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0): amt=0.1 BTC, push_amt=0 mSAT
DEBUG:lnd(16332):2017-11-29 18:08:41.621 [INF] FNDG: Sending fundingResp for pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0)
DEBUG:lnd(16332):2017-11-29 18:08:41.621 [DBG] FNDG: Remote party accepted commitment constraints: (channeldb.ChannelConstraints) {
DEBUG:lnd(16332): DustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): MaxPendingAmount: (lnwire.MilliSatoshi) 9900000000 mSAT,
DEBUG:lnd(16332): ChanReserve: (btcutil.Amount) 0.001 BTC,
DEBUG:lnd(16332): MinHTLC: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): MaxAcceptedHtlcs: (uint16) 483
DEBUG:lnd(16332):}
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:41.621 [INF] SRVR: Attempting to send msgs 1 to: 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16332):2017-11-29 18:08:41.622 [DBG] PEER: Sending MsgAcceptChannel(temp_chan_id=3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0, reserve=0.001 BTC, csv=4, num_confs=1) to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:08:41.622 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.AcceptChannel)(0xc4201b0000)({
DEBUG:lnd(16332): PendingChannelID: ([32]uint8) (len=32 cap=32) {
DEBUG:lnd(16332): 00000000 3c c2 a0 ee d2 ae e9 09 7c 92 a5 35 3a 60 16 18 |<.......|..5:`..|
DEBUG:lnd(16332): 00000010 04 f7 59 63 81 d1 84 2f 00 cb b8 07 92 0d b4 f0 |..Yc.../........|
DEBUG:lnd(16332): },
DEBUG:lnd(16332): DustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): MaxValueInFlight: (lnwire.MilliSatoshi) 9900000000 mSAT,
DEBUG:lnd(16332): ChannelReserve: (btcutil.Amount) 0.001 BTC,
DEBUG:lnd(16332): HtlcMinimum: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): MinAcceptDepth: (uint32) 1,
DEBUG:lnd(16332): CsvDelay: (uint16) 4,
DEBUG:lnd(16332): MaxAcceptedHTLCs: (uint16) 483,
DEBUG:lnd(16332): FundingKey: (*btcec.PublicKey)(0xc420496a80)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc42018c220)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16332): Y: (*big.Int)(0xc42018c240)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RevocationPoint: (*btcec.PublicKey)(0xc4201ab050)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc42018cda0)(92121146005160905819276299505105280358933360149286483621134480560322052973190),
DEBUG:lnd(16332): Y: (*big.Int)(0xc42018cdc0)(86569063158368693872941129503661619100533725299013361772271148593200068795431)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): PaymentPoint: (*btcec.PublicKey)(0xc4202d6510)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4204934a0)(95797376313103079844078038373606714335944994029592246639471245328656698738315),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420493500)(69327864622321437788850516175290825807976789559911199756288444009329083110597)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4202d6cf0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4204f6da0)(103402517659244502236868112811727121406533892123642163870932846337464592776624),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4204f6dc0)(96404205729869977173609656540155691328226034874615538231795392796525969141069)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): HtlcPoint: (*btcec.PublicKey)(0xc4201abb00)({
DEBUG:lnd(16332): Curve: (*btcec.KoblitzCurve)(0x14eb520)({
DEBUG:lnd(16332): CurveParams: (*elliptic.CurveParams)(0xc420018ec0)({
DEBUG:lnd(16332): P: (*big.Int)(0xc42000d120)(115792089237316195423570985008687907853269984665640564039457584007908834671663),
DEBUG:lnd(16332): N: (*big.Int)(0xc42000d160)(115792089237316195423570985008687907852837564279074904382605163141518161494337),
DEBUG:lnd(16332): B: (*big.Int)(0xc42000d1a0)(7),
DEBUG:lnd(16332): Gx: (*big.Int)(0xc42000d1e0)(55066263022277343669578718895168534326250603453777594175500187360389116729240),
DEBUG:lnd(16332): Gy: (*big.Int)(0xc42000d220)(32670510020758816978083085130507043184471273380659243275938904335757337482424),
DEBUG:lnd(16332): BitSize: (int) 256,
DEBUG:lnd(16332): Name: (string) ""
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): q: (*big.Int)(0xc42000d260)(28948022309329048855892746252171976963317496166410141009864396001977208667916),
DEBUG:lnd(16332): H: (int) 1,
DEBUG:lnd(16332): halfOrder: (*big.Int)(0xc42000d2c0)(57896044618658097711785492504343953926418782139537452191302581570759080747168),
DEBUG:lnd(16332): byteSize: (int) 32,
DEBUG:lnd(16332): (btcec.fieldVal) 0000000000000000000000000000000000000000000000000000000000000000
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): lambda: (*big.Int)(0xc42000db80)(37718080363155996902926221483475020450927657555482586988616620542887997980018),
DEBUG:lnd(16332): beta: (*btcec.fieldVal)(0xc420015110)(7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee),
DEBUG:lnd(16332): a1: (*big.Int)(0xc42000dbe0)(64502973549206556628585045361533709077),
DEBUG:lnd(16332): b1: (*big.Int)(0xc42000dc20)(-303414439467246543595250775667605759171),
DEBUG:lnd(16332): a2: (*big.Int)(0xc42000dc60)(367917413016453100223835821029139468248),
DEBUG:lnd(16332): b2: (*big.Int)(0xc42000dca0)(64502973549206556628585045361533709077)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): X: (*big.Int)(0xc42018d700)(19814825509509527721955068898986306593247601259175379865347399673879493506053),
DEBUG:lnd(16332): Y: (*big.Int)(0xc42018d720)(23023132019651957233066867131143534149523524104636949014974319866264518966504)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): FirstCommitmentPoint: (*btcec.PublicKey)(0xc420262a40)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4202629c0)(69196622959812095225764607787494767034039124572566635914795032471703584977407),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4202629e0)(74672773453083336761008198565405084282505430939087963701121361892588718080930)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:42.856 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:08:43.354 [DBG] PEER: Received MsgAcceptChannel(temp_chan_id=3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0, reserve=0.001 BTC, csv=4, num_confs=1) from 127.0.0.1:16332
DEBUG:lnd(16332):2017-11-29 18:08:43.354 [DBG] RPCS: [listpeers] yielded [127.0.0.1:35740 127.0.0.1:16333] peers
DEBUG:lnd(16331):2017-11-29 18:08:43.354 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16331):2017-11-29 18:08:43.354 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16332] peers
DEBUG:lnd(16331):2017-11-29 18:08:43.354 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.AcceptChannel)(0xc42008a180)({
DEBUG:lnd(16331): PendingChannelID: ([32]uint8) (len=32 cap=32) {
DEBUG:lnd(16331): 00000000 3c c2 a0 ee d2 ae e9 09 7c 92 a5 35 3a 60 16 18 |<.......|..5:`..|
DEBUG:lnd(16331): 00000010 04 f7 59 63 81 d1 84 2f 00 cb b8 07 92 0d b4 f0 |..Yc.../........|
DEBUG:lnd(16331): },
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): MinAcceptDepth: (uint32) 1,
DEBUG:lnd(16331): CsvDelay: (uint16) 4,
DEBUG:lnd(16331): MaxAcceptedHTLCs: (uint16) 483,
DEBUG:lnd(16331): FundingKey: (*btcec.PublicKey)(0xc4202b43a0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202b43c0)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b43e0)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): RevocationPoint: (*btcec.PublicKey)(0xc4202b4480)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202b44e0)(92121146005160905819276299505105280358933360149286483621134480560322052973190),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b4500)(86569063158368693872941129503661619100533725299013361772271148593200068795431)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): PaymentPoint: (*btcec.PublicKey)(0xc4202b4660)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202b4680)(95797376313103079844078038373606714335944994029592246639471245328656698738315),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b46a0)(69327864622321437788850516175290825807976789559911199756288444009329083110597)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): DelayedPaymentPoint: (*btcec.PublicKey)(0xc4202b4740)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202b4760)(103402517659244502236868112811727121406533892123642163870932846337464592776624),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b4780)(96404205729869977173609656540155691328226034874615538231795392796525969141069)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): HtlcPoint: (*btcec.PublicKey)(0xc4202b48a0)({
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)(0xc4202b48e0)(19814825509509527721955068898986306593247601259175379865347399673879493506053),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b4900)(23023132019651957233066867131143534149523524104636949014974319866264518966504)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): FirstCommitmentPoint: (*btcec.PublicKey)(0xc4202b4980)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202b49a0)(69196622959812095225764607787494767034039124572566635914795032471703584977407),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b49c0)(74672773453083336761008198565405084282505430939087963701121361892588718080930)
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:44.355 [INF] RPCS: [listchannels] fetched 0 channels from DB
DEBUG:lnd(16331):2017-11-29 18:08:45.084 [INF] FNDG: Recv'd fundingResponse for pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0)
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:45 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:lnd(16331):2017-11-29 18:08:45.087 [INF] FNDG: pendingChan(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0): remote party proposes num_confs=1, csv_delay=4
DEBUG:lnd(16331):2017-11-29 18:08:45.088 [DBG] FNDG: Remote party accepted commitment constraints: (channeldb.ChannelConstraints) {
DEBUG:lnd(16331): DustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16331): MaxPendingAmount: (lnwire.MilliSatoshi) 9900000000 mSAT,
DEBUG:lnd(16331): ChanReserve: (btcutil.Amount) 0.001 BTC,
DEBUG:lnd(16331): MinHTLC: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): MaxAcceptedHtlcs: (uint16) 483
DEBUG:lnd(16331):}
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:45.088 [DBG] FNDG: Creating chan barrier for ChanID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16331):2017-11-29 18:08:45.088 [INF] FNDG: Generated ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) for pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0)
DEBUG:lnd(16331):2017-11-29 18:08:45.088 [INF] SRVR: Attempting to send msgs 1 to: 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16332):2017-11-29 18:08:45.088 [DBG] PEER: Received MsgFundingCreated(temp_chan_id=3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0, chan_point=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) from 127.0.0.1:35740
DEBUG:lnd(16331):2017-11-29 18:08:45.088 [DBG] PEER: Sending MsgFundingCreated(temp_chan_id=3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0, chan_point=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) to 127.0.0.1:16332
DEBUG:lnd(16332):2017-11-29 18:08:45.088 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.FundingCreated)(0xc42019cff0)({
DEBUG:lnd(16331):2017-11-29 18:08:45.088 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.FundingCreated)(0xc4202754f0)({
DEBUG:lnd(16332): PendingChannelID: ([32]uint8) (len=32 cap=32) {
DEBUG:lnd(16331): PendingChannelID: ([32]uint8) (len=32 cap=32) {
DEBUG:lnd(16332): 00000000 3c c2 a0 ee d2 ae e9 09 7c 92 a5 35 3a 60 16 18 |<.......|..5:`..|
DEBUG:lnd(16331): 00000000 3c c2 a0 ee d2 ae e9 09 7c 92 a5 35 3a 60 16 18 |<.......|..5:`..|
DEBUG:lnd(16332): 00000010 04 f7 59 63 81 d1 84 2f 00 cb b8 07 92 0d b4 f0 |..Yc.../........|
DEBUG:lnd(16331): 00000010 04 f7 59 63 81 d1 84 2f 00 cb b8 07 92 0d b4 f0 |..Yc.../........|
DEBUG:lnd(16332): },
DEBUG:lnd(16331): },
DEBUG:lnd(16332): FundingPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16331): FundingPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16332): CommitSig: (*btcec.Signature)(0xc4205921b0)({
DEBUG:lnd(16331): CommitSig: (*btcec.Signature)(0xc420562000)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420594200)(106933722927684245177269041592711162236632373731174302196369292159866007851491),
DEBUG:lnd(16331): R: (*big.Int)(0xc420564000)(106933722927684245177269041592711162236632373731174302196369292159866007851491),
DEBUG:lnd(16332): S: (*big.Int)(0xc420594220)(5300577632711301765253565567863665948376501501411665126890290141635943355700)
DEBUG:lnd(16331): S: (*big.Int)(0xc420564020)(5300577632711301765253565567863665948376501501411665126890290141635943355700)
DEBUG:lnd(16332): })
DEBUG:lnd(16331): })
DEBUG:lnd(16332):})
DEBUG:lnd(16331):})
DEBUG:lnd(16332):
DEBUG:lnd(16331):
DEBUG:lnd(16332):2017-11-29 18:08:45.088 [INF] FNDG: completing pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0) with ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0)
DEBUG:bitcoind:2017-11-29 17:08:45 keypool reserve 2300
DEBUG:bitcoind:2017-11-29 17:08:45 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [DBG] FNDG: Creating chan barrier for ChanID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [INF] FNDG: sending FundingSigned for pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0) over ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0)
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [INF] SRVR: Attempting to send msgs 1 to: 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [DBG] PEER: Sending MsgFundingSigned(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd) to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.FundingSigned)(0xc420220780)({
DEBUG:lnd(16332): ChanID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16332): CommitSig: (*btcec.Signature)(0xc420592ae0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420667360)(68248682046999203856822822163735161697331723761479951531134265810542139901049),
DEBUG:lnd(16332): S: (*big.Int)(0xc420667380)(23853060288071778307186926358844539270953733650733931377711284770358446464573)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16331):2017-11-29 18:08:45.111 [DBG] PEER: Received MsgFundingSigned(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd) from 127.0.0.1:16332
DEBUG:lnd(16332):
DEBUG:lnd(16331):2017-11-29 18:08:45.112 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.FundingSigned)(0xc420140ff0)({
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [INF] FNDG: Waiting for funding tx (bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733) to reach 1 confirmations
DEBUG:lnd(16331): ChanID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16331): CommitSig: (*btcec.Signature)(0xc420be3510)({
DEBUG:lnd(16331): R: (*big.Int)(0xc42055fd00)(68248682046999203856822822163735161697331723761479951531134265810542139901049),
DEBUG:lnd(16331): S: (*big.Int)(0xc42055fd20)(23853060288071778307186926358844539270953733650733931377711284770358446464573)
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [INF] NTFN: New confirmations subscription: txid=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733, numconfs=1
DEBUG:lnd(16331): })
DEBUG:bitcoind:2017-11-29 17:08:45 UpdateTip: new best=0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a height=1840 version=0x20000000 log2_work=11.846274 tx=2029 date='2017-11-29 17:08:45' progress=1.000000 cache=0.4MiB(2015txo)
DEBUG:lnd(16332):2017-11-29 18:08:45.111 [INF] NTFN: Attempting to trigger dispatch for bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733 from historical chain
DEBUG:lnd(16331):})
DEBUG:bitcoind:2017-11-29 17:08:45 AddToWallet 90a691f56c3d878c0e949517664866532dab1f873ba900d88a6059e45f041b00 new
DEBUG:lnd(16331):
DEBUG:bitcoind:2017-11-29 17:08:45 keypool keep 2300
DEBUG:lnd(16331):2017-11-29 18:08:45.132 [INF] LNWL: Broadcasting funding tx for ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): (*wire.MsgTx)(0xc420bea180)({
DEBUG:lnd(16331): Version: (int32) 1,
DEBUG:lnd(16331): TxIn: ([]*wire.TxIn) (len=1 cap=15) {
DEBUG:lnd(16331): (*wire.TxIn)(0xc42027f2c0)({
DEBUG:lnd(16331): PreviousOutPoint: (wire.OutPoint) 39c2073fcd01b429a75914e3cb656fd5456a5cf1da704454ce73e3f9d6cf817d:0,
DEBUG:lnd(16331): SignatureScript: ([]uint8) (len=23 cap=500) {
DEBUG:lnd(16331): 00000000 16 00 14 a3 cf 8c a9 9c d6 a5 2b b2 68 fa df ad |..........+.h...|
DEBUG:lnd(16331): 00000010 c3 ed 38 ff e3 f1 e4 |..8....|
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Witness: (wire.TxWitness) (len=2 cap=2) {
DEBUG:lnd(16331): ([]uint8) (len=72 cap=144) {
DEBUG:lnd(16331): 00000000 30 45 02 21 00 e0 41 af a9 5c f2 8f a8 66 24 15 |0E.!..A..\...f$.|
DEBUG:lnd(16331): 00000010 ed 4e 16 26 3f db 24 53 06 50 3c 1f d0 af e5 3a |.N.&?.$S.P<....:|
DEBUG:lnd(16331): 00000020 f7 35 81 78 45 02 20 3d 79 81 87 bd 15 f9 ed 14 |.5.xE. =y.......|
DEBUG:lnd(16331): 00000030 e6 d7 9e fe ad 6c 9f 75 e5 a1 24 77 69 c2 e0 50 |.....l.u..$wi..P|
DEBUG:lnd(16331): 00000040 41 5e 4d 27 19 d2 51 01 |A^M'..Q.|
DEBUG:lnd(16331): },
DEBUG:lnd(16331): ([]uint8) (len=33 cap=33) {
DEBUG:lnd(16331): 00000000 03 86 65 9b 49 63 ef 2f 06 54 7f 8b 40 cb d4 44 |..e.Ic./.T..@..D|
DEBUG:lnd(16331): 00000010 b0 36 7a c7 0d 50 5a f8 a7 be a5 24 af db 9d 9b |.6z..PZ....$....|
DEBUG:lnd(16331): 00000020 c6 |.|
DEBUG:lnd(16331): }
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Sequence: (uint32) 4294967295
DEBUG:lnd(16331): })
DEBUG:lnd(16331): },
DEBUG:lnd(16331): TxOut: ([]*wire.TxOut) (len=2 cap=15) {
DEBUG:lnd(16331): (*wire.TxOut)(0xc420be90e0)({
DEBUG:lnd(16331): Value: (int64) 10000000,
DEBUG:lnd(16331): PkScript: ([]uint8) (len=34 cap=500) {
DEBUG:lnd(16331): 00000000 00 20 ba 55 fb 0f 90 49 b6 3f 6c 35 2e e8 c1 4a |. .U...I.?l5...J|
DEBUG:lnd(16331): 00000010 f9 ea 3a d7 47 56 8e 98 11 d9 34 b9 18 4b 5d 17 |..:.GV....4..K].|
DEBUG:lnd(16331): 00000020 e6 cf |..|
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): (*wire.TxOut)(0xc4206f7660)({
DEBUG:lnd(16331): Value: (int64) 29995782,
DEBUG:lnd(16331): PkScript: ([]uint8) (len=22 cap=500) {
DEBUG:lnd(16331): 00000000 00 14 c7 f5 d8 9e 04 12 5f 30 c7 f4 0b 37 2f 9f |........_0...7/.|
DEBUG:lnd(16331): 00000010 63 09 c3 7b 8e 8a |c..{..|
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331): },
DEBUG:lnd(16331): LockTime: (uint32) 0
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:45.134 [INF] FNDG: Finalizing pendingID(3cc2a0eed2aee9097c92a5353a60161804f7596381d1842f00cbb807920db4f0) over ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), waiting for channel open on-chain
DEBUG:lnd(16331):2017-11-29 18:08:45.135 [INF] LNWL: Inserting unconfirmed transaction bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733
DEBUG:lnd(16331):2017-11-29 18:08:45.136 [INF] FNDG: Waiting for funding tx (bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733) to reach 1 confirmations
DEBUG:lnd(16331):2017-11-29 18:08:45.136 [INF] NTFN: New confirmations subscription: txid=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733, numconfs=1
DEBUG:lnd(16331):2017-11-29 18:08:45.136 [INF] NTFN: Attempting to trigger dispatch for bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733 from historical chain
DEBUG:lnd(16331):2017-11-29 18:08:45.136 [DBG] LNWL: Marked address tb1qcl6a38syzf0np3l5pvmjl8mrp8phhr52dxk4cc used
DEBUG:lnd(16331):2017-11-29 18:08:45.136 [TRC] RPCS: [openchannel] sending update: chan_pending:<txid:"3\307\2078YY\013\255\313\240\202\246'\336&\261\336_2\236\364z\325\377\036\344udb\030\"\275" >
DEBUG:lnd(16331):2017-11-29 18:08:45.138 [WRN] NTFN: unable to query for txid(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733): json: cannot unmarshal string into Go struct field Vin.txinwitness of type []string
Waiting for node to learn about 0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a' in the logs
DEBUG:lnd(16331):2017-11-29 18:08:45.145 [DBG] LNWL: Marked address tb1qcl6a38syzf0np3l5pvmjl8mrp8phhr52dxk4cc used
DEBUG:proc:2017-11-29 18:08:45.216 [INF] BMGR: Processed 2 blocks in the last 10.37s (3 transactions, height 1840, 2017-11-29 18:08:45 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:08:45.218 [INF] CRTR: Pruning channel graph using block 0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a (height=1840)
DEBUG:lnd(16331):2017-11-29 18:08:45.218 [INF] CRTR: Pruning channel graph using block 0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a (height=1840)
DEBUG:lnd(16332):2017-11-29 18:08:45.218 [INF] NTFN: New block: height=1840, sha=0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a
DEBUG:lnd(16331):2017-11-29 18:08:45.219 [INF] NTFN: New block: height=1840, sha=0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a' in logs
Waiting for node to learn about 0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a' in logs
DEBUG:lnd(16332):2017-11-29 18:08:45.237 [INF] CRTR: Block 0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a (height=1840) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:45.240 [INF] CRTR: Block 0e559448d9ba0d5572724c36f7534f660fc0937b0d54d5dba2f396ea4ca5468a (height=1840) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:46.238 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:46 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:46 keypool reserve 2301
DEBUG:bitcoind:2017-11-29 17:08:46 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:08:46 UpdateTip: new best=301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe height=1841 version=0x20000000 log2_work=11.847057 tx=2030 date='2017-11-29 17:08:46' progress=1.000000 cache=0.4MiB(2016txo)
DEBUG:bitcoind:2017-11-29 17:08:46 AddToWallet a23c799eb1686e4aeea2756f13fc7f13fc2c84b100b81c9775015ade1331f428 new
DEBUG:bitcoind:2017-11-29 17:08:46 keypool keep 2301
DEBUG:lnd(16331):2017-11-29 18:08:46.275 [INF] CRTR: Pruning channel graph using block 301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe (height=1841)
DEBUG:lnd(16332):2017-11-29 18:08:46.275 [INF] CRTR: Pruning channel graph using block 301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe (height=1841)
DEBUG:lnd(16331):2017-11-29 18:08:46.276 [INF] NTFN: New block: height=1841, sha=301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe
DEBUG:lnd(16332):2017-11-29 18:08:46.276 [INF] NTFN: New block: height=1841, sha=301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe
DEBUG:lnd(16331):2017-11-29 18:08:46.290 [INF] CRTR: Block 301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe (height=1841) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:08:46.293 [INF] CRTR: Block 301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe (height=1841) closed 0 channels
Waiting for node to learn about 301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe' in logs
Waiting for node to learn about 301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=301b76551e671077db98e95277ca06f18749328456c9cfd8b366f1799647b5fe' in logs
DEBUG:lnd(16331):2017-11-29 18:08:47.306 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:47 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:47 keypool reserve 2302
DEBUG:bitcoind:2017-11-29 17:08:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:08:47 UpdateTip: new best=42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8 height=1842 version=0x20000000 log2_work=11.84784 tx=2031 date='2017-11-29 17:08:47' progress=1.000000 cache=0.4MiB(2017txo)
DEBUG:bitcoind:2017-11-29 17:08:47 AddToWallet 6425456e348d6d8863ae916ba71494d50ec2dfef6da8dcc301ebcc06683b51f9 new
DEBUG:bitcoind:2017-11-29 17:08:47 keypool keep 2302
Waiting for node to learn about 42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8' in the logs
DEBUG:lnd(16332):2017-11-29 18:08:47.435 [INF] CRTR: Pruning channel graph using block 42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8 (height=1842)
DEBUG:lnd(16331):2017-11-29 18:08:47.436 [INF] CRTR: Pruning channel graph using block 42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8 (height=1842)
DEBUG:lnd(16332):2017-11-29 18:08:47.437 [INF] NTFN: New block: height=1842, sha=42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8
DEBUG:lnd(16331):2017-11-29 18:08:47.437 [INF] NTFN: New block: height=1842, sha=42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8' in logs
Waiting for node to learn about 42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8' in logs
DEBUG:lnd(16332):2017-11-29 18:08:47.452 [INF] CRTR: Block 42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8 (height=1842) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:47.455 [INF] CRTR: Block 42c0ef7acba6c20471dd8aaba7a55ccaa4d30947cf4c9a54d8c09d33e5c6a5c8 (height=1842) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:48.454 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:48 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:48 keypool reserve 2303
DEBUG:bitcoind:2017-11-29 17:08:48 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:08:48 UpdateTip: new best=44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49 height=1843 version=0x20000000 log2_work=11.848623 tx=2032 date='2017-11-29 17:08:48' progress=1.000000 cache=0.4MiB(2018txo)
DEBUG:bitcoind:2017-11-29 17:08:48 AddToWallet 1bb10f963b573cf431333ba31b5338cb243d48a66b94a4bbe5d1abba84df2439 new
DEBUG:bitcoind:2017-11-29 17:08:48 keypool keep 2303
Waiting for node to learn about 44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49' in the logs
DEBUG:lnd(16332):2017-11-29 18:08:48.586 [INF] CRTR: Pruning channel graph using block 44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49 (height=1843)
DEBUG:lnd(16331):2017-11-29 18:08:48.586 [INF] CRTR: Pruning channel graph using block 44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49 (height=1843)
DEBUG:lnd(16331):2017-11-29 18:08:48.587 [INF] NTFN: New block: height=1843, sha=44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49
DEBUG:lnd(16332):2017-11-29 18:08:48.588 [INF] NTFN: New block: height=1843, sha=44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49' in logs
Waiting for node to learn about 44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49' in logs
DEBUG:lnd(16331):2017-11-29 18:08:48.598 [INF] CRTR: Block 44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49 (height=1843) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:08:48.598 [INF] CRTR: Block 44c031f40f7cf14d9dd76b2628b941b58baffc2ee0dc5c2fdf11990b5e2a9e49 (height=1843) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:49.605 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:49 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:49 keypool reserve 2304
DEBUG:bitcoind:2017-11-29 17:08:49 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:08:49 UpdateTip: new best=7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5 height=1844 version=0x20000000 log2_work=11.849405 tx=2033 date='2017-11-29 17:08:49' progress=1.000000 cache=0.4MiB(2019txo)
DEBUG:bitcoind:2017-11-29 17:08:49 AddToWallet b41464ab26a518762db0c1b2a7db01a1676c28ec3841a1ac63ea3db05b2c4e95 new
DEBUG:bitcoind:2017-11-29 17:08:49 keypool keep 2304
Waiting for node to learn about 7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5' in the logs
DEBUG:lnd(16331):2017-11-29 18:08:49.748 [INF] CRTR: Pruning channel graph using block 7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5 (height=1844)
DEBUG:lnd(16331):2017-11-29 18:08:49.748 [INF] NTFN: New block: height=1844, sha=7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5
DEBUG:lnd(16332):2017-11-29 18:08:49.748 [INF] CRTR: Pruning channel graph using block 7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5 (height=1844)
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5' in logs
Waiting for node to learn about 7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5' in the logs
DEBUG:lnd(16332):2017-11-29 18:08:49.749 [INF] NTFN: New block: height=1844, sha=7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5' in logs
DEBUG:lnd(16331):2017-11-29 18:08:49.764 [INF] CRTR: Block 7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5 (height=1844) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:08:49.774 [INF] CRTR: Block 7b7704ae5fde83897b33716f2862b70b8c6ca1fe7160bc56e87910907fe2bcc5 (height=1844) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:50.763 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:50 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:50 keypool reserve 2305
DEBUG:bitcoind:2017-11-29 17:08:50 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:08:50 UpdateTip: new best=251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d height=1845 version=0x20000000 log2_work=11.850187 tx=2034 date='2017-11-29 17:08:50' progress=1.000000 cache=0.4MiB(2020txo)
DEBUG:bitcoind:2017-11-29 17:08:50 AddToWallet f90e792f8ce509da0ba7225f5a08278e5ffebb74ea5b5c268614ec383d5a65d0 new
DEBUG:lnd(16332):2017-11-29 18:08:50.786 [INF] CRTR: Pruning channel graph using block 251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d (height=1845)
DEBUG:lnd(16331):2017-11-29 18:08:50.787 [INF] CRTR: Pruning channel graph using block 251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d (height=1845)
DEBUG:lnd(16332):2017-11-29 18:08:50.787 [INF] NTFN: New block: height=1845, sha=251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d
DEBUG:lnd(16331):2017-11-29 18:08:50.787 [INF] NTFN: New block: height=1845, sha=251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d
DEBUG:bitcoind:2017-11-29 17:08:50 keypool keep 2305
DEBUG:lnd(16332):2017-11-29 18:08:50.798 [INF] CRTR: Block 251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d (height=1845) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:50.802 [INF] CRTR: Block 251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d (height=1845) closed 0 channels
Waiting for node to learn about 251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d' in logs
Waiting for node to learn about 251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=251a8a8925466b3371deed2d5b0b8cccca571dedaf743764cbe4020a943fcb9d' in logs
DEBUG:lnd(16331):2017-11-29 18:08:51.821 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:51 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:51 keypool reserve 2306
DEBUG:bitcoind:2017-11-29 17:08:51 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:08:51 UpdateTip: new best=79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0 height=1846 version=0x20000000 log2_work=11.850968 tx=2035 date='2017-11-29 17:08:51' progress=1.000000 cache=0.4MiB(2021txo)
DEBUG:bitcoind:2017-11-29 17:08:51 AddToWallet cb6ea7e509725ac44b0d2835fc03f7c54127eab012de2f3c2d5d2cd9772862c0 new
DEBUG:bitcoind:2017-11-29 17:08:51 keypool keep 2306
DEBUG:lnd(16332):2017-11-29 18:08:51.873 [INF] CRTR: Pruning channel graph using block 79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0 (height=1846)
DEBUG:lnd(16331):2017-11-29 18:08:51.874 [INF] CRTR: Pruning channel graph using block 79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0 (height=1846)
DEBUG:lnd(16332):2017-11-29 18:08:51.876 [INF] NTFN: New block: height=1846, sha=79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0
DEBUG:lnd(16331):2017-11-29 18:08:51.876 [INF] NTFN: New block: height=1846, sha=79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0
DEBUG:lnd(16332):2017-11-29 18:08:51.896 [INF] CRTR: Block 79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0 (height=1846) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:51.896 [INF] CRTR: Block 79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0 (height=1846) closed 0 channels
Waiting for node to learn about 79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0' in logs
Waiting for node to learn about 79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=79dc282590f37b1689b7a87f1ee994c0f117539d1f19c73c184430538e1c00c0' in logs
DEBUG:lnd(16331):2017-11-29 18:08:52.927 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:08:52 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:52 keypool reserve 2307
DEBUG:bitcoind:2017-11-29 17:08:52 CreateNewBlock(): total size: 521 block weight: 1646 txs: 1 fees: 4218 sigops 401
DEBUG:bitcoind:2017-11-29 17:08:52 UpdateTip: new best=4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515 height=1847 version=0x20000000 log2_work=11.851749 tx=2037 date='2017-11-29 17:08:52' progress=1.000000 cache=0.4MiB(2023txo)
DEBUG:bitcoind:2017-11-29 17:08:52 AddToWallet 4ab9eb435f63de50e35e9ccb8bdcdd2f9e34c867d110de218311eda0972403e1 new
DEBUG:bitcoind:2017-11-29 17:08:52 keypool keep 2307
DEBUG:lnd(16331):2017-11-29 18:08:52.948 [INF] LNWL: Marking unconfirmed transaction bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733 mined in block 1847
DEBUG:lnd(16332):2017-11-29 18:08:52.948 [INF] CRTR: Pruning channel graph using block 4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515 (height=1847)
DEBUG:lnd(16331):2017-11-29 18:08:52.948 [DBG] LNWL: Marked address tb1qcl6a38syzf0np3l5pvmjl8mrp8phhr52dxk4cc used
DEBUG:lnd(16332):2017-11-29 18:08:52.948 [INF] NTFN: New block: height=1847, sha=4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515
DEBUG:lnd(16332):2017-11-29 18:08:52.948 [INF] NTFN: Dispatching single conf notification, sha=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733, height=1847
DEBUG:lnd(16332):2017-11-29 18:08:52.948 [INF] FNDG: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) is now active: ChannelID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16331):2017-11-29 18:08:52.948 [INF] CRTR: Pruning channel graph using block 4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515 (height=1847)
DEBUG:lnd(16331):2017-11-29 18:08:52.949 [INF] NTFN: New block: height=1847, sha=4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515
DEBUG:lnd(16331):2017-11-29 18:08:52.949 [INF] NTFN: Dispatching single conf notification, sha=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733, height=1847
DEBUG:lnd(16331):2017-11-29 18:08:52.949 [INF] FNDG: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) is now active: ChannelID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16331):2017-11-29 18:08:52.969 [INF] CRTR: Block 4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515 (height=1847) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:08:52.972 [INF] CRTR: Block 4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515 (height=1847) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:08:52.972 [DBG] LNWL: Marked address tb1qcl6a38syzf0np3l5pvmjl8mrp8phhr52dxk4cc used
Waiting for node to learn about 4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515' in logs
Waiting for node to learn about 4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=4203bbb0720e20ce65e170dddacc5adb96345cf55ecf6649ec814d1cbd400515' in logs
DEBUG:lnd(16332):2017-11-29 18:08:53.026 [INF] NTFN: Cancelling epoch notification, epoch_id=3
DEBUG:lnd(16331):2017-11-29 18:08:53.029 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting local commitment: (*lnwallet.commitment)(0xc420152840)({
DEBUG:lnd(16331): height: (uint64) 0,
DEBUG:lnd(16331): isOurs: (bool) true,
DEBUG:lnd(16331): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16331): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16331): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): txn: (*wire.MsgTx)(0xc420bebc00)({
DEBUG:lnd(16331): Version: (int32) 2,
DEBUG:lnd(16331): TxIn: ([]*wire.TxIn) (len=1 cap=15) {
DEBUG:lnd(16331): (*wire.TxIn)(0xc420538240)({
DEBUG:lnd(16331): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16331): SignatureScript: ([]uint8) <nil>,
DEBUG:lnd(16331): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16331): Sequence: (uint32) 2159402431
DEBUG:lnd(16331): })
DEBUG:lnd(16331): },
DEBUG:lnd(16331): TxOut: ([]*wire.TxOut) (len=1 cap=15) {
DEBUG:lnd(16331): (*wire.TxOut)(0xc42055f2a0)({
DEBUG:lnd(16331): Value: (int64) 9995656,
DEBUG:lnd(16331): PkScript: ([]uint8) (len=34 cap=500) {
DEBUG:lnd(16331): 00000000 00 20 a8 f1 c4 b6 f1 43 6e ec ec 70 b1 54 87 e2 |. .....Cn..p.T..|
DEBUG:lnd(16331): 00000010 34 49 6e 36 3e 36 15 22 08 75 f3 63 e3 df ed 5c |4In6>6.".u.c...\|
DEBUG:lnd(16331): 00000020 f9 0c |..|
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16332):2017-11-29 18:08:53.033 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting local commitment: (*lnwallet.commitment)(0xc420148840)({
DEBUG:lnd(16331): },
DEBUG:lnd(16332): height: (uint64) 0,
DEBUG:lnd(16332): isOurs: (bool) true,
DEBUG:lnd(16332): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16332): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16332): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): txn: (*wire.MsgTx)(0xc4202e38c0)({
DEBUG:lnd(16332): Version: (int32) 2,
DEBUG:lnd(16332): TxIn: ([]*wire.TxIn) (len=1 cap=15) {
DEBUG:lnd(16332): (*wire.TxIn)(0xc420532300)({
DEBUG:lnd(16332): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16332): SignatureScript: ([]uint8) <nil>,
DEBUG:lnd(16332): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16332): Sequence: (uint32) 2159402431
DEBUG:lnd(16332): })
DEBUG:lnd(16332): },
DEBUG:lnd(16332): TxOut: ([]*wire.TxOut) (len=1 cap=15) {
DEBUG:lnd(16332): (*wire.TxOut)(0xc420595f20)({
DEBUG:lnd(16332): Value: (int64) 9995656,
DEBUG:lnd(16332): PkScript: ([]uint8) (len=22 cap=500) {
DEBUG:lnd(16332): 00000000 00 14 5b 35 ce 5f 9b af 31 69 a1 93 72 56 33 96 |..[5._..1i..rV3.|
DEBUG:lnd(16332): 00000010 a2 04 e1 49 bc 80 |...I..|
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332): },
DEBUG:lnd(16332): LockTime: (uint32) 538069230
DEBUG:lnd(16331): LockTime: (uint32) 538069230
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): sig: ([]uint8) (len=71 cap=71) {
DEBUG:lnd(16331): sig: ([]uint8) (len=71 cap=71) {
DEBUG:lnd(16332): 00000000 30 45 02 21 00 ec 6a 57 a3 fe 22 33 44 b3 14 08 |0E.!..jW.."3D...|
DEBUG:lnd(16331): 00000000 30 45 02 21 00 96 e3 62 98 40 19 fa 6a e8 b1 4e |0E.!...b.@..j..N|
DEBUG:lnd(16332): 00000010 73 c8 31 69 93 2b 45 fe ac de 59 0d c4 a3 89 5a |s.1i.+E...Y....Z|
DEBUG:lnd(16331): 00000010 6c ef b5 d3 40 a2 3c f3 38 86 53 83 40 11 9d f0 |l...@.<.8.S.@...|
DEBUG:lnd(16332): 00000020 fc be aa 11 e3 02 20 0b b8 05 47 93 11 bb 6d c0 |...... ...G...m.|
DEBUG:lnd(16331): 00000020 3b 71 05 84 79 02 20 34 bc 5a 8b 55 14 0c 3b c8 |;q..y. 4.Z.U..;.|
DEBUG:lnd(16332): 00000030 ad 47 e7 50 4c a1 9f c6 3a 0e cb 55 a4 12 70 74 |.G.PL...:..U..pt|
DEBUG:lnd(16331): 00000030 5f 40 aa 11 38 c1 dd 2f 6a 99 fc 9d 00 a3 0e fa |_@..8../j.......|
DEBUG:lnd(16332): 00000040 02 10 d0 4e 5c 55 34 |...N\U4|
DEBUG:lnd(16331): 00000040 8d 27 09 e5 1f 1e 3d |.'....=|
DEBUG:lnd(16332): },
DEBUG:lnd(16331): },
DEBUG:lnd(16332): ourBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): ourBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16332): theirBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16331): theirBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16331): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16332): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16331): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16332): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16331): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332): },
DEBUG:lnd(16331): },
DEBUG:lnd(16332): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332): }
DEBUG:lnd(16331): }
DEBUG:lnd(16332):})
DEBUG:lnd(16331):})
DEBUG:lnd(16332):
DEBUG:lnd(16331):
DEBUG:lnd(16332):2017-11-29 18:08:53.040 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting remote commitment: (*lnwallet.commitment)(0xc4206123c0)({
DEBUG:lnd(16331):2017-11-29 18:08:53.037 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting remote commitment: (*lnwallet.commitment)(0xc4205f0540)({
DEBUG:lnd(16332): height: (uint64) 0,
DEBUG:lnd(16331): height: (uint64) 0,
DEBUG:lnd(16332): isOurs: (bool) false,
DEBUG:lnd(16331): isOurs: (bool) false,
DEBUG:lnd(16332): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16331): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16332): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16331): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16332): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): txn: (*wire.MsgTx)(0xc4202e3900)({
DEBUG:lnd(16331): txn: (*wire.MsgTx)(0xc420bebc40)({
DEBUG:lnd(16332): Version: (int32) 2,
DEBUG:lnd(16331): Version: (int32) 2,
DEBUG:lnd(16332): TxIn: ([]*wire.TxIn) (len=1 cap=15) {
DEBUG:lnd(16331): TxIn: ([]*wire.TxIn) (len=1 cap=15) {
DEBUG:lnd(16332): (*wire.TxIn)(0xc420532300)({
DEBUG:lnd(16332): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16332): SignatureScript: ([]uint8) <nil>,
DEBUG:lnd(16331): (*wire.TxIn)(0xc420538240)({
DEBUG:lnd(16332): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16331): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16332): Sequence: (uint32) 2159402431
DEBUG:lnd(16332): })
DEBUG:lnd(16332): },
DEBUG:lnd(16331): SignatureScript: ([]uint8) <nil>,
DEBUG:lnd(16332): TxOut: ([]*wire.TxOut) (len=1 cap=15) {
DEBUG:lnd(16331): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16332): (*wire.TxOut)(0xc420595fe0)({
DEBUG:lnd(16331): Sequence: (uint32) 2159402431
DEBUG:lnd(16332): Value: (int64) 9995656,
DEBUG:lnd(16331): })
DEBUG:lnd(16332): PkScript: ([]uint8) (len=34 cap=500) {
DEBUG:lnd(16331): },
DEBUG:lnd(16332): 00000000 00 20 a8 f1 c4 b6 f1 43 6e ec ec 70 b1 54 87 e2 |. .....Cn..p.T..|
DEBUG:lnd(16331): TxOut: ([]*wire.TxOut) (len=1 cap=15) {
DEBUG:lnd(16332): 00000010 34 49 6e 36 3e 36 15 22 08 75 f3 63 e3 df ed 5c |4In6>6.".u.c...\|
DEBUG:lnd(16331): (*wire.TxOut)(0xc42055f360)({
DEBUG:lnd(16332): 00000020 f9 0c |..|
DEBUG:lnd(16331): Value: (int64) 9995656,
DEBUG:lnd(16332): }
DEBUG:lnd(16331): PkScript: ([]uint8) (len=22 cap=500) {
DEBUG:lnd(16332): })
DEBUG:lnd(16331): 00000000 00 14 5b 35 ce 5f 9b af 31 69 a1 93 72 56 33 96 |..[5._..1i..rV3.|
DEBUG:lnd(16332): },
DEBUG:lnd(16331): 00000010 a2 04 e1 49 bc 80 |...I..|
DEBUG:lnd(16332): LockTime: (uint32) 538069230
DEBUG:lnd(16331): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): })
DEBUG:lnd(16332): sig: ([]uint8) <nil>,
DEBUG:lnd(16331): },
DEBUG:lnd(16332): ourBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): LockTime: (uint32) 538069230
DEBUG:lnd(16332): theirBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16331): sig: ([]uint8) <nil>,
DEBUG:lnd(16332): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16331): ourBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16332): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16331): theirBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16332): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16332): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): }
DEBUG:lnd(16331): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332):})
DEBUG:lnd(16331): },
DEBUG:lnd(16332):
DEBUG:lnd(16331): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332):2017-11-29 18:08:53.041 [DBG] FNDG: ChannelID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd) is now fully confirmed!
DEBUG:lnd(16331): }
DEBUG:lnd(16332):2017-11-29 18:08:53.043 [DBG] FNDG: Sending FundingLocked for ChannelID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16331):})
DEBUG:lnd(16332):2017-11-29 18:08:53.041 [DBG] PEER: Received FundingLocked(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, next_point=027bb0c7812e44e15f37ff17d709e9f1acd89833d649ebbc8c93bbc1313eabc55c) from 127.0.0.1:35740
DEBUG:lnd(16331):
DEBUG:lnd(16332):2017-11-29 18:08:53.043 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.FundingLocked)(0xc4206b0720)({
DEBUG:lnd(16331):2017-11-29 18:08:53.037 [DBG] FNDG: ChannelID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd) is now fully confirmed!
DEBUG:lnd(16332): ChanID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16331):2017-11-29 18:08:53.039 [DBG] FNDG: Sending FundingLocked for ChannelID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16332): NextPerCommitmentPoint: (*btcec.PublicKey)(0xc4206a3940)({
DEBUG:lnd(16331):2017-11-29 18:08:53.040 [INF] SRVR: Attempting to send msgs 1 to: 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331):2017-11-29 18:08:53.040 [DBG] PEER: Sending FundingLocked(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, next_point=027bb0c7812e44e15f37ff17d709e9f1acd89833d649ebbc8c93bbc1313eabc55c) to 127.0.0.1:16332
DEBUG:lnd(16332): X: (*big.Int)(0xc4206a3960)(55946822389371593949537508460598467467163925311964029979468043733514171696476),
DEBUG:lnd(16331):2017-11-29 18:08:53.040 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.FundingLocked)(0xc420fde4b0)({
DEBUG:lnd(16332): Y: (*big.Int)(0xc4206a3980)(54379472092154389623224873990047407613984974680948324050399903583177379222636)
DEBUG:lnd(16331): ChanID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16332): })
DEBUG:lnd(16331): NextPerCommitmentPoint: (*btcec.PublicKey)(0xc420fe3060)({
DEBUG:lnd(16332):})
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332):
DEBUG:lnd(16331): X: (*big.Int)(0xc420fe2fe0)(55946822389371593949537508460598467467163925311964029979468043733514171696476),
DEBUG:lnd(16332):2017-11-29 18:08:53.043 [INF] SRVR: Attempting to send msgs 1 to: 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16331): Y: (*big.Int)(0xc420fe3000)(54379472092154389623224873990047407613984974680948324050399903583177379222636)
DEBUG:lnd(16332):2017-11-29 18:08:53.044 [DBG] PEER: Sending FundingLocked(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, next_point=02e917d06f5c6778aacc8bebad3b5fe6274c94673d14071b25e1f09cf155be45dc) to 127.0.0.1:35740
DEBUG:lnd(16331): })
DEBUG:lnd(16332):2017-11-29 18:08:53.044 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.FundingLocked)(0xc420f1c990)({
DEBUG:lnd(16332): ChanID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16332): NextPerCommitmentPoint: (*btcec.PublicKey)(0xc420f1bc80)({
DEBUG:lnd(16331):})
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331):
DEBUG:lnd(16332): X: (*big.Int)(0xc420f1bc00)(105430969767916480302100104307966250733274152905289090899295559733975923443164),
DEBUG:lnd(16331):2017-11-29 18:08:53.044 [DBG] PEER: Received FundingLocked(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, next_point=02e917d06f5c6778aacc8bebad3b5fe6274c94673d14071b25e1f09cf155be45dc) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:08:53.044 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.FundingLocked)(0xc420fb5ef0)({
DEBUG:lnd(16331): ChanID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16331): NextPerCommitmentPoint: (*btcec.PublicKey)(0xc420fd7940)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420fd7960)(105430969767916480302100104307966250733274152905289090899295559733975923443164),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420fd7980)(84404412085474514504197647761236646778350401357171100548597019934306246712908)
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:53.064 [INF] FNDG: Announcing ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), short_chan_id=(*lnwire.ShortChannelID)(0xc420671f34)({
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f1bc20)(84404412085474514504197647761236646778350401357171100548597019934306246712908)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:53.069 [INF] FNDG: Announcing ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), short_chan_id=(*lnwire.ShortChannelID)(0xc420593db0)({
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16331):2017-11-29 18:08:53.100 [INF] CRTR: New channel discovered! Link connects 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 and 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 with ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): chan_id=2030797976567808, capacity=0.1 BTC
DEBUG:lnd(16331):2017-11-29 18:08:53.101 [DBG] CRTR: Updating chain filter with new UTXO's: [bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0]
DEBUG:lnd(16332):2017-11-29 18:08:53.103 [INF] CRTR: New channel discovered! Link connects 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 and 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 with ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): chan_id=2030797976567808, capacity=0.1 BTC
DEBUG:lnd(16332):2017-11-29 18:08:53.104 [DBG] CRTR: Updating chain filter with new UTXO's: [bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0]
DEBUG:lnd(16331):2017-11-29 18:08:53.117 [INF] CRTR: New channel update applied: (*channeldb.ChannelEdgePolicy)(0xc42101ab40)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420563b60)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4210cd860)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16331): S: (*big.Int)(0xc4210cd900)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChannelID: (uint64) 2030797976567808,
DEBUG:lnd(16331): LastUpdate: (time.Time) 2017-11-29 18:08:53 +0100 CET,
DEBUG:lnd(16331): Flags: (uint16) 1,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16331): MinHTLC: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): FeeBaseMSat: (lnwire.MilliSatoshi) 1000 mSAT,
DEBUG:lnd(16331): FeeProportionalMillionths: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331): Node: (*channeldb.LightningNode)(<nil>),
DEBUG:lnd(16331): db: (*channeldb.DB)(<nil>)
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:53.118 [INF] DISC: Received new channel announcement: (*lnwire.AnnounceSignatures)(0xc420fbfac0)({
DEBUG:lnd(16331): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16332):2017-11-29 18:08:53.120 [INF] CRTR: New channel update applied: (*channeldb.ChannelEdgePolicy)(0xc420533d40)({
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420291ec0)({
DEBUG:lnd(16331): },
DEBUG:lnd(16332): R: (*big.Int)(0xc420f1bf60)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16331): NodeSignature: (*btcec.Signature)(0xc420563b90)({
DEBUG:lnd(16332): S: (*big.Int)(0xc42057c000)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16331): R: (*big.Int)(0xc4210cdb80)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): S: (*big.Int)(0xc4210cdc20)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16332): ChannelID: (uint64) 2030797976567808,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): LastUpdate: (time.Time) 2017-11-29 18:08:53 +0100 CET,
DEBUG:lnd(16331): BitcoinSignature: (*btcec.Signature)(0xc420563bb0)({
DEBUG:lnd(16332): Flags: (uint16) 0,
DEBUG:lnd(16331): R: (*big.Int)(0xc4210cdf40)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16331): S: (*big.Int)(0xc4210cdfe0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332): MinHTLC: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): })
DEBUG:lnd(16332): FeeBaseMSat: (lnwire.MilliSatoshi) 1000 mSAT,
DEBUG:lnd(16331):})
DEBUG:lnd(16332): FeeProportionalMillionths: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16331):
DEBUG:lnd(16332): Node: (*channeldb.LightningNode)(<nil>),
DEBUG:lnd(16332): db: (*channeldb.DB)(<nil>)
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:53.120 [INF] DISC: Received new channel announcement: (*lnwire.AnnounceSignatures)(0xc4205808c0)({
DEBUG:lnd(16332): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): NodeSignature: (*btcec.Signature)(0xc420291ef0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc42057c280)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16332): S: (*big.Int)(0xc42057c320)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSignature: (*btcec.Signature)(0xc420291f20)({
DEBUG:lnd(16332): R: (*big.Int)(0xc42057c640)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16332): S: (*big.Int)(0xc42057c6e0)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16331):2017-11-29 18:08:53.139 [INF] SRVR: Attempting to send msgs 1 to: 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16331):2017-11-29 18:08:53.139 [INF] DISC: Sent channel announcement proof for short_chan_id=2030797976567808 to remote peer: 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16331):2017-11-29 18:08:53.139 [INF] DISC: 1/2 of channel ann proof received for short_chan_id=2030797976567808, waiting for other half
DEBUG:lnd(16331):2017-11-29 18:08:53.139 [DBG] PEER: Sending AnnounceSignatures(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, short_chan_id=2030797976567808) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:08:53.139 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.AnnounceSignatures)(0xc420fbfac0)({
DEBUG:lnd(16331): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): NodeSignature: (*btcec.Signature)(0xc420563b90)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4210cdb80)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16331): S: (*big.Int)(0xc4210cdc20)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSignature: (*btcec.Signature)(0xc420563bb0)({
DEBUG:lnd(16332):2017-11-29 18:08:53.141 [DBG] PEER: Received AnnounceSignatures(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, short_chan_id=2030797976567808) from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:08:53.141 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.AnnounceSignatures)(0xc420f39b80)({
DEBUG:lnd(16332): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): NodeSignature: (*btcec.Signature)(0xc420f36300)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84360)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84380)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSignature: (*btcec.Signature)(0xc420f36310)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f843a0)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f843c0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16331): R: (*big.Int)(0xc4210cdf40)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332):2017-11-29 18:08:53.141 [INF] SRVR: Attempting to send msgs 1 to: 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16331): S: (*big.Int)(0xc4210cdfe0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332):2017-11-29 18:08:53.142 [INF] DISC: Sent channel announcement proof for short_chan_id=2030797976567808 to remote peer: 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16331): })
DEBUG:lnd(16332):2017-11-29 18:08:53.142 [INF] DISC: 1/2 of channel ann proof received for short_chan_id=2030797976567808, waiting for other half
DEBUG:lnd(16331):})
DEBUG:lnd(16332):2017-11-29 18:08:53.143 [INF] DISC: Received new channel announcement: (*lnwire.AnnounceSignatures)(0xc420f39b80)({
DEBUG:lnd(16331):
DEBUG:lnd(16332): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16331):2017-11-29 18:08:53.145 [DBG] PEER: Received AnnounceSignatures(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, short_chan_id=2030797976567808) from 127.0.0.1:16332
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331):2017-11-29 18:08:53.145 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.AnnounceSignatures)(0xc42103d540)({
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16332): NodeSignature: (*btcec.Signature)(0xc420f36300)({
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84360)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16331): },
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84380)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16331): NodeSignature: (*btcec.Signature)(0xc420fd8670)({
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): R: (*big.Int)(0xc421046200)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16332): BitcoinSignature: (*btcec.Signature)(0xc420f36310)({
DEBUG:lnd(16331): S: (*big.Int)(0xc421046220)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16332): R: (*big.Int)(0xc420f843a0)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f843c0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16331): BitcoinSignature: (*btcec.Signature)(0xc420fd8680)({
DEBUG:lnd(16332): })
DEBUG:lnd(16331): R: (*big.Int)(0xc421046240)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16332):})
DEBUG:lnd(16331): S: (*big.Int)(0xc421046260)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16332):
DEBUG:lnd(16331): })
DEBUG:lnd(16332):2017-11-29 18:08:53.143 [DBG] PEER: Sending AnnounceSignatures(chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, short_chan_id=2030797976567808) to 127.0.0.1:35740
DEBUG:lnd(16331):})
DEBUG:lnd(16332):2017-11-29 18:08:53.143 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.AnnounceSignatures)(0xc4205808c0)({
DEBUG:lnd(16331):
DEBUG:lnd(16332): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16331):2017-11-29 18:08:53.151 [INF] CRTR: Updated vertex data for node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331):2017-11-29 18:08:53.151 [INF] DISC: Received new channel announcement: (*lnwire.AnnounceSignatures)(0xc42103d540)({
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): ChannelID: (lnwire.ChannelID) (len=32 cap=32) 33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16332): NodeSignature: (*btcec.Signature)(0xc420291ef0)({
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16332): R: (*big.Int)(0xc42057c280)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16331): },
DEBUG:lnd(16332): S: (*big.Int)(0xc42057c320)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16331): NodeSignature: (*btcec.Signature)(0xc420fd8670)({
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): R: (*big.Int)(0xc421046200)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16332): BitcoinSignature: (*btcec.Signature)(0xc420291f20)({
DEBUG:lnd(16331): S: (*big.Int)(0xc421046220)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16332): R: (*big.Int)(0xc42057c640)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): S: (*big.Int)(0xc42057c6e0)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16331): BitcoinSignature: (*btcec.Signature)(0xc420fd8680)({
DEBUG:lnd(16332): })
DEBUG:lnd(16331): R: (*big.Int)(0xc421046240)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16331): S: (*big.Int)(0xc421046260)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:53.176 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting local commitment: (*lnwallet.commitment)(0xc42009a0c0)({
DEBUG:lnd(16331): height: (uint64) 0,
DEBUG:lnd(16331): isOurs: (bool) true,
DEBUG:lnd(16331): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16331): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16331): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): txn: (*wire.MsgTx)(0xc42014a1c0)({
DEBUG:lnd(16331): Version: (int32) 2,
DEBUG:lnd(16331): TxIn: ([]*wire.TxIn) (len=1 cap=1) {
DEBUG:lnd(16331): (*wire.TxIn)(0xc42023d2c0)({
DEBUG:lnd(16331): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16331): SignatureScript: ([]uint8) {
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16331): Sequence: (uint32) 2159402431
DEBUG:lnd(16331): })
DEBUG:lnd(16331): },
DEBUG:lnd(16331): TxOut: ([]*wire.TxOut) (len=1 cap=1) {
DEBUG:lnd(16331): (*wire.TxOut)(0xc42058a440)({
DEBUG:lnd(16331): Value: (int64) 9995656,
DEBUG:lnd(16331): PkScript: ([]uint8) (len=34 cap=34) {
DEBUG:lnd(16331): 00000000 00 20 a8 f1 c4 b6 f1 43 6e ec ec 70 b1 54 87 e2 |. .....Cn..p.T..|
DEBUG:lnd(16331): 00000010 34 49 6e 36 3e 36 15 22 08 75 f3 63 e3 df ed 5c |4In6>6.".u.c...\|
DEBUG:lnd(16331): 00000020 f9 0c |..|
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331): },
DEBUG:lnd(16331): LockTime: (uint32) 538069230
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): sig: ([]uint8) (len=71 cap=71) {
DEBUG:lnd(16332):2017-11-29 18:08:53.182 [INF] DISC: Fully valid channel proof for short_chan_id=2030797976567808 constructed, adding to next ann batch
DEBUG:lnd(16331): 00000000 30 45 02 21 00 96 e3 62 98 40 19 fa 6a e8 b1 4e |0E.!...b.@..j..N|
DEBUG:lnd(16331): 00000010 6c ef b5 d3 40 a2 3c f3 38 86 53 83 40 11 9d f0 |l...@.<.8.S.@...|
DEBUG:lnd(16331): 00000020 3b 71 05 84 79 02 20 34 bc 5a 8b 55 14 0c 3b c8 |;q..y. 4.Z.U..;.|
DEBUG:lnd(16331): 00000030 5f 40 aa 11 38 c1 dd 2f 6a 99 fc 9d 00 a3 0e fa |_@..8../j.......|
DEBUG:lnd(16331): 00000040 8d 27 09 e5 1f 1e 3d |.'....=|
DEBUG:lnd(16331): },
DEBUG:lnd(16331): ourBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16331): theirBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16331): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16331): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16331): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): },
DEBUG:lnd(16331): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:53.182 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting remote commitment: (*lnwallet.commitment)(0xc420152000)({
DEBUG:lnd(16331): height: (uint64) 0,
DEBUG:lnd(16331): isOurs: (bool) false,
DEBUG:lnd(16331): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16331): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16331): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16331): txn: (*wire.MsgTx)(0xc42014a200)({
DEBUG:lnd(16331): Version: (int32) 2,
DEBUG:lnd(16331): TxIn: ([]*wire.TxIn) (len=1 cap=1) {
DEBUG:lnd(16331): (*wire.TxIn)(0xc42023d320)({
DEBUG:lnd(16331): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16331): SignatureScript: ([]uint8) {
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16331): Sequence: (uint32) 2159402431
DEBUG:lnd(16331): })
DEBUG:lnd(16331): },
DEBUG:lnd(16331): TxOut: ([]*wire.TxOut) (len=1 cap=1) {
DEBUG:lnd(16331): (*wire.TxOut)(0xc42058a480)({
DEBUG:lnd(16331): Value: (int64) 9995656,
DEBUG:lnd(16331): PkScript: ([]uint8) (len=22 cap=22) {
DEBUG:lnd(16331): 00000000 00 14 5b 35 ce 5f 9b af 31 69 a1 93 72 56 33 96 |..[5._..1i..rV3.|
DEBUG:lnd(16331): 00000010 a2 04 e1 49 bc 80 |...I..|
DEBUG:lnd(16331): }
DEBUG:lnd(16331): })
DEBUG:lnd(16331): },
DEBUG:lnd(16331): LockTime: (uint32) 538069230
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): sig: ([]uint8) {
DEBUG:lnd(16331): },
DEBUG:lnd(16331): ourBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16331): theirBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16331): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16331): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16331): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16331): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): },
DEBUG:lnd(16331): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:08:53.185 [INF] NTFN: New spend subscription: utxo=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0
DEBUG:lnd(16331):2017-11-29 18:08:53.186 [INF] LNWL: Close observer for ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) active
DEBUG:lnd(16332):2017-11-29 18:08:53.194 [INF] CRTR: Updated vertex data for node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16331):2017-11-29 18:08:53.196 [INF] DISC: Fully valid channel proof for short_chan_id=2030797976567808 constructed, adding to next ann batch
DEBUG:lnd(16331):2017-11-29 18:08:53.207 [INF] PEER: New channel active ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) with peerId(1)
DEBUG:lnd(16331):2017-11-29 18:08:53.207 [DBG] BRAR: New contract detected, launching breachObserver
DEBUG:lnd(16331):2017-11-29 18:08:53.207 [DBG] BRAR: Breach observer for ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) started
DEBUG:lnd(16331):2017-11-29 18:08:53.207 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16331):2017-11-29 18:08:53.208 [INF] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) is starting
DEBUG:lnd(16331):2017-11-29 18:08:53.209 [INF] HSWC: Added channel link with chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, short_chan_id=((lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331):}
DEBUG:lnd(16331):)
DEBUG:lnd(16331):2017-11-29 18:08:53.209 [TRC] FNDG: Closing chan barrier for ChanID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16331):2017-11-29 18:08:53.209 [INF] HSWC: HTLC manager for ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) started, bandwidth=9995656000 mSAT
DEBUG:lnd(16332):2017-11-29 18:08:53.212 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting local commitment: (*lnwallet.commitment)(0xc420148f00)({
DEBUG:lnd(16332): height: (uint64) 0,
DEBUG:lnd(16332): isOurs: (bool) true,
DEBUG:lnd(16332): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16332): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16332): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): txn: (*wire.MsgTx)(0xc420fcef80)({
DEBUG:lnd(16332): Version: (int32) 2,
DEBUG:lnd(16332): TxIn: ([]*wire.TxIn) (len=1 cap=1) {
DEBUG:lnd(16332): (*wire.TxIn)(0xc42018bce0)({
DEBUG:lnd(16332): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16332): SignatureScript: ([]uint8) {
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16332): Sequence: (uint32) 2159402431
DEBUG:lnd(16332): })
DEBUG:lnd(16332): },
DEBUG:lnd(16332): TxOut: ([]*wire.TxOut) (len=1 cap=1) {
DEBUG:lnd(16332): (*wire.TxOut)(0xc420fcc520)({
DEBUG:lnd(16332): Value: (int64) 9995656,
DEBUG:lnd(16332): PkScript: ([]uint8) (len=22 cap=22) {
DEBUG:lnd(16332): 00000000 00 14 5b 35 ce 5f 9b af 31 69 a1 93 72 56 33 96 |..[5._..1i..rV3.|
DEBUG:lnd(16332): 00000010 a2 04 e1 49 bc 80 |...I..|
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332): },
DEBUG:lnd(16332): LockTime: (uint32) 538069230
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): sig: ([]uint8) (len=71 cap=71) {
DEBUG:lnd(16332): 00000000 30 45 02 21 00 ec 6a 57 a3 fe 22 33 44 b3 14 08 |0E.!..jW.."3D...|
DEBUG:lnd(16332): 00000010 73 c8 31 69 93 2b 45 fe ac de 59 0d c4 a3 89 5a |s.1i.+E...Y....Z|
DEBUG:lnd(16332): 00000020 fc be aa 11 e3 02 20 0b b8 05 47 93 11 bb 6d c0 |...... ...G...m.|
DEBUG:lnd(16332): 00000030 ad 47 e7 50 4c a1 9f c6 3a 0e cb 55 a4 12 70 74 |.G.PL...:..U..pt|
DEBUG:lnd(16332): 00000040 02 10 d0 4e 5c 55 34 |...N\U4|
DEBUG:lnd(16332): },
DEBUG:lnd(16332): ourBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): theirBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16332): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16332): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16332): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332): },
DEBUG:lnd(16332): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:53.219 [DBG] LNWL: ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0), starting remote commitment: (*lnwallet.commitment)(0xc42019a300)({
DEBUG:lnd(16332): height: (uint64) 0,
DEBUG:lnd(16332): isOurs: (bool) false,
DEBUG:lnd(16332): ourMessageIndex: (uint64) 0,
DEBUG:lnd(16332): theirMessageIndex: (uint64) 0,
DEBUG:lnd(16332): ourHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): theirHtlcIndex: (uint64) 0,
DEBUG:lnd(16332): txn: (*wire.MsgTx)(0xc420fcefc0)({
DEBUG:lnd(16332): Version: (int32) 2,
DEBUG:lnd(16332): TxIn: ([]*wire.TxIn) (len=1 cap=1) {
DEBUG:lnd(16332): (*wire.TxIn)(0xc42018bd40)({
DEBUG:lnd(16332): PreviousOutPoint: (wire.OutPoint) bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0,
DEBUG:lnd(16332): SignatureScript: ([]uint8) {
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Witness: (wire.TxWitness) <nil>,
DEBUG:lnd(16332): Sequence: (uint32) 2159402431
DEBUG:lnd(16332): })
DEBUG:lnd(16332): },
DEBUG:lnd(16332): TxOut: ([]*wire.TxOut) (len=1 cap=1) {
DEBUG:lnd(16332): (*wire.TxOut)(0xc420fcc580)({
DEBUG:lnd(16332): Value: (int64) 9995656,
DEBUG:lnd(16332): PkScript: ([]uint8) (len=34 cap=34) {
DEBUG:lnd(16332): 00000000 00 20 a8 f1 c4 b6 f1 43 6e ec ec 70 b1 54 87 e2 |. .....Cn..p.T..|
DEBUG:lnd(16332): 00000010 34 49 6e 36 3e 36 15 22 08 75 f3 63 e3 df ed 5c |4In6>6.".u.c...\|
DEBUG:lnd(16332): 00000020 f9 0c |..|
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332): },
DEBUG:lnd(16332): LockTime: (uint32) 538069230
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): sig: ([]uint8) {
DEBUG:lnd(16332): },
DEBUG:lnd(16332): ourBalance: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): theirBalance: (lnwire.MilliSatoshi) 9995656000 mSAT,
DEBUG:lnd(16332): fee: (btcutil.Amount) 0.00004344 BTC,
DEBUG:lnd(16332): feePerKw: (btcutil.Amount) 0.00006 BTC,
DEBUG:lnd(16332): dustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
DEBUG:lnd(16332): outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332): },
DEBUG:lnd(16332): incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:53.220 [INF] NTFN: New spend subscription: utxo=bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0
DEBUG:lnd(16332):2017-11-29 18:08:53.221 [INF] LNWL: Close observer for ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) active
DEBUG:lnd(16332):2017-11-29 18:08:53.228 [INF] PEER: New channel active ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) with peerId(1)
DEBUG:lnd(16332):2017-11-29 18:08:53.228 [DBG] BRAR: New contract detected, launching breachObserver
DEBUG:lnd(16332):2017-11-29 18:08:53.228 [INF] NTFN: New block epoch subscription
DEBUG:lnd(16332):2017-11-29 18:08:53.228 [DBG] BRAR: Breach observer for ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) started
DEBUG:lnd(16332):2017-11-29 18:08:53.229 [INF] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) is starting
DEBUG:lnd(16332):2017-11-29 18:08:53.229 [INF] HSWC: Added channel link with chan_id=33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd, short_chan_id=((lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332):}
DEBUG:lnd(16332):)
DEBUG:lnd(16332):2017-11-29 18:08:53.229 [TRC] FNDG: Closing chan barrier for ChanID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:lnd(16332):2017-11-29 18:08:53.229 [INF] HSWC: HTLC manager for ChannelPoint(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) started, bandwidth=0 mSAT
DEBUG:lnd(16331):2017-11-29 18:08:53.986 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:08:53.992 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 confirmed
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1847, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:08:54.029 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16332):2017-11-29 18:08:54.029 [DBG] RPCS: [listpeers] yielded [127.0.0.1:16333 127.0.0.1:35740] peers
DEBUG:lnd(16332):2017-11-29 18:08:54.032 [TRC] RPCS: [openchannel] request to peerid(2) allocation(us=10000000, them=0)
DEBUG:lnd(16332):2017-11-29 18:08:54.033 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16332):2017-11-29 18:08:54.033 [DBG] RPCS: [openchannel]: using fee of 25 sat/byte for funding tx
DEBUG:lnd(16332):2017-11-29 18:08:54.033 [INF] FNDG: Initiating fundingRequest(localAmt=0.1 BTC, remoteAmt=0 mSAT, capacity=0.1 BTC, chainhash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, addr=127.0.0.1:16333, dustLimit=0.00000573 BTC)
DEBUG:lnd(16332):2017-11-29 18:08:54.034 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16332):2017-11-29 18:08:54.034 [INF] LNWL: Performing funding tx coin selection using 6 sat/weight as fee rate
DEBUG:lnd(16332):2017-11-29 18:08:54.091 [INF] FNDG: Target commit tx sat/kw for pendingID(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66): 6000
DEBUG:lnd(16332):2017-11-29 18:08:54.091 [INF] FNDG: Starting funding workflow with 127.0.0.1:16333 for pendingID(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66)
DEBUG:lnd(16332):2017-11-29 18:08:54.092 [INF] SRVR: Attempting to send msgs 1 to: 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b
DEBUG:lnd(16332):2017-11-29 18:08:54.092 [DBG] PEER: Sending MsgOpenChannel(temp_chan_id=0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66, chain=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, csv=4, amt=0.1 BTC, push_amt=0 mSAT, reserve=0.001 BTC, flags=1) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:08:54.092 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.OpenChannel)(0xc42030f130)({
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): PendingChannelID: ([32]uint8) (len=32 cap=32) {
DEBUG:lnd(16332): 00000000 07 65 ef d1 06 59 59 45 33 d0 47 42 8d e8 76 8e |.e...YYE3.GB..v.|
DEBUG:lnd(16332): 00000010 a7 97 4f 0a cf 54 f2 5a 38 f9 5f f5 eb 8f bd 66 |..O..T.Z8._....f|
DEBUG:lnd(16332): },
DEBUG:lnd(16332): FundingAmount: (btcutil.Amount) 0.1 BTC,
DEBUG:lnd(16332): PushAmount: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): DustLimit: (btcutil.Amount) 0.00000573 BTC,
DEBUG:lnd(16332): MaxValueInFlight: (lnwire.MilliSatoshi) 9900000000 mSAT,
DEBUG:lnd(16332): ChannelReserve: (btcutil.Amount) 0.001 BTC,
DEBUG:lnd(16332): HtlcMinimum: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): FeePerKiloWeight: (uint32) 6000,
DEBUG:lnd(16332): CsvDelay: (uint16) 4,
DEBUG:lnd(16332): MaxAcceptedHTLCs: (uint16) 483,
DEBUG:lnd(16332): FundingKey: (*btcec.PublicKey)(0xc420ffd5f0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4210246c0)(6261109898554386507214828164563183157096671110554070185771490331027462907009),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4210246e0)(71257006561539060864353614818210252711475193955782173610894615916779141724005)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RevocationPoint: (*btcec.PublicKey)(0xc420ffdc80)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc421024fc0)(37253378341839918058076843350941370849670404503951630957331518425759507921521),
DEBUG:lnd(16332): Y: (*big.Int)(0xc421024fe0)(26223950088243407699952210485080075805558944502160723901897888795698306393537)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): PaymentPoint: (*btcec.PublicKey)(0xc42103e4e0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420fdfc00)(98240025750649382609824402155455922655292085570613907314190940513597710354293),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420fdfc20)(89915500623914987332962004211638343142918640218944951609087394175837719813525)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): DelayedPaymentPoint: (*btcec.PublicKey)(0xc42103eb70)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc421052500)(13094910221557673828787529062077196285625174182896974239726254741413134974932),
DEBUG:lnd(16332): Y: (*big.Int)(0xc421052520)(104025083774620180892816649929109644972869040803898185145819384087395927833926)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): HtlcPoint: (*btcec.PublicKey)(0xc420fbde30)({
DEBUG:lnd(16332): Curve: (*btcec.KoblitzCurve)(0x14eb520)({
DEBUG:lnd(16332): CurveParams: (*elliptic.CurveParams)(0xc420018ec0)({
DEBUG:lnd(16332): P: (*big.Int)(0xc42000d120)(115792089237316195423570985008687907853269984665640564039457584007908834671663),
DEBUG:lnd(16332): N: (*big.Int)(0xc42000d160)(115792089237316195423570985008687907852837564279074904382605163141518161494337),
DEBUG:lnd(16332): B: (*big.Int)(0xc42000d1a0)(7),
DEBUG:lnd(16332): Gx: (*big.Int)(0xc42000d1e0)(55066263022277343669578718895168534326250603453777594175500187360389116729240),
DEBUG:lnd(16332): Gy: (*big.Int)(0xc42000d220)(32670510020758816978083085130507043184471273380659243275938904335757337482424),
DEBUG:lnd(16332): BitSize: (int) 256,
DEBUG:lnd(16332): Name: (string) ""
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): q: (*big.Int)(0xc42000d260)(28948022309329048855892746252171976963317496166410141009864396001977208667916),
DEBUG:lnd(16332): H: (int) 1,
DEBUG:lnd(16332): halfOrder: (*big.Int)(0xc42000d2c0)(57896044618658097711785492504343953926418782139537452191302581570759080747168),
DEBUG:lnd(16332): byteSize: (int) 32,
DEBUG:lnd(16332): (btcec.fieldVal) 0000000000000000000000000000000000000000000000000000000000000000
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): },
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): lambda: (*big.Int)(0xc42000db80)(37718080363155996902926221483475020450927657555482586988616620542887997980018),
DEBUG:lnd(16332): beta: (*btcec.fieldVal)(0xc420015110)(7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee),
DEBUG:lnd(16332): a1: (*big.Int)(0xc42000dbe0)(64502973549206556628585045361533709077),
DEBUG:lnd(16332): b1: (*big.Int)(0xc42000dc20)(-303414439467246543595250775667605759171),
DEBUG:lnd(16332): a2: (*big.Int)(0xc42000dc60)(367917413016453100223835821029139468248),
DEBUG:lnd(16332): b2: (*big.Int)(0xc42000dca0)(64502973549206556628585045361533709077)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): X: (*big.Int)(0xc420fdf300)(7014007812267353673076546758785006742211394840234277678811397853767716331555),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420fdf320)(77581344516384374163084715562822115783914015991274520361990592410065257690433)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): FirstCommitmentPoint: (*btcec.PublicKey)(0xc4210535c0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc421053540)(68286678587910101500085610289374433119335223915133605679090122834008703092690),
DEBUG:lnd(16332): Y: (*big.Int)(0xc421053560)(80214101121977075681863028525430851841371195674004726791265449875146423440490)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChannelFlags: (lnwire.FundingFlag) 1
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:eclair(16333):2017-11-29 18:08:55,979 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - accepting a new channel to 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:bitcoind:2017-11-29 17:08:55 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:08:56 keypool reserve 2308
DEBUG:bitcoind:2017-11-29 17:08:56 keypool keep 2308
DEBUG:eclair(16333):2017-11-29 18:08:56,237 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a - setting repeating timer 'TickRefreshChannelUpdate'/1 day: TickRefreshChannelUpdate
DEBUG:eclair(16333):2017-11-29 18:08:56,259 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0000000000000000000000000000000000000000000000000000000000000000 - processing Event(INPUT_INIT_FUNDEE(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66,LocalParams(03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b,542,100000000000,100000,1000000,144,30,6f3092c2181c4e473685eeafe334ae79645f9dcbfa2bfbf135d073b04fd3661501,b6a8a62fccebc06dfe24ec5bbf805b50678d26fb87ee8b160b2ebdcf314a7690,66c609e320ceed45ef62456ec14616a94aacfbda88365760edc69555db765dfa,d38f50050a50e933e1fae5b18893f7705c3f7d84ac8092261bf8275eefbb620f,542d1a4981c5b9fb2727f067cb5429aa5cca19e1a0f74d6441861ca23d60c473,a914d6f75865a3a3d4d36c49ded841712540467b680187,1f86d5394bd3a45f5b22959f072ecdd960b75fc8da241eeda185eaafcbbf33dd,false,,08),Actor[akka://default/user/$i/server/$a#314255907],Init(,08)),Nothing) from Actor[akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9#859908900] in state WAIT_FOR_INIT_INTERNAL
DEBUG:eclair(16333):2017-11-29 18:08:56,262 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0000000000000000000000000000000000000000000000000000000000000000 - transition WAIT_FOR_INIT_INTERNAL -> WAIT_FOR_OPEN_CHANNEL
DEBUG:eclair(16333):2017-11-29 18:08:56,266 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66 - processing Event(OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66,10000000,0,573,9900000000,100000,0,6000,4,483,030dd7a9a1755ed50819adc380b1eca0ed494e1382fe7feb06d90dc9ad54136481,03525caa38cb5c9d9e5cacd3a1d597b092b322c1c910aea1a2b60e50edbe4dba71,03d931e255947a7469e3f5b6476e98c0d508bef0a07e9e29b95a327b91116b4775,021cf374df5d717f3b4b917b0ce21d4ffcf25ec5822a09983bbbc9405aca75bfd4,030f81c9a92eac52752dc2e694a5c04b0b4317b7a4e04f061970c0ff14fbd46023,0296f8e3f2486ce99c77e4b551fac1368c4dcc1aa09d6bf4c332abde7e679dc7d2,1),DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66,LocalParams(03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b,542,100000000000,100000,1000000,144,30,6f3092c2181c4e473685eeafe334ae79645f9dcbfa2bfbf135d073b04fd3661501,b6a8a62fccebc06dfe24ec5bbf805b50678d26fb87ee8b160b2ebdcf314a7690,66c609e320ceed45ef62456ec14616a94aacfbda88365760edc69555db765dfa,d38f50050a50e933e1fae5b18893f7705c3f7d84ac8092261bf8275eefbb620f,542d1a4981c5b9fb2727f067cb5429aa5cca19e1a0f74d6441861ca23d60c473,a914d6f75865a3a3d4d36c49ded841712540467b680187,1f86d5394bd3a45f5b22959f072ecdd960b75fc8da241eeda185eaafcbbf33dd,false,,08),Actor[akka://default/user/$i/server/$a#314255907],Init(,08)))) from Actor[akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9#859908900] in state WAIT_FOR_OPEN_CHANNEL
DEBUG:eclair(16333):2017-11-29 18:08:56,267 WARN fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66 - local/remote feerates are too different: remoteFeeratePerKw=6000 localFeeratePerKw=53760
DEBUG:eclair(16333):2017-11-29 18:08:56,268 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66 - transition WAIT_FOR_OPEN_CHANNEL -> CLOSED
DEBUG:lnd(16332):2017-11-29 18:08:56.270 [DBG] PEER: Received Error(chan_id=0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66, 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:16333
DEBUG:lnd(16332):2017-11-29 18:08:56.270 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.Error)(0xc420530000)({
DEBUG:lnd(16332): ChanID: (lnwire.ChannelID) (len=32 cap=32) 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66,
DEBUG:lnd(16332): Data: (lnwire.ErrorData) (len=88 cap=88) {
DEBUG:lnd(16332): 00000000 6c 6f 63 61 6c 2f 72 65 6d 6f 74 65 20 66 65 65 |local/remote fee|
DEBUG:lnd(16332): 00000010 72 61 74 65 73 20 61 72 65 20 74 6f 6f 20 64 69 |rates are too di|
DEBUG:lnd(16332): 00000020 66 66 65 72 65 6e 74 3a 20 72 65 6d 6f 74 65 46 |fferent: remoteF|
DEBUG:lnd(16332): 00000030 65 65 72 61 74 65 50 65 72 4b 77 3d 36 30 30 30 |eeratePerKw=6000|
DEBUG:lnd(16332): 00000040 20 6c 6f 63 61 6c 46 65 65 72 61 74 65 50 65 72 | localFeeratePer|
DEBUG:lnd(16332): 00000050 4b 77 3d 35 33 37 36 30 |Kw=53760|
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:08:56.270 [ERR] FNDG: Received funding error from 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b: unknown error
DEBUG:lnd(16332):2017-11-29 18:08:56.270 [INF] FNDG: Cancelling funding reservation for node_key=03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b, chan_id=0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66
DEBUG:lnd(16332):2017-11-29 18:08:56.270 [ERR] RPCS: unable to open channel to identityPub() nor peerID(2): rpc error: code = Code(208) desc = unknown error
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1847, 'port': 16333}, 'id': 'scala-client'}
Waiting for channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b to confirm
INFO:root:Calling peers with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 114
DEBUG:root:Method peers returned {'result': ['036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9'], 'id': 'scala-client'}
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1847, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:08:59.108 [TRC] RPCS: [listpeers] request
DEBUG:lnd(16332):2017-11-29 18:08:59.109 [DBG] RPCS: [listpeers] yielded [127.0.0.1:35740 127.0.0.1:16333] peers
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1847, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:00.142 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:00 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:00 keypool reserve 2309
DEBUG:bitcoind:2017-11-29 17:09:00 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:00 UpdateTip: new best=2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825 height=1848 version=0x20000000 log2_work=11.85253 tx=2038 date='2017-11-29 17:09:00' progress=1.000000 cache=0.4MiB(2024txo)
DEBUG:bitcoind:2017-11-29 17:09:00 AddToWallet 85964e973b3dc4c98ebb5965649e6dd23c39a6f194bf9644c7902fbdfbf0a0be new
DEBUG:bitcoind:2017-11-29 17:09:00 keypool keep 2309
DEBUG:proc:2017-11-29 18:09:00.176 [INF] BMGR: Processed 8 blocks in the last 14.95s (9 transactions, height 1848, 2017-11-29 18:09:00 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:09:00.176 [INF] CRTR: Pruning channel graph using block 2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825 (height=1848)
DEBUG:lnd(16332):2017-11-29 18:09:00.176 [INF] CRTR: Pruning channel graph using block 2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825 (height=1848)
DEBUG:lnd(16331):2017-11-29 18:09:00.177 [INF] NTFN: New block: height=1848, sha=2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825
DEBUG:lnd(16332):2017-11-29 18:09:00.177 [INF] NTFN: New block: height=1848, sha=2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825
DEBUG:lnd(16331):2017-11-29 18:09:00.177 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:00.177 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:00.186 [INF] CRTR: Block 2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825 (height=1848) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:00.186 [INF] CRTR: Block 2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825 (height=1848) closed 0 channels
Waiting for node to learn about 2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2ec7b7a26581d0bd1d0b2d2292abd663025d9212c9c10bd4ba93d8423d84a825' in logs
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1847, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:02.240 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:02 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:02 keypool reserve 2310
DEBUG:bitcoind:2017-11-29 17:09:02 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:02 UpdateTip: new best=6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171 height=1849 version=0x20000000 log2_work=11.85331 tx=2039 date='2017-11-29 17:09:02' progress=1.000000 cache=0.4MiB(2025txo)
DEBUG:bitcoind:2017-11-29 17:09:02 AddToWallet 8601f2c5993c03c3d13832dbdf9a31f351e18cd0bafc7b79cde822f1c0fffa13 new
DEBUG:bitcoind:2017-11-29 17:09:02 keypool keep 2310
Waiting for node to learn about 6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:02.377 [INF] CRTR: Pruning channel graph using block 6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171 (height=1849)
DEBUG:lnd(16332):2017-11-29 18:09:02.377 [INF] CRTR: Pruning channel graph using block 6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171 (height=1849)
DEBUG:lnd(16332):2017-11-29 18:09:02.378 [INF] NTFN: New block: height=1849, sha=6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171
DEBUG:lnd(16331):2017-11-29 18:09:02.378 [INF] NTFN: New block: height=1849, sha=6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171' in logs
DEBUG:lnd(16331):2017-11-29 18:09:02.379 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:02.379 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:02.387 [INF] CRTR: Block 6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171 (height=1849) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:02.390 [INF] CRTR: Block 6dbc305108eac563e33b1d0f10b5d10afb75f6ce7e780f04ab45a97a49907171 (height=1849) closed 0 channels
DEBUG:eclair(16333):2017-11-29 18:09:03,103 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66 - processing Event(CurrentBlockCount(1849),DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66,LocalParams(03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b,542,100000000000,100000,1000000,144,30,6f3092c2181c4e473685eeafe334ae79645f9dcbfa2bfbf135d073b04fd3661501,b6a8a62fccebc06dfe24ec5bbf805b50678d26fb87ee8b160b2ebdcf314a7690,66c609e320ceed45ef62456ec14616a94aacfbda88365760edc69555db765dfa,d38f50050a50e933e1fae5b18893f7705c3f7d84ac8092261bf8275eefbb620f,542d1a4981c5b9fb2727f067cb5429aa5cca19e1a0f74d6441861ca23d60c473,a914d6f75865a3a3d4d36c49ded841712540467b680187,1f86d5394bd3a45f5b22959f072ecdd960b75fc8da241eeda185eaafcbbf33dd,false,,08),Actor[akka://default/user/$i/server/$a#314255907],Init(,08)))) from Actor[akka://default/deadLetters] in state CLOSED
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1849, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:04.394 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:04 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:04 keypool reserve 2311
DEBUG:bitcoind:2017-11-29 17:09:04 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:04 UpdateTip: new best=2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de height=1850 version=0x20000000 log2_work=11.854089 tx=2040 date='2017-11-29 17:09:04' progress=1.000000 cache=0.4MiB(2026txo)
DEBUG:bitcoind:2017-11-29 17:09:04 AddToWallet d8f5507dc3cbc96e901755550ff85d96d92092a1af548b776db3c8cc0e862ae9 new
DEBUG:bitcoind:2017-11-29 17:09:04 keypool keep 2311
Waiting for node to learn about 2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:04.518 [INF] CRTR: Pruning channel graph using block 2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de (height=1850)
DEBUG:lnd(16331):2017-11-29 18:09:04.519 [INF] NTFN: New block: height=1850, sha=2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de
DEBUG:lnd(16332):2017-11-29 18:09:04.518 [INF] CRTR: Pruning channel graph using block 2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de (height=1850)
DEBUG:lnd(16332):2017-11-29 18:09:04.519 [INF] NTFN: New block: height=1850, sha=2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de
DEBUG:lnd(16331):2017-11-29 18:09:04.520 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de' in logs
DEBUG:lnd(16331):2017-11-29 18:09:04.521 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:04.526 [INF] CRTR: Block 2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de (height=1850) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:04.529 [INF] CRTR: Block 2de09788ea26032be4f1907a559ff1750d1ca66fde73ff8417ff64177b2213de (height=1850) closed 0 channels
DEBUG:eclair(16333):2017-11-29 18:09:05,137 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66 - processing Event(CurrentBlockCount(1850),DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66,LocalParams(03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b,542,100000000000,100000,1000000,144,30,6f3092c2181c4e473685eeafe334ae79645f9dcbfa2bfbf135d073b04fd3661501,b6a8a62fccebc06dfe24ec5bbf805b50678d26fb87ee8b160b2ebdcf314a7690,66c609e320ceed45ef62456ec14616a94aacfbda88365760edc69555db765dfa,d38f50050a50e933e1fae5b18893f7705c3f7d84ac8092261bf8275eefbb620f,542d1a4981c5b9fb2727f067cb5429aa5cca19e1a0f74d6441861ca23d60c473,a914d6f75865a3a3d4d36c49ded841712540467b680187,1f86d5394bd3a45f5b22959f072ecdd960b75fc8da241eeda185eaafcbbf33dd,false,,08),Actor[akka://default/user/$i/server/$a#314255907],Init(,08)))) from Actor[akka://default/deadLetters] in state CLOSED
DEBUG:eclair(16333):2017-11-29 18:09:06,287 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66 - processing Event('shutdown,DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66,LocalParams(03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b,542,100000000000,100000,1000000,144,30,6f3092c2181c4e473685eeafe334ae79645f9dcbfa2bfbf135d073b04fd3661501,b6a8a62fccebc06dfe24ec5bbf805b50678d26fb87ee8b160b2ebdcf314a7690,66c609e320ceed45ef62456ec14616a94aacfbda88365760edc69555db765dfa,d38f50050a50e933e1fae5b18893f7705c3f7d84ac8092261bf8275eefbb620f,542d1a4981c5b9fb2727f067cb5429aa5cca19e1a0f74d6441861ca23d60c473,a914d6f75865a3a3d4d36c49ded841712540467b680187,1f86d5394bd3a45f5b22959f072ecdd960b75fc8da241eeda185eaafcbbf33dd,false,,08),Actor[akka://default/user/$i/server/$a#314255907],Init(,08)))) from Actor[akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a#92593214] in state CLOSED
DEBUG:eclair(16333):2017-11-29 18:09:06,288 INFO fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9/$a 0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66 - shutting down
DEBUG:eclair(16333):2017-11-29 18:09:06,311 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - channel closed: channelId=TemporaryChannelId(0765efd10659594533d047428de8768ea7974f0acf54f25a38f95ff5eb8fbd66)
DEBUG:eclair(16333):2017-11-29 18:09:06,312 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - that was the last open channel, closing the connection
DEBUG:lnd(16332):2017-11-29 18:09:06.316 [INF] PEER: unable to read message from 127.0.0.1:16333: EOF
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [TRC] PEER: Disconnecting 127.0.0.1:16333, reason: read handler closed
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [TRC] PEER: writeHandler for peer 127.0.0.1:16333 done
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [DBG] SRVR: Peer 127.0.0.1:16333 has been disconnected
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [DBG] FNDG: Cancelling all reservations for peer 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [ERR] SRVR: unable to get channel links: unable to locate channel link bydestination hop id 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [DBG] SRVR: removing peer 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [DBG] SRVR: Attempting to re-establish persistent connection to peer 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [DBG] CMGR: Disconnected from 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b@127.0.0.1:16333 (reqid 1)
DEBUG:lnd(16332):2017-11-29 18:09:06.317 [TRC] PEER: readHandler for peer 127.0.0.1:16333 done
DEBUG:lnd(16332):2017-11-29 18:09:06.318 [TRC] PEER: Update stream for gossiper exited
DEBUG:lnd(16332):2017-11-29 18:09:06.318 [DBG] CMGR: Attempting to connect to 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b@127.0.0.1:16333 (reqid 2)
DEBUG:eclair(16333):2017-11-29 18:09:06,323 WARN fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - lost connection to 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:eclair(16333):2017-11-29 18:09:06,324 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - connected to /127.0.0.1:45284
DEBUG:lnd(16332):2017-11-29 18:09:06.352 [DBG] CMGR: Connected to 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b@127.0.0.1:16333 (reqid 2)
DEBUG:lnd(16332):2017-11-29 18:09:06.352 [INF] SRVR: Established connection to: 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.352 [TRC] PEER: peer 127.0.0.1:16333 starting
DEBUG:lnd(16332):2017-11-29 18:09:06.352 [DBG] PEER: Sending Init to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.352 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.Init)(0xc420278db0)({
DEBUG:lnd(16332): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e0d8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): LocalFeatures: (*lnwire.RawFeatureVector)(0xc4201a2168)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16332): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:eclair(16333):2017-11-29 18:09:06,357 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - handshake completed with 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:eclair(16333):2017-11-29 18:09:06,359 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - registering as a listener to Actor[akka://default/user/$i/server/$b#-282901903]
DEBUG:lnd(16332):2017-11-29 18:09:06.360 [DBG] PEER: Received Init from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.360 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.Init)(0xc420191050)({
DEBUG:lnd(16332): GlobalFeatures: (*lnwire.RawFeatureVector)(0xc42000e1f8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): LocalFeatures: (*lnwire.RawFeatureVector)(0xc42000e200)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) (len=1) {
DEBUG:lnd(16332): (lnwire.FeatureBit) 3: (bool) true
DEBUG:lnd(16332): }
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:06.360 [DBG] PEER: Loaded 0 active channels from database with peerID(3)
DEBUG:lnd(16332):2017-11-29 18:09:06.361 [TRC] PEER: Update stream for gossiper created
DEBUG:lnd(16332):2017-11-29 18:09:06.361 [INF] DISC: Syncing channel graph state with 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b, sending 1 vertexes and 1 edges
DEBUG:lnd(16332):2017-11-29 18:09:06.361 [INF] SRVR: Attempting to send msgs 3 to: 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b
DEBUG:lnd(16332):2017-11-29 18:09:06.361 [DBG] PEER: Sending ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.361 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.ChannelAnnouncement)(0xc420275000)({
DEBUG:lnd(16332): NodeSig1: (*btcec.Signature)(0xc4201912b0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4201a0e80)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16332): S: (*big.Int)(0xc4201a0ea0)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16332): }),
DEBUG:eclair(16333):2017-11-29 18:09:06,362 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 has features: initialRoutingSync=true
DEBUG:lnd(16332): NodeSig2: (*btcec.Signature)(0xc4201912c0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4201a0ec0)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16332): S: (*big.Int)(0xc4201a0ee0)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig1: (*btcec.Signature)(0xc4201912d0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4201a0f00)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16332): S: (*big.Int)(0xc4201a0f20)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig2: (*btcec.Signature)(0xc4201912e0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4201a0f40)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332): S: (*big.Int)(0xc4201a0f60)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc42000e208)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): NodeID1: (*btcec.PublicKey)(0xc4201a09a0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4201a09c0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4201a09e0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): NodeID2: (*btcec.PublicKey)(0xc4201a0a60)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4201a0aa0)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4201a0ac0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinKey1: (*btcec.PublicKey)(0xc4201a0b60)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4201a0bc0)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4201a0be0)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinKey2: (*btcec.PublicKey)(0xc4201a0d00)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4201a0d20)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4201a0d40)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:06.362 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=0, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.363 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.ChannelUpdate)(0xc4206dcd20)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420191300)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4201a0fa0)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16332): S: (*big.Int)(0xc4201a0fc0)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): Flags: (uint16) 0,
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:06.363 [DBG] PEER: Sending NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:06.364 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.NodeAnnouncement)(0xc420532d80)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc4201913d0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4201a12a0)(115020486501117507308389596131929531492944191949708484715735107924170763593078),
DEBUG:lnd(16332): S: (*big.Int)(0xc4201a12c0)(10190672185433435169800250176487861484867013763347468306832412043602914161641)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc42000e210)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc4201a11a0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4201a11c0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4201a11e0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1850, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:06.554 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:06 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:06 keypool reserve 2312
DEBUG:bitcoind:2017-11-29 17:09:06 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:06 UpdateTip: new best=4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525 height=1851 version=0x20000000 log2_work=11.854868 tx=2041 date='2017-11-29 17:09:06' progress=1.000000 cache=0.4MiB(2027txo)
DEBUG:bitcoind:2017-11-29 17:09:06 AddToWallet 7782ff911d71471f29e9cbea1b0f7c6a1a0f812c57edb367b1013b423a2ffd6a new
DEBUG:bitcoind:2017-11-29 17:09:06 keypool keep 2312
DEBUG:lnd(16332):2017-11-29 18:09:06.603 [INF] CRTR: Pruning channel graph using block 4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525 (height=1851)
DEBUG:lnd(16332):2017-11-29 18:09:06.604 [INF] NTFN: New block: height=1851, sha=4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525
DEBUG:lnd(16331):2017-11-29 18:09:06.605 [INF] CRTR: Pruning channel graph using block 4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525 (height=1851)
DEBUG:lnd(16331):2017-11-29 18:09:06.605 [INF] NTFN: New block: height=1851, sha=4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525
DEBUG:lnd(16331):2017-11-29 18:09:06.605 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:06.605 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:06.622 [INF] CRTR: Block 4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525 (height=1851) closed 0 channels
Waiting for node to learn aboutDEBUG:lnd(16332):2017-11-29 18:09:06.622 [INF] CRTR: Block 4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525 (height=1851) closed 0 channels
4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=4d1b22a0cc99aa6747319098855daa54d8245ecbcc4921dbbd5469b681fd9525' in logs
DEBUG:eclair(16333):2017-11-29 18:09:08,357 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - validating a batch of 1 channels
DEBUG:eclair(16333):2017-11-29 18:09:08,461 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - current status channels=1 nodes=0 updates=0
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1851, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:08.674 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:08 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:08 keypool reserve 2313
DEBUG:bitcoind:2017-11-29 17:09:08 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:08 UpdateTip: new best=6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7 height=1852 version=0x20000000 log2_work=11.855647 tx=2042 date='2017-11-29 17:09:08' progress=1.000000 cache=0.4MiB(2028txo)
DEBUG:bitcoind:2017-11-29 17:09:08 AddToWallet 2b32881e672bc3147cd500f7ee83f6398de29ee3bb4f7b7c204d803da7f0732a new
DEBUG:lnd(16331):2017-11-29 18:09:08.710 [INF] CRTR: Pruning channel graph using block 6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7 (height=1852)
DEBUG:lnd(16332):2017-11-29 18:09:08.711 [INF] CRTR: Pruning channel graph using block 6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7 (height=1852)
DEBUG:lnd(16331):2017-11-29 18:09:08.713 [INF] NTFN: New block: height=1852, sha=6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7
DEBUG:lnd(16332):2017-11-29 18:09:08.715 [INF] NTFN: New block: height=1852, sha=6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7
DEBUG:lnd(16331):2017-11-29 18:09:08.715 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:08.715 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:bitcoind:2017-11-29 17:09:08 keypool keep 2313
DEBUG:lnd(16332):2017-11-29 18:09:08.726 [INF] CRTR: Block 6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7 (height=1852) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:08.726 [INF] CRTR: Block 6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7 (height=1852) closed 0 channels
Waiting for node to learn about 6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=6848b3e41b72ffbe331325eb381bf17167f4fe3cff94e4aed0aa1820826eb8e7' in logs
DEBUG:lnd(16331):2017-11-29 18:09:09.230 [INF] DISC: Broadcasting batch of 3 new announcements
DEBUG:lnd(16331):2017-11-29 18:09:09.230 [DBG] SRVR: Broadcasting 3 messages
DEBUG:lnd(16331):2017-11-29 18:09:09.230 [DBG] PEER: Sending ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:09:09.230 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.ChannelAnnouncement)(0xc420146b80)({
DEBUG:lnd(16331): NodeSig1: (*btcec.Signature)(0xc420fd8670)({
DEBUG:lnd(16331): R: (*big.Int)(0xc421046200)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16331): S: (*big.Int)(0xc421046220)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): NodeSig2: (*btcec.Signature)(0xc420fe4640)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420fe2a40)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16331): S: (*big.Int)(0xc420fe2a60)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSig1: (*btcec.Signature)(0xc420fd8680)({
DEBUG:lnd(16331): R: (*big.Int)(0xc421046240)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16331): S: (*big.Int)(0xc421046260)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16332):2017-11-29 18:09:09.230 [DBG] PEER: Received ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808) from 127.0.0.1:35740
DEBUG:lnd(16331): }),
DEBUG:lnd(16332):2017-11-29 18:09:09.230 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.ChannelAnnouncement)(0xc42016a480)({
DEBUG:lnd(16331): BitcoinSig2: (*btcec.Signature)(0xc420fe4650)({
DEBUG:lnd(16332): NodeSig1: (*btcec.Signature)(0xc4200535d0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420fe2a80)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332): R: (*big.Int)(0xc420625ca0)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16331): S: (*big.Int)(0xc420fe2aa0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332): S: (*big.Int)(0xc420625cc0)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4201a6008)({
DEBUG:lnd(16332): NodeSig2: (*btcec.Signature)(0xc420053600)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): R: (*big.Int)(0xc420625ce0)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16331): }
DEBUG:lnd(16332): S: (*big.Int)(0xc420625d20)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): BitcoinSig1: (*btcec.Signature)(0xc420053620)({
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): R: (*big.Int)(0xc420625d80)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): S: (*big.Int)(0xc420625da0)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16332): BitcoinSig2: (*btcec.Signature)(0xc420053630)({
DEBUG:lnd(16331): },
DEBUG:lnd(16332): R: (*big.Int)(0xc420625dc0)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16331): NodeID1: (*btcec.PublicKey)(0xc420fe24a0)({
DEBUG:lnd(16332): S: (*big.Int)(0xc420625de0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): X: (*big.Int)(0xc420fe24c0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4206e80e8)({
DEBUG:lnd(16331): Y: (*big.Int)(0xc420fe24e0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): }
DEBUG:lnd(16331): NodeID2: (*btcec.PublicKey)(0xc420fe2580)({
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): X: (*big.Int)(0xc420fe25a0)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): Y: (*big.Int)(0xc420fe25c0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16331): BitcoinKey1: (*btcec.PublicKey)(0xc420fe2640)({
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): X: (*big.Int)(0xc420fe2660)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16332): NodeID1: (*btcec.PublicKey)(0xc420625e00)({
DEBUG:lnd(16331): Y: (*big.Int)(0xc420fe2680)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): X: (*big.Int)(0xc420625e20)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16331): BitcoinKey2: (*btcec.PublicKey)(0xc420fe2700)({
DEBUG:lnd(16332): Y: (*big.Int)(0xc420625e40)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): X: (*big.Int)(0xc420fe2720)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16332): NodeID2: (*btcec.PublicKey)(0xc420625ee0)({
DEBUG:lnd(16331): Y: (*big.Int)(0xc420fe2740)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): })
DEBUG:lnd(16332): X: (*big.Int)(0xc420625f00)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16331):})
DEBUG:lnd(16332): Y: (*big.Int)(0xc420625f20)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16331):
DEBUG:lnd(16332): }),
DEBUG:lnd(16331):2017-11-29 18:09:09.230 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=1, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16332): BitcoinKey1: (*btcec.PublicKey)(0xc420625fa0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420625fc0)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420625fe0)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinKey2: (*btcec.PublicKey)(0xc42058e060)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc42058e080)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16332): Y: (*big.Int)(0xc42058e0a0)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:09.232 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=1, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:09.232 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.ChannelUpdate)(0xc420fe2fa0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420053f40)({
DEBUG:lnd(16332): R: (*big.Int)(0xc42058e5e0)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16332): S: (*big.Int)(0xc42058e600)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): Flags: (uint16) 1,
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:09.233 [DBG] PEER: Received NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:09.233 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.NodeAnnouncement)(0xc420232780)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc4201a9c90)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420587de0)(38794868995038646942545477070160640628459464903126666828240109330975723021737),
DEBUG:lnd(16332): S: (*big.Int)(0xc420587e00)(18554966030686292781808000659745724625602170022122342987149620001306894816587)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201e8160)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420587e20)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420587e40)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420587e60)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 038d90d32bd642200bb7,
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:09.234 [DBG] DISC: Router rejected channel edge: Ignoring msg for known chan_id=2030797976567808
DEBUG:lnd(16331):2017-11-29 18:09:09.231 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc4205bad70)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420fe45a0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420fe2860)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16331): S: (*big.Int)(0xc420fe2880)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331): Flags: (uint16) 1,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): BaseFee: (uint32) 1000,
DEBUG:lnd(16331): FeeRate: (uint32) 1
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:09:09.232 [DBG] PEER: Sending NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:09:09.232 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc42023cde0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420fe4ae0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420fe3700)(38794868995038646942545477070160640628459464903126666828240109330975723021737),
DEBUG:lnd(16331): S: (*big.Int)(0xc420fe37a0)(18554966030686292781808000659745724625602170022122342987149620001306894816587)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42016c030)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc420496ba0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4201c43c0)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4201c4400)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
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) 038d90d32bd642200bb7,
DEBUG:lnd(16331): Addresses: ([]net.Addr) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16332):2017-11-29 18:09:09.263 [INF] CRTR: New channel update applied: (*channeldb.ChannelEdgePolicy)(0xc420f87c80)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420053f40)({
DEBUG:lnd(16332): R: (*big.Int)(0xc42058e5e0)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16332): S: (*big.Int)(0xc42058e600)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChannelID: (uint64) 2030797976567808,
DEBUG:lnd(16332): LastUpdate: (time.Time) 2017-11-29 18:08:53 +0100 CET,
DEBUG:lnd(16332): Flags: (uint16) 1,
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): MinHTLC: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): FeeBaseMSat: (lnwire.MilliSatoshi) 1000 mSAT,
DEBUG:lnd(16332): FeeProportionalMillionths: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16332): Node: (*channeldb.LightningNode)(<nil>),
DEBUG:lnd(16332): db: (*channeldb.DB)(<nil>)
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:09.274 [INF] CRTR: Updated vertex data for node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1852, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:10.797 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:10 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:10 keypool reserve 2314
DEBUG:bitcoind:2017-11-29 17:09:10 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:10 UpdateTip: new best=098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3 height=1853 version=0x20000000 log2_work=11.856426 tx=2043 date='2017-11-29 17:09:10' progress=1.000000 cache=0.4MiB(2029txo)
DEBUG:bitcoind:2017-11-29 17:09:10 AddToWallet 0acc4a18f07f098fe86e6d67b6357ee07d8df56c8fc5b205e08620f7e9704ac8 new
DEBUG:proc:2017-11-29 18:09:10.822 [INF] BMGR: Processed 5 blocks in the last 10.64s (5 transactions, height 1853, 2017-11-29 18:09:10 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:09:10.823 [INF] NTFN: New block: height=1853, sha=098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3
DEBUG:lnd(16331):2017-11-29 18:09:10.824 [INF] CRTR: Pruning channel graph using block 098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3 (height=1853)
DEBUG:lnd(16331):2017-11-29 18:09:10.824 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:10.824 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:10.824 [INF] CRTR: Pruning channel graph using block 098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3 (height=1853)
DEBUG:lnd(16332):2017-11-29 18:09:10.825 [INF] NTFN: New block: height=1853, sha=098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3
DEBUG:bitcoind:2017-11-29 17:09:10 keypool keep 2314
DEBUG:lnd(16332):2017-11-29 18:09:10.838 [INF] CRTR: Block 098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3 (height=1853) closed 0 channels
Waiting for node to learn about 098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3' in logs
DEBUG:lnd(16331):2017-11-29 18:09:10.848 [INF] CRTR: Block 098c0464a9d9c197fd046b39dcb74ff1e281db480ba3f899598ef2b512ed9fa3 (height=1853) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1853, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:12.865 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:12 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:12 keypool reserve 2315
DEBUG:bitcoind:2017-11-29 17:09:12 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:12 UpdateTip: new best=0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e height=1854 version=0x20000000 log2_work=11.857203 tx=2044 date='2017-11-29 17:09:12' progress=1.000000 cache=0.4MiB(2030txo)
DEBUG:bitcoind:2017-11-29 17:09:12 AddToWallet 71b589de8a27620d6851c1e71c28a05f8c7e26e12d5785a65e6306e7e47759e6 new
DEBUG:lnd(16331):2017-11-29 18:09:12.886 [INF] CRTR: Pruning channel graph using block 0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e (height=1854)
DEBUG:lnd(16332):2017-11-29 18:09:12.887 [INF] CRTR: Pruning channel graph using block 0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e (height=1854)
DEBUG:lnd(16332):2017-11-29 18:09:12.888 [INF] NTFN: New block: height=1854, sha=0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e
DEBUG:lnd(16331):2017-11-29 18:09:12.888 [INF] NTFN: New block: height=1854, sha=0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e
DEBUG:lnd(16331):2017-11-29 18:09:12.888 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:12.888 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:bitcoind:2017-11-29 17:09:12 keypool keep 2315
DEBUG:lnd(16331):2017-11-29 18:09:12.896 [INF] CRTR: Block 0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e (height=1854) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:12.904 [INF] CRTR: Block 0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e (height=1854) closed 0 channels
Waiting for node to learn about 0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=0d8eadae77bcce08934d55c5813200dc895f08afc2e626981e3f10a23919408e' in logs
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1854, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:14.928 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:14 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:14 keypool reserve 2316
DEBUG:bitcoind:2017-11-29 17:09:14 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:14 UpdateTip: new best=67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad height=1855 version=0x20000000 log2_work=11.857981 tx=2045 date='2017-11-29 17:09:14' progress=1.000000 cache=0.4MiB(2031txo)
DEBUG:bitcoind:2017-11-29 17:09:14 AddToWallet 79f064ca934d902ff994641d0cad97829e9e89d8bf41d2758eb7323abb1d0606 new
DEBUG:lnd(16332):2017-11-29 18:09:14.946 [INF] CRTR: Pruning channel graph using block 67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad (height=1855)
DEBUG:lnd(16331):2017-11-29 18:09:14.946 [INF] CRTR: Pruning channel graph using block 67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad (height=1855)
DEBUG:lnd(16331):2017-11-29 18:09:14.947 [INF] NTFN: New block: height=1855, sha=67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad
DEBUG:lnd(16331):2017-11-29 18:09:14.947 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:14.947 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:14.947 [INF] NTFN: New block: height=1855, sha=67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad
DEBUG:bitcoind:2017-11-29 17:09:14 keypool keep 2316
DEBUG:lnd(16331):2017-11-29 18:09:14.959 [INF] CRTR: Block 67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad (height=1855) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:14.959 [INF] CRTR: Block 67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad (height=1855) closed 0 channels
Waiting for node to learn about 67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=67183b38877937c86f9128886c3c8e2c18e68d4662a65691ac13c6abefaf15ad' in logs
DEBUG:eclair(16333):2017-11-29 18:09:16,355 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - broadcasting 3 routing messages
DEBUG:lnd(16332):2017-11-29 18:09:16.381 [DBG] PEER: Received ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808) from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:16.382 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.ChannelAnnouncement)(0xc420275580)({
DEBUG:lnd(16332): NodeSig1: (*btcec.Signature)(0xc420238c70)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420669060)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16332): S: (*big.Int)(0xc420669080)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): NodeSig2: (*btcec.Signature)(0xc420238c80)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4206690a0)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16332): S: (*big.Int)(0xc4206690c0)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig1: (*btcec.Signature)(0xc420238c90)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4206690e0)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16332): S: (*big.Int)(0xc420669100)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig2: (*btcec.Signature)(0xc420238ca0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420669120)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332): S: (*big.Int)(0xc420669140)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc42000e300)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): NodeID1: (*btcec.PublicKey)(0xc420669160)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420669180)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4206691a0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): NodeID2: (*btcec.PublicKey)(0xc420669220)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420669240)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420669260)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinKey1: (*btcec.PublicKey)(0xc4206692e0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420669300)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420669320)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinKey2: (*btcec.PublicKey)(0xc4206693a0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4206693c0)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4206693e0)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:16.386 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=0, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:16.386 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.ChannelUpdate)(0xc420653ef0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420238d50)({
DEBUG:lnd(16332): R: (*big.Int)(0xc4206694a0)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16332): S: (*big.Int)(0xc4206694c0)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): Flags: (uint16) 0,
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:16.391 [DBG] PEER: Received NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:16.391 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.NodeAnnouncement)(0xc4202330e0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc4206d28a0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420595140)(115020486501117507308389596131929531492944191949708484715735107924170763593078),
DEBUG:lnd(16332): S: (*big.Int)(0xc420595160)(10190672185433435169800250176487861484867013763347468306832412043602914161641)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201e81c0)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420595180)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4205951a0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4205951c0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:16.394 [DBG] DISC: Router rejected channel edge: Ignoring msg for known chan_id=2030797976567808
DEBUG:lnd(16332):2017-11-29 18:09:16.398 [DBG] DISC: Ignoring update (flags=0) for known chan_id=2030797976567808
DEBUG:lnd(16332):2017-11-29 18:09:16.400 [DBG] DISC: Ignoring outdated announcement for 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1855, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:17.002 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:17 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:17 keypool reserve 2317
DEBUG:bitcoind:2017-11-29 17:09:17 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:17 UpdateTip: new best=6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01 height=1856 version=0x20000000 log2_work=11.858758 tx=2046 date='2017-11-29 17:09:17' progress=1.000000 cache=0.4MiB(2032txo)
DEBUG:bitcoind:2017-11-29 17:09:17 AddToWallet d6a39d083ce935094e3248bd76e0ad6294657dd118d015a6c0862943912baac1 new
DEBUG:bitcoind:2017-11-29 17:09:17 keypool keep 2317
Waiting for node to learn about 6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:17.136 [INF] CRTR: Pruning channel graph using block 6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01 (height=1856)
DEBUG:lnd(16332):2017-11-29 18:09:17.136 [INF] CRTR: Pruning channel graph using block 6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01 (height=1856)
DEBUG:lnd(16331):2017-11-29 18:09:17.137 [INF] NTFN: New block: height=1856, sha=6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01
DEBUG:lnd(16332):2017-11-29 18:09:17.138 [INF] NTFN: New block: height=1856, sha=6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01
DEBUG:lnd(16331):2017-11-29 18:09:17.138 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:17.139 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01' in logs
DEBUG:lnd(16331):2017-11-29 18:09:17.144 [INF] CRTR: Block 6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01 (height=1856) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:17.148 [INF] CRTR: Block 6c8729e0cdac6c6a54458ff89a730e646dd1b6ee1655dd53876c0a342b1c5c01 (height=1856) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:18.362 [INF] DISC: Broadcasting batch of 5 new announcements
DEBUG:lnd(16332):2017-11-29 18:09:18.362 [DBG] SRVR: Broadcasting 5 messages
DEBUG:lnd(16332):2017-11-29 18:09:18.362 [DBG] PEER: Sending ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:18.362 [DBG] PEER: Sending ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808) to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:18.362 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.ChannelAnnouncement)(0xc420f82980)({
DEBUG:lnd(16332): NodeSig1: (*btcec.Signature)(0xc420f369a0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84d60)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84d80)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): NodeSig2: (*btcec.Signature)(0xc420f36300)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84360)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84380)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig1: (*btcec.Signature)(0xc420f369b0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84da0)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84dc0)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig2: (*btcec.Signature)(0xc420f36310)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f843a0)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f843c0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201e8110)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): NodeID1: (*btcec.PublicKey)(0xc420f847e0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420f84800)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f84820)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): NodeID2: (*btcec.PublicKey)(0xc420f848a0)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420f848c0)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f848e0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinKey1: (*btcec.PublicKey)(0xc420f84960)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420f84980)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f849a0)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinKey2: (*btcec.PublicKey)(0xc420f84a20)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420f84a40)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f84a60)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16332): })
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:18.362 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.ChannelAnnouncement)(0xc420f82980)({
DEBUG:lnd(16332): NodeSig1: (*btcec.Signature)(0xc420f369a0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84d60)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84d80)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): NodeSig2: (*btcec.Signature)(0xc420f36300)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84360)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84380)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig1: (*btcec.Signature)(0xc420f369b0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84da0)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16331):2017-11-29 18:09:18.368 [DBG] PEER: Received ChannelAnnouncement(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:09:18.368 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.ChannelAnnouncement)(0xc420fae900)({
DEBUG:lnd(16331): NodeSig1: (*btcec.Signature)(0xc4202b8180)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420558480)(79182485831409649383383382453525788974631805802699831709441194264985736600731),
DEBUG:lnd(16331): S: (*big.Int)(0xc4205584c0)(2867889751520795654731233304121665929798625101147886745752264443299162792121)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): NodeSig2: (*btcec.Signature)(0xc4202b8190)({
DEBUG:lnd(16331): R: (*big.Int)(0xc4205584e0)(50761673901423005159890441960578785848559756891830214220053177097175326088800),
DEBUG:lnd(16331): S: (*big.Int)(0xc420558500)(31947638320032626219720274887968448762201294036879601024484274595862856782279)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSig1: (*btcec.Signature)(0xc4202b81a0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420558520)(19793081260224691812291820446270384489064759004357617424404234317415812404357),
DEBUG:lnd(16331): S: (*big.Int)(0xc420558540)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinSig2: (*btcec.Signature)(0xc4202b81b0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420558560)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16331): S: (*big.Int)(0xc420558580)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42016c358)({
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): NodeID1: (*btcec.PublicKey)(0xc4205585a0)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4205585c0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4205585e0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): NodeID2: (*btcec.PublicKey)(0xc420558680)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4205586a0)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4205586c0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinKey1: (*btcec.PublicKey)(0xc420558780)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4205587a0)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4205587c0)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): BitcoinKey2: (*btcec.PublicKey)(0xc420558840)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc420558860)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16331): Y: (*big.Int)(0xc420558880)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16331): })
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:09:18.371 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=0, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:09:18.380 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc421013540)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4202b8ad0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420558dc0)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16331): S: (*big.Int)(0xc420558de0)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16331): }),
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331): Flags: (uint16) 0,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84dc0)(53974961555324288533452183796494047421425587749853996761117770991079539128262)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): BitcoinSig2: (*btcec.Signature)(0xc420f36310)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420f843a0)(5273517199684157060411741721688366792651051020259657682446255132533486755435),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f843c0)(8760305973192692669674624231950680069497609285308878350411007782980564056748)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201e8110)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): NodeID1: (*btcec.PublicKey)(0xc420f847e0)({
DEBUG:lnd(16331): FeeRate: (uint32) 1
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331):})
DEBUG:lnd(16332): X: (*big.Int)(0xc420f84800)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:09:18.380 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=1, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:09:18.382 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc4206cebe0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4201a36a0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420be9ca0)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16331): S: (*big.Int)(0xc420be9cc0)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f84820)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): NodeID2: (*btcec.PublicKey)(0xc420f848a0)({
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16331): },
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331): Flags: (uint16) 1,
DEBUG:lnd(16331): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): X: (*big.Int)(0xc420f848c0)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16331): FeeRate: (uint32) 1
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f848e0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16331):})
DEBUG:lnd(16332): }),
DEBUG:lnd(16331):
DEBUG:lnd(16332): BitcoinKey1: (*btcec.PublicKey)(0xc420f84960)({
DEBUG:lnd(16331):2017-11-29 18:09:18.380 [DBG] DISC: Router rejected channel edge: Ignoring msg for known chan_id=2030797976567808
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331):2017-11-29 18:09:18.385 [DBG] PEER: Received NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16332): X: (*big.Int)(0xc420f84980)(87736988083936218656468257562053672121736355496930202759372698304684359479991),
DEBUG:lnd(16331):2017-11-29 18:09:18.386 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4205391a0)({
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f849a0)(46188105109585421651755465600107307695070825164687333857205652058069618368902)
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc42018af20)({
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): R: (*big.Int)(0xc4202b59c0)(115020486501117507308389596131929531492944191949708484715735107924170763593078),
DEBUG:lnd(16332): BitcoinKey2: (*btcec.PublicKey)(0xc420f84a20)({
DEBUG:lnd(16331): S: (*big.Int)(0xc4202b59e0)(10190672185433435169800250176487861484867013763347468306832412043602914161641)
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): X: (*big.Int)(0xc420f84a40)(63332036999623400283211696050859461995761598129144611426022775398727419314476),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4201a6250)({
DEBUG:lnd(16332): Y: (*big.Int)(0xc420f84a60)(6495264857527477367101649590897582914648121212311445142804026273782248098043)
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): })
DEBUG:lnd(16331): }
DEBUG:lnd(16332):})
DEBUG:lnd(16331): }),
DEBUG:lnd(16332):
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332):2017-11-29 18:09:18.363 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=0, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16333
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4202b5a00)({
DEBUG:lnd(16332):2017-11-29 18:09:18.365 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=0, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:35740
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332):2017-11-29 18:09:18.366 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.ChannelUpdate)(0xc420f3b040)({
DEBUG:lnd(16331): X: (*big.Int)(0xc4202b5a20)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420f368f0)({
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b5a40)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84b60)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84b80)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): red: (uint8) 0,
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): green: (uint8) 0,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): blue: (uint8) 0
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): },
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332): },
DEBUG:lnd(16331):})
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331):
DEBUG:lnd(16332): Flags: (uint16) 0,
DEBUG:lnd(16331):2017-11-29 18:09:18.387 [DBG] PEER: Received NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16332
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16331):2017-11-29 18:09:18.388 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc42101a1e0)({
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc420be21e0)({
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16331): R: (*big.Int)(0xc4206f7800)(38794868995038646942545477070160640628459464903126666828240109330975723021737),
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16331): S: (*big.Int)(0xc4206f7820)(18554966030686292781808000659745724625602170022122342987149620001306894816587)
DEBUG:lnd(16332):})
DEBUG:lnd(16331): }),
DEBUG:lnd(16332):
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc42000e268)({
DEBUG:lnd(16332):2017-11-29 18:09:18.368 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=1, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:35740
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332):2017-11-29 18:09:18.368 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.ChannelUpdate)(0xc420fe2fa0)({
DEBUG:lnd(16331): }
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420053f40)({
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): R: (*big.Int)(0xc42058e5e0)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): S: (*big.Int)(0xc42058e600)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4206f7840)({
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): X: (*big.Int)(0xc4206f7880)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): Y: (*big.Int)(0xc4206f78a0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16331): red: (uint8) 0,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): green: (uint8) 0,
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331): blue: (uint8) 0
DEBUG:lnd(16332): Flags: (uint16) 1,
DEBUG:lnd(16331): },
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16331): Alias: (lnwire.NodeAlias) (len=32 cap=32) 038d90d32bd642200bb7,
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16331):})
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16331):
DEBUG:lnd(16332):})
DEBUG:lnd(16331):2017-11-29 18:09:18.401 [INF] CRTR: New channel update applied: (*channeldb.ChannelEdgePolicy)(0xc4210d8d20)({
DEBUG:lnd(16332):
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4202b8ad0)({
DEBUG:lnd(16332):2017-11-29 18:09:18.366 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.ChannelUpdate)(0xc420f3b040)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420558dc0)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420f368f0)({
DEBUG:lnd(16331): S: (*big.Int)(0xc420558de0)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16332): R: (*big.Int)(0xc420f84b60)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): S: (*big.Int)(0xc420f84b80)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16331): ChannelID: (uint64) 2030797976567808,
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): LastUpdate: (time.Time) 2017-11-29 18:08:53 +0100 CET,
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16331): Flags: (uint16) 0,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16331): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16331): MinHTLC: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16331): FeeBaseMSat: (lnwire.MilliSatoshi) 1000 mSAT,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16331): FeeProportionalMillionths: (lnwire.MilliSatoshi) 1 mSAT,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): Node: (*channeldb.LightningNode)(<nil>),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331): db: (*channeldb.DB)(<nil>)
DEBUG:lnd(16332): Flags: (uint16) 0,
DEBUG:lnd(16331):})
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16331):
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331):2017-11-29 18:09:18.404 [DBG] DISC: Ignoring update (flags=1) for known chan_id=2030797976567808
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16331):2017-11-29 18:09:18.419 [INF] CRTR: Updated vertex data for node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16331):2017-11-29 18:09:18.420 [DBG] DISC: Ignoring outdated announcement for 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:18.371 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=1, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:18.371 [DBG] PEER: Sending NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:18.378 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.ChannelUpdate)(0xc420fe2fa0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420053f40)({
DEBUG:lnd(16332): R: (*big.Int)(0xc42058e5e0)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16332): S: (*big.Int)(0xc42058e600)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): Flags: (uint16) 1,
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:18.380 [DBG] PEER: Sending NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:18.380 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.NodeAnnouncement)(0xc4202334a0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc42051d5d0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420fa60e0)(115020486501117507308389596131929531492944191949708484715735107924170763593078),
DEBUG:lnd(16332): S: (*big.Int)(0xc420fa6180)(10190672185433435169800250176487861484867013763347468306832412043602914161641)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc42000e0d8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420184a20)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4201a16a0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4201a16c0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16332): Addresses: ([]net.Addr) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:18.380 [DBG] PEER: Sending NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:18.382 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.NodeAnnouncement)(0xc420232780)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc4201a9c90)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420587de0)(38794868995038646942545477070160640628459464903126666828240109330975723021737),
DEBUG:lnd(16332): S: (*big.Int)(0xc420587e00)(18554966030686292781808000659745724625602170022122342987149620001306894816587)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201e8160)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420587e20)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420587e40)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420587e60)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 038d90d32bd642200bb7,
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:18.379 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.NodeAnnouncement)(0xc4202334a0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc42051d5d0)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420fa60e0)(115020486501117507308389596131929531492944191949708484715735107924170763593078),
DEBUG:lnd(16332): S: (*big.Int)(0xc420fa6180)(10190672185433435169800250176487861484867013763347468306832412043602914161641)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc42000e0d8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420184a20)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc4201a16a0)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16332): Y: (*big.Int)(0xc4201a16c0)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16332): Addresses: ([]net.Addr) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:18.384 [DBG] PEER: Sending NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:18.385 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.NodeAnnouncement)(0xc420232780)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc4201a9c90)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420587de0)(38794868995038646942545477070160640628459464903126666828240109330975723021737),
DEBUG:lnd(16332): S: (*big.Int)(0xc420587e00)(18554966030686292781808000659745724625602170022122342987149620001306894816587)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201e8160)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420587e20)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420587e40)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420587e60)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 038d90d32bd642200bb7,
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1856, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:19.178 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:19 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:19 keypool reserve 2318
DEBUG:bitcoind:2017-11-29 17:09:19 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:19 UpdateTip: new best=4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9 height=1857 version=0x20000000 log2_work=11.859535 tx=2047 date='2017-11-29 17:09:19' progress=1.000000 cache=0.4MiB(2033txo)
DEBUG:bitcoind:2017-11-29 17:09:19 AddToWallet 170efcaf9bcf571aef880bf93eb1a6f5f98bb9b2666be771275ae41e34fc511f new
DEBUG:bitcoind:2017-11-29 17:09:19 keypool keep 2318
DEBUG:lnd(16331):2017-11-29 18:09:19.222 [INF] CRTR: Pruning channel graph using block 4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9 (height=1857)
DEBUG:lnd(16332):2017-11-29 18:09:19.223 [INF] NTFN: New block: height=1857, sha=4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9
DEBUG:lnd(16331):2017-11-29 18:09:19.223 [INF] NTFN: New block: height=1857, sha=4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9
DEBUG:lnd(16332):2017-11-29 18:09:19.223 [INF] CRTR: Pruning channel graph using block 4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9 (height=1857)
DEBUG:lnd(16331):2017-11-29 18:09:19.224 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:19.224 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:19.236 [INF] CRTR: Block 4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9 (height=1857) closed 0 channels
Waiting for node to learn about 4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9' in logs
DEBUG:lnd(16332):2017-11-29 18:09:19.251 [INF] CRTR: Block 4b79c95d7647b34f3b51b12519cc17d42c67fd9173043b28a7e504299240edf9 (height=1857) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1857, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:21.307 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:21 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:21 keypool reserve 2319
DEBUG:bitcoind:2017-11-29 17:09:21 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:21 UpdateTip: new best=2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33 height=1858 version=0x20000000 log2_work=11.860311 tx=2048 date='2017-11-29 17:09:21' progress=1.000000 cache=0.4MiB(2034txo)
DEBUG:bitcoind:2017-11-29 17:09:21 AddToWallet b8a9f0564b7f7b43b0f9ff473d1027306ec94559b88b68fdcecdc77461ca55da new
DEBUG:bitcoind:2017-11-29 17:09:21 keypool keep 2319
Waiting for node to learn about 2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33' in the logs
DEBUG:proc:2017-11-29 18:09:21.451 [INF] BMGR: Processed 5 blocks in the last 10.62s (5 transactions, height 1858, 2017-11-29 18:09:21 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:09:21.453 [INF] CRTR: Pruning channel graph using block 2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33 (height=1858)
DEBUG:lnd(16331):2017-11-29 18:09:21.453 [INF] CRTR: Pruning channel graph using block 2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33 (height=1858)
DEBUG:lnd(16331):2017-11-29 18:09:21.455 [INF] NTFN: New block: height=1858, sha=2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33
DEBUG:lnd(16332):2017-11-29 18:09:21.455 [INF] NTFN: New block: height=1858, sha=2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33
DEBUG:lnd(16331):2017-11-29 18:09:21.457 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:21.457 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33' in logs
DEBUG:lnd(16331):2017-11-29 18:09:21.466 [INF] CRTR: Block 2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33 (height=1858) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:21.470 [INF] CRTR: Block 2dba709d7a866fa7ad0adc1b54462f34c4d36811fb5be7683906c5775ff6fe33 (height=1858) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1858, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:23.494 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:23 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:23 keypool reserve 2320
DEBUG:bitcoind:2017-11-29 17:09:23 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:23 UpdateTip: new best=74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587 height=1859 version=0x20000000 log2_work=11.861087 tx=2049 date='2017-11-29 17:09:23' progress=1.000000 cache=0.4MiB(2035txo)
DEBUG:bitcoind:2017-11-29 17:09:23 AddToWallet 72c862d04944ccdb9587c47e73a906160e6037418a704522d4075367d5117bc6 new
DEBUG:bitcoind:2017-11-29 17:09:23 keypool keep 2320
Waiting for node to learn about 74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587' in the logs
DEBUG:lnd(16332):2017-11-29 18:09:23.627 [INF] CRTR: Pruning channel graph using block 74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587 (height=1859)
DEBUG:lnd(16332):2017-11-29 18:09:23.628 [INF] NTFN: New block: height=1859, sha=74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587
DEBUG:lnd(16331):2017-11-29 18:09:23.627 [INF] CRTR: Pruning channel graph using block 74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587 (height=1859)
DEBUG:lnd(16331):2017-11-29 18:09:23.627 [INF] NTFN: New block: height=1859, sha=74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587
DEBUG:lnd(16331):2017-11-29 18:09:23.628 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:23.628 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587' in logs
DEBUG:lnd(16331):2017-11-29 18:09:23.637 [INF] CRTR: Block 74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587 (height=1859) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:23.640 [INF] CRTR: Block 74d40fa0dcf8dcb6297112113c5237d1d6936e267d065e2665a57e714906c587 (height=1859) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1858, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:25.661 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:25 keypool reserve 2321
DEBUG:bitcoind:2017-11-29 17:09:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:25 UpdateTip: new best=772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a height=1860 version=0x20000000 log2_work=11.861862 tx=2050 date='2017-11-29 17:09:25' progress=1.000000 cache=0.4MiB(2036txo)
DEBUG:bitcoind:2017-11-29 17:09:25 AddToWallet 09bebd56a2c73fef95995832c1c2e88dbb8daa93c0df23c3d030442be3679750 new
DEBUG:bitcoind:2017-11-29 17:09:25 keypool keep 2321
DEBUG:lnd(16331):2017-11-29 18:09:25.694 [INF] CRTR: Pruning channel graph using block 772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a (height=1860)
DEBUG:lnd(16332):2017-11-29 18:09:25.695 [INF] CRTR: Pruning channel graph using block 772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a (height=1860)
DEBUG:lnd(16332):2017-11-29 18:09:25.696 [INF] NTFN: New block: height=1860, sha=772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a
DEBUG:lnd(16331):2017-11-29 18:09:25.696 [INF] NTFN: New block: height=1860, sha=772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a
DEBUG:lnd(16331):2017-11-29 18:09:25.696 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:25.696 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
Waiting for node to learn about 772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:25.713 [INF] CRTR: Block 772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a (height=1860) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:25.713 [INF] CRTR: Block 772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a (height=1860) closed 0 channels
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=772ec2e7fc838c58cb5ebaf2e46b47abfa73be0030ebf6215a812549ef67ae8a' in logs
DEBUG:eclair(16333):2017-11-29 18:09:26,356 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - broadcasting 2 routing messages
DEBUG:lnd(16332):2017-11-29 18:09:26.363 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=1, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:26.363 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.ChannelUpdate)(0xc42020efa0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420593b20)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420fa6a60)(49220938849104462841344001862530735225909168423150036822058358194272299156065),
DEBUG:lnd(16332): S: (*big.Int)(0xc420fa6a80)(45413148659091140020023090953584689399055172759419825702262242722758326933265)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): Flags: (uint16) 1,
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:26.368 [DBG] PEER: Received NodeAnnouncement(node=038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:26.368 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.NodeAnnouncement)(0xc4210feea0)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc42051d240)({
DEBUG:lnd(16332): R: (*big.Int)(0xc420fcc4c0)(38794868995038646942545477070160640628459464903126666828240109330975723021737),
DEBUG:lnd(16332): S: (*big.Int)(0xc420fcc4e0)(18554966030686292781808000659745724625602170022122342987149620001306894816587)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201a24f8)({
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420fcc500)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16332): X: (*big.Int)(0xc420fcc560)(64031995077889560338376813032388796298061543106593802538248211321629521748104),
DEBUG:lnd(16332): Y: (*big.Int)(0xc420fcc5a0)(38660873701931660292864525799626036936162384695671764050596722093087776742785)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 038d90d32bd642200bb7,
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:26.371 [DBG] DISC: Ignoring update (flags=1) for known chan_id=2030797976567808
DEBUG:lnd(16332):2017-11-29 18:09:26.374 [DBG] DISC: Ignoring outdated announcement for 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:lnd(16332):2017-11-29 18:09:27.451 [DBG] PEER: Sending Ping to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:27.451 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.Ping)(0xc420fa7380)({
DEBUG:lnd(16332): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331):2017-11-29 18:09:27.452 [DBG] PEER: Received Ping from 127.0.0.1:16332
DEBUG:lnd(16332): PaddingBytes: (lnwire.PingPayload) <nil>
DEBUG:lnd(16331):2017-11-29 18:09:27.452 [DBG] PEER: Sending Ping to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:09:27.452 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Ping)(0xc420672f00)({
DEBUG:lnd(16331): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331): PaddingBytes: (lnwire.PingPayload) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:09:27.452 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Ping)(0xc42063c400)({
DEBUG:lnd(16331): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331): PaddingBytes: (lnwire.PingPayload) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:27.455 [DBG] PEER: Received Ping from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:27.455 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.Ping)(0xc420fa73e0)({
DEBUG:lnd(16332): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331):2017-11-29 18:09:27.456 [DBG] PEER: Sending Pong to 127.0.0.1:16332
DEBUG:lnd(16332): PaddingBytes: (lnwire.PingPayload) {
DEBUG:lnd(16331):2017-11-29 18:09:27.457 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Pong)(0xc420630480)({
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:27.455 [DBG] PEER: Sending Pong to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:27.455 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.Pong)(0xc420fa74a0)({
DEBUG:lnd(16331): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16332): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16331): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): }
DEBUG:lnd(16332): }
DEBUG:lnd(16331):})
DEBUG:lnd(16332):})
DEBUG:lnd(16331):
DEBUG:lnd(16332):
DEBUG:lnd(16331):2017-11-29 18:09:27.457 [DBG] PEER: Received Pong from 127.0.0.1:16332
DEBUG:lnd(16332):2017-11-29 18:09:27.459 [DBG] PEER: Received Pong from 127.0.0.1:35740
DEBUG:lnd(16331):2017-11-29 18:09:27.458 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Pong)(0xc42063c500)({
DEBUG:lnd(16332):2017-11-29 18:09:27.459 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.Pong)(0xc420fd54a0)({
DEBUG:lnd(16331): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16332): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16331): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): }
DEBUG:lnd(16332): }
DEBUG:lnd(16331):})
DEBUG:lnd(16332):})
DEBUG:lnd(16331):
DEBUG:lnd(16332):
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1860, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:27.760 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:27 keypool reserve 2322
DEBUG:bitcoind:2017-11-29 17:09:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:27 UpdateTip: new best=67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca height=1861 version=0x20000000 log2_work=11.862637 tx=2051 date='2017-11-29 17:09:27' progress=1.000000 cache=0.4MiB(2037txo)
DEBUG:bitcoind:2017-11-29 17:09:27 AddToWallet 98dfbaa0be3599e6ed986fe0bbcfedc1faceb9b7393b1726ef1fc19a71a0abe8 new
DEBUG:bitcoind:2017-11-29 17:09:27 keypool keep 2322
DEBUG:lnd(16332):2017-11-29 18:09:27.798 [INF] CRTR: Pruning channel graph using block 67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca (height=1861)
DEBUG:lnd(16331):2017-11-29 18:09:27.798 [INF] CRTR: Pruning channel graph using block 67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca (height=1861)
DEBUG:lnd(16332):2017-11-29 18:09:27.799 [INF] NTFN: New block: height=1861, sha=67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca
DEBUG:lnd(16331):2017-11-29 18:09:27.799 [INF] NTFN: New block: height=1861, sha=67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca
DEBUG:lnd(16331):2017-11-29 18:09:27.800 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:27.800 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:27.808 [INF] CRTR: Block 67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca (height=1861) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:27.808 [INF] CRTR: Block 67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca (height=1861) closed 0 channels
Waiting for node to learn about 67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=67c33dec90e74856ba2b16b7199f3594b17a51b78030e4552badba91dae76bca' in logs
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1861, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:29.876 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:29 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:29 keypool reserve 2323
DEBUG:bitcoind:2017-11-29 17:09:29 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:29 UpdateTip: new best=77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e height=1862 version=0x20000000 log2_work=11.863412 tx=2052 date='2017-11-29 17:09:29' progress=1.000000 cache=0.4MiB(2038txo)
DEBUG:bitcoind:2017-11-29 17:09:29 AddToWallet 26bdea903fb851ba457bdebdd7d4dc934e0ad7747d87b96bc4e3929672b2d586 new
DEBUG:bitcoind:2017-11-29 17:09:29 keypool keep 2323
Waiting for node to learn about 77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e' in the logs
DEBUG:lnd(16332):2017-11-29 18:09:30.007 [INF] CRTR: Pruning channel graph using block 77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e (height=1862)
DEBUG:lnd(16331):2017-11-29 18:09:30.007 [INF] CRTR: Pruning channel graph using block 77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e (height=1862)
DEBUG:lnd(16332):2017-11-29 18:09:30.009 [INF] NTFN: New block: height=1862, sha=77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e
DEBUG:lnd(16331):2017-11-29 18:09:30.009 [INF] NTFN: New block: height=1862, sha=77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e
DEBUG:lnd(16331):2017-11-29 18:09:30.010 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:30.010 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e' in logs
DEBUG:lnd(16332):2017-11-29 18:09:30.023 [INF] CRTR: Block 77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e (height=1862) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:30.023 [INF] CRTR: Block 77e73430a9e5731cc2558e2ae78c47e1fa6bf933866165585d6aa06b5c3e945e (height=1862) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1862, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:32.044 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:32 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:32 keypool reserve 2324
DEBUG:bitcoind:2017-11-29 17:09:32 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:32 UpdateTip: new best=17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684 height=1863 version=0x20000000 log2_work=11.864186 tx=2053 date='2017-11-29 17:09:32' progress=1.000000 cache=0.4MiB(2039txo)
DEBUG:bitcoind:2017-11-29 17:09:32 AddToWallet d0e6ab63539884ddb90f880d53ed786177939f0da7eb0557c10331ea404032ae new
DEBUG:bitcoind:2017-11-29 17:09:32 keypool keep 2324
DEBUG:proc:2017-11-29 18:09:32.082 [INF] BMGR: Processed 5 blocks in the last 10.63s (5 transactions, height 1863, 2017-11-29 18:09:32 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:09:32.084 [INF] CRTR: Pruning channel graph using block 17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684 (height=1863)
DEBUG:lnd(16332):2017-11-29 18:09:32.084 [INF] NTFN: New block: height=1863, sha=17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684
DEBUG:lnd(16331):2017-11-29 18:09:32.084 [INF] CRTR: Pruning channel graph using block 17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684 (height=1863)
DEBUG:lnd(16331):2017-11-29 18:09:32.084 [INF] NTFN: New block: height=1863, sha=17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684
DEBUG:lnd(16331):2017-11-29 18:09:32.085 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:32.085 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:32.095 [INF] CRTR: Block 17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684 (height=1863) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:32.098 [INF] CRTR: Block 17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684 (height=1863) closed 0 channels
Waiting for node to learn about 17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=17f084412050a6c51d07e71546aec49ea74cddb17d533c13275d320db096b684' in logs
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1863, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:34.147 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:34 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:34 keypool reserve 2325
DEBUG:bitcoind:2017-11-29 17:09:34 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:34 UpdateTip: new best=5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74 height=1864 version=0x20000000 log2_work=11.86496 tx=2054 date='2017-11-29 17:09:34' progress=1.000000 cache=0.4MiB(2040txo)
DEBUG:bitcoind:2017-11-29 17:09:34 AddToWallet ac0a24e19029a2eb054e5d6cc5774bc0cbdd0a91659dd5fe9b9e5e754d2bf4f8 new
DEBUG:bitcoind:2017-11-29 17:09:34 keypool keep 2325
DEBUG:lnd(16332):2017-11-29 18:09:34.183 [INF] CRTR: Pruning channel graph using block 5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74 (height=1864)
DEBUG:lnd(16332):2017-11-29 18:09:34.184 [INF] NTFN: New block: height=1864, sha=5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74
DEBUG:lnd(16331):2017-11-29 18:09:34.185 [INF] NTFN: New block: height=1864, sha=5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74
DEBUG:lnd(16331):2017-11-29 18:09:34.185 [INF] CRTR: Pruning channel graph using block 5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74 (height=1864)
DEBUG:lnd(16331):2017-11-29 18:09:34.186 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:34.186 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:34.195 [INF] CRTR: Block 5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74 (height=1864) closed 0 channels
Waiting for node to learn about 5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74' in logs
DEBUG:lnd(16331):2017-11-29 18:09:34.219 [INF] CRTR: Block 5de2986a2e518b22bf8702441ecc2e4f6c5315ccc2ec85d1b32c62b6686d7e74 (height=1864) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1864, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:36.229 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:36 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:36 keypool reserve 2326
DEBUG:bitcoind:2017-11-29 17:09:36 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:36 UpdateTip: new best=1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1 height=1865 version=0x20000000 log2_work=11.865733 tx=2055 date='2017-11-29 17:09:36' progress=1.000000 cache=0.4MiB(2041txo)
DEBUG:bitcoind:2017-11-29 17:09:36 AddToWallet 85b3202a294bd96e84acb359f74187a15d801f2e4ed5c8f2926d225fe4334143 new
DEBUG:bitcoind:2017-11-29 17:09:36 keypool keep 2326
Waiting for node to learn about 1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:36.368 [INF] CRTR: Pruning channel graph using block 1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1 (height=1865)
DEBUG:lnd(16332):2017-11-29 18:09:36.369 [INF] CRTR: Pruning channel graph using block 1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1 (height=1865)
DEBUG:lnd(16331):2017-11-29 18:09:36.370 [INF] NTFN: New block: height=1865, sha=1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1
DEBUG:lnd(16332):2017-11-29 18:09:36.370 [INF] NTFN: New block: height=1865, sha=1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1
DEBUG:lnd(16331):2017-11-29 18:09:36.371 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:36.371 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1' in logs
DEBUG:lnd(16332):2017-11-29 18:09:36.378 [INF] CRTR: Block 1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1 (height=1865) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:36.378 [INF] CRTR: Block 1eb977a04c16f1d5b8ce9dc10a85cd9f17dccca57b17e2d5b84c704cde97b8c1 (height=1865) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1865, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:38.405 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:38 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:38 keypool reserve 2327
DEBUG:bitcoind:2017-11-29 17:09:38 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:38 UpdateTip: new best=076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb height=1866 version=0x20000000 log2_work=11.866506 tx=2056 date='2017-11-29 17:09:38' progress=1.000000 cache=0.4MiB(2042txo)
DEBUG:bitcoind:2017-11-29 17:09:38 AddToWallet 7073263c50c7e0c7531e4570d080bdd96ffa2995b97b4348e2eff5243698d460 new
DEBUG:bitcoind:2017-11-29 17:09:38 keypool keep 2327
DEBUG:lnd(16332):2017-11-29 18:09:38.433 [INF] CRTR: Pruning channel graph using block 076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb (height=1866)
DEBUG:lnd(16331):2017-11-29 18:09:38.433 [INF] CRTR: Pruning channel graph using block 076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb (height=1866)
DEBUG:lnd(16332):2017-11-29 18:09:38.433 [INF] NTFN: New block: height=1866, sha=076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb
DEBUG:lnd(16331):2017-11-29 18:09:38.433 [INF] NTFN: New block: height=1866, sha=076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb
DEBUG:lnd(16331):2017-11-29 18:09:38.434 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:38.434 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:38.442 [INF] CRTR: Block 076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb (height=1866) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:38.442 [INF] CRTR: Block 076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb (height=1866) closed 0 channels
Waiting for node to learn about 076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=076aa6d6fb317d01b154d1d8cda843ef0e51322d37faaf7906923f6fda60f6fb' in logs
DEBUG:lnd(16331):2017-11-29 18:09:39.230 [INF] DISC: Broadcasting batch of 2 new announcements
DEBUG:lnd(16331):2017-11-29 18:09:39.230 [DBG] SRVR: Broadcasting 2 messages
DEBUG:lnd(16331):2017-11-29 18:09:39.230 [DBG] PEER: Sending ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=0, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:09:39.231 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.ChannelUpdate)(0xc421013540)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc4202b8ad0)({
DEBUG:lnd(16331): R: (*big.Int)(0xc420558dc0)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16331): S: (*big.Int)(0xc420558de0)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16331): }),
DEBUG:lnd(16332):2017-11-29 18:09:39.232 [DBG] PEER: Received ChannelUpdate(chain_hash=0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206, short_chan_id=2030797976567808, flag=0, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:09:39.232 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.ChannelUpdate)(0xc42126e500)({
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc420584220)({
DEBUG:lnd(16332): R: (*big.Int)(0xc421270e80)(15230487938088052038572188257830103578336016625540765071546927490627593981204),
DEBUG:lnd(16332): S: (*big.Int)(0xc421270ea0)(25802276736690568990820707042704610044936797626134968626481775870041615025682)
DEBUG:lnd(16332): }),
DEBUG:lnd(16332): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332): TxIndex: (uint32) 1,
DEBUG:lnd(16332): TxPosition: (uint16) 0
DEBUG:lnd(16332): },
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): Flags: (uint16) 0,
DEBUG:lnd(16332): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16331): ChainHash: (chainhash.Hash) (len=32 cap=32) 0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206,
DEBUG:lnd(16332): BaseFee: (uint32) 1000,
DEBUG:lnd(16331): ShortChannelID: (lnwire.ShortChannelID) {
DEBUG:lnd(16332): FeeRate: (uint32) 1
DEBUG:lnd(16331): BlockHeight: (uint32) 1847,
DEBUG:lnd(16332):})
DEBUG:lnd(16331): TxIndex: (uint32) 1,
DEBUG:lnd(16332):
DEBUG:lnd(16331): TxPosition: (uint16) 0
DEBUG:lnd(16332):2017-11-29 18:09:39.235 [DBG] PEER: Received NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:53 +0100 CET) from 127.0.0.1:35740
DEBUG:lnd(16331): },
DEBUG:lnd(16332):2017-11-29 18:09:39.237 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.NodeAnnouncement)(0xc4210ff8c0)({
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): Signature: (*btcec.Signature)(0xc42051dfd0)({
DEBUG:lnd(16331): Flags: (uint16) 0,
DEBUG:lnd(16332): R: (*big.Int)(0xc420fcdfa0)(115020486501117507308389596131929531492944191949708484715735107924170763593078),
DEBUG:lnd(16331): TimeLockDelta: (uint16) 144,
DEBUG:lnd(16332): S: (*big.Int)(0xc420fcdfc0)(10190672185433435169800250176487861484867013763347468306832412043602914161641)
DEBUG:lnd(16331): HtlcMinimumMsat: (lnwire.MilliSatoshi) 0 mSAT,
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): BaseFee: (uint32) 1000,
DEBUG:lnd(16332): Features: (*lnwire.RawFeatureVector)(0xc4201a2638)({
DEBUG:lnd(16331): FeeRate: (uint32) 1
DEBUG:lnd(16332): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16331):})
DEBUG:lnd(16332): }
DEBUG:lnd(16331):
DEBUG:lnd(16332): }),
DEBUG:lnd(16331):2017-11-29 18:09:39.231 [DBG] PEER: Sending NodeAnnouncement(node=036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9, update_time=2017-11-29 18:08:53 +0100 CET) to 127.0.0.1:16332
DEBUG:lnd(16332): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16331):2017-11-29 18:09:39.234 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.NodeAnnouncement)(0xc4205391a0)({
DEBUG:lnd(16332): NodeID: (*btcec.PublicKey)(0xc420fcdfe0)({
DEBUG:lnd(16331): Signature: (*btcec.Signature)(0xc42018af20)({
DEBUG:lnd(16332): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): R: (*big.Int)(0xc4202b59c0)(115020486501117507308389596131929531492944191949708484715735107924170763593078),
DEBUG:lnd(16332): X: (*big.Int)(0xc4212c6000)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16331): S: (*big.Int)(0xc4202b59e0)(10190672185433435169800250176487861484867013763347468306832412043602914161641)
DEBUG:lnd(16332): Y: (*big.Int)(0xc4212c6020)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): }),
DEBUG:lnd(16331): Features: (*lnwire.RawFeatureVector)(0xc4201a6250)({
DEBUG:lnd(16332): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16331): features: (map[lnwire.FeatureBit]bool) {
DEBUG:lnd(16332): red: (uint8) 0,
DEBUG:lnd(16331): }
DEBUG:lnd(16332): green: (uint8) 0,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): blue: (uint8) 0
DEBUG:lnd(16331): Timestamp: (uint32) 1511975333,
DEBUG:lnd(16332): },
DEBUG:lnd(16331): NodeID: (*btcec.PublicKey)(0xc4202b5a00)({
DEBUG:lnd(16331): Curve: (elliptic.Curve) <nil>,
DEBUG:lnd(16331): X: (*big.Int)(0xc4202b5a20)(50433204317864047393677604465822541028515806348274375939755499343319875142345),
DEBUG:lnd(16331): Y: (*big.Int)(0xc4202b5a40)(111679394611875329981950775934853303756762829825737307194654330775588475065099)
DEBUG:lnd(16332): Alias: (lnwire.NodeAlias) (len=32 cap=32) 036f802e9c8c060ea909,
DEBUG:lnd(16331): }),
DEBUG:lnd(16332): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331): RGBColor: (lnwire.RGB) {
DEBUG:lnd(16332):})
DEBUG:lnd(16331): red: (uint8) 0,
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:39.239 [DBG] DISC: Ignoring update (flags=0) for known chan_id=2030797976567808
DEBUG:lnd(16332):2017-11-29 18:09:39.242 [DBG] DISC: Ignoring outdated announcement for 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
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) 036f802e9c8c060ea909,
DEBUG:lnd(16331): Addresses: ([]net.Addr) <nil>
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1866, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:40.490 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:40 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:40 keypool reserve 2328
DEBUG:bitcoind:2017-11-29 17:09:40 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:40 UpdateTip: new best=5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1 height=1867 version=0x20000000 log2_work=11.867279 tx=2057 date='2017-11-29 17:09:40' progress=1.000000 cache=0.4MiB(2043txo)
DEBUG:bitcoind:2017-11-29 17:09:40 AddToWallet 9b6b51969a7d86067856aece8842134776a390775a73c6d8749cb6bdbe81902a new
DEBUG:bitcoind:2017-11-29 17:09:40 keypool keep 2328
Waiting for node to learn about 5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1' in the logs
DEBUG:lnd(16332):2017-11-29 18:09:40.623 [INF] CRTR: Pruning channel graph using block 5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1 (height=1867)
DEBUG:lnd(16331):2017-11-29 18:09:40.622 [INF] CRTR: Pruning channel graph using block 5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1 (height=1867)
DEBUG:lnd(16332):2017-11-29 18:09:40.624 [INF] NTFN: New block: height=1867, sha=5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1
DEBUG:lnd(16331):2017-11-29 18:09:40.624 [INF] NTFN: New block: height=1867, sha=5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1' in logs
DEBUG:lnd(16331):2017-11-29 18:09:40.625 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:40.625 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:40.641 [INF] CRTR: Block 5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1 (height=1867) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:40.641 [INF] CRTR: Block 5ca07e8f8a9b0b343afaad779cb59289493893339fca1dbcaa70ef28254fbdf1 (height=1867) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1867, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:42.659 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:42 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:42 keypool reserve 2329
DEBUG:bitcoind:2017-11-29 17:09:42 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:42 UpdateTip: new best=2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e height=1868 version=0x20000000 log2_work=11.868051 tx=2058 date='2017-11-29 17:09:42' progress=1.000000 cache=0.4MiB(2044txo)
DEBUG:bitcoind:2017-11-29 17:09:42 AddToWallet a796485c43e6e07c43df4656a9bc1392d8f644b347b97cc520abc54a00e025a5 new
DEBUG:bitcoind:2017-11-29 17:09:42 keypool keep 2329
Waiting for node to learn about 2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e' in the logs
DEBUG:proc:2017-11-29 18:09:42.788 [INF] BMGR: Processed 5 blocks in the last 10.7s (5 transactions, height 1868, 2017-11-29 18:09:42 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:09:42.789 [INF] CRTR: Pruning channel graph using block 2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e (height=1868)
DEBUG:lnd(16331):2017-11-29 18:09:42.789 [INF] CRTR: Pruning channel graph using block 2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e (height=1868)
DEBUG:lnd(16332):2017-11-29 18:09:42.790 [INF] NTFN: New block: height=1868, sha=2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e' in logs
DEBUG:lnd(16331):2017-11-29 18:09:42.790 [INF] NTFN: New block: height=1868, sha=2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e
DEBUG:lnd(16331):2017-11-29 18:09:42.790 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:42.790 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:42.799 [INF] CRTR: Block 2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e (height=1868) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:42.802 [INF] CRTR: Block 2900f524bb0ea6de223172bed57763a8c38ae73b7b89cc8703f43695e0b0925e (height=1868) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1868, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:44.820 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:44 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:44 keypool reserve 2330
DEBUG:bitcoind:2017-11-29 17:09:44 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:44 UpdateTip: new best=094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675 height=1869 version=0x20000000 log2_work=11.868823 tx=2059 date='2017-11-29 17:09:44' progress=1.000000 cache=0.4MiB(2045txo)
DEBUG:bitcoind:2017-11-29 17:09:44 AddToWallet be2b2a2b86a03dd106d5c700ff0f57ee350681b1db206536ac8447579a0cd845 new
DEBUG:bitcoind:2017-11-29 17:09:44 keypool keep 2330
Waiting for node to learn about 094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675' in the logs
DEBUG:lnd(16332):2017-11-29 18:09:44.949 [INF] CRTR: Pruning channel graph using block 094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675 (height=1869)
DEBUG:lnd(16331):2017-11-29 18:09:44.949 [INF] CRTR: Pruning channel graph using block 094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675 (height=1869)
DEBUG:lnd(16332):2017-11-29 18:09:44.950 [INF] NTFN: New block: height=1869, sha=094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675' in logs
DEBUG:lnd(16331):2017-11-29 18:09:44.950 [INF] NTFN: New block: height=1869, sha=094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675
DEBUG:lnd(16331):2017-11-29 18:09:44.950 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:44.951 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:44.970 [INF] CRTR: Block 094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675 (height=1869) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:44.970 [INF] CRTR: Block 094ca4431d42d19a585824ffa99f5361bfdd9990519a917f699407f89eded675 (height=1869) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1869, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:46.973 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:46 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:46 keypool reserve 2331
DEBUG:bitcoind:2017-11-29 17:09:46 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:46 UpdateTip: new best=1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931 height=1870 version=0x20000000 log2_work=11.869594 tx=2060 date='2017-11-29 17:09:46' progress=1.000000 cache=0.4MiB(2046txo)
DEBUG:bitcoind:2017-11-29 17:09:46 AddToWallet d13210f4562b4c71067e7d2134c7a3d1a65981a8af874a22758681fadf1d883e new
DEBUG:bitcoind:2017-11-29 17:09:47 keypool keep 2331
Waiting for node to learn about 1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:47.103 [INF] CRTR: Pruning channel graph using block 1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931 (height=1870)
DEBUG:lnd(16332):2017-11-29 18:09:47.103 [INF] CRTR: Pruning channel graph using block 1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931 (height=1870)
DEBUG:lnd(16332):2017-11-29 18:09:47.104 [INF] NTFN: New block: height=1870, sha=1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931
DEBUG:lnd(16331):2017-11-29 18:09:47.104 [INF] NTFN: New block: height=1870, sha=1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931' in logs
DEBUG:lnd(16331):2017-11-29 18:09:47.105 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:47.105 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:47.116 [INF] CRTR: Block 1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931 (height=1870) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:47.116 [INF] CRTR: Block 1e9c1b9f8ef427e72cd812cdef67c1609a9601852bcd7f14acaa003b45217931 (height=1870) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1869, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:49.137 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:49 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:49 keypool reserve 2332
DEBUG:bitcoind:2017-11-29 17:09:49 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:49 UpdateTip: new best=2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c height=1871 version=0x20000000 log2_work=11.870365 tx=2061 date='2017-11-29 17:09:49' progress=1.000000 cache=0.4MiB(2047txo)
DEBUG:bitcoind:2017-11-29 17:09:49 AddToWallet dd9799ced88337c4617a1fc279aa3de264400aaf78ae3a2b9db405239972e1dc new
DEBUG:bitcoind:2017-11-29 17:09:49 keypool keep 2332
DEBUG:lnd(16332):2017-11-29 18:09:49.177 [INF] CRTR: Pruning channel graph using block 2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c (height=1871)
DEBUG:lnd(16331):2017-11-29 18:09:49.177 [INF] CRTR: Pruning channel graph using block 2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c (height=1871)
DEBUG:lnd(16332):2017-11-29 18:09:49.178 [INF] NTFN: New block: height=1871, sha=2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c
DEBUG:lnd(16331):2017-11-29 18:09:49.178 [INF] NTFN: New block: height=1871, sha=2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c
DEBUG:lnd(16331):2017-11-29 18:09:49.179 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:49.179 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
Waiting for node to learn about 2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:49.194 [INF] CRTR: Block 2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c (height=1871) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:49.191 [INF] CRTR: Block 2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c (height=1871) closed 0 channels
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=2908d9574730e4fb44075625cbe417fc9c93f1f511e710285a3e0f746f050b6c' in logs
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1871, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:51.238 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:51 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:51 keypool reserve 2333
DEBUG:bitcoind:2017-11-29 17:09:51 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:51 UpdateTip: new best=16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071 height=1872 version=0x20000000 log2_work=11.871135 tx=2062 date='2017-11-29 17:09:51' progress=1.000000 cache=0.4MiB(2048txo)
DEBUG:bitcoind:2017-11-29 17:09:51 AddToWallet 998feb4c8befe01698296b7f1be27292eed1b6141e0324de63a811eda61d38be new
DEBUG:bitcoind:2017-11-29 17:09:51 keypool keep 2333
Waiting for node to learn about 16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:51.373 [INF] CRTR: Pruning channel graph using block 16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071 (height=1872)
DEBUG:lnd(16332):2017-11-29 18:09:51.373 [INF] CRTR: Pruning channel graph using block 16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071 (height=1872)
DEBUG:lnd(16331):2017-11-29 18:09:51.374 [INF] NTFN: New block: height=1872, sha=16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071
DEBUG:lnd(16331):2017-11-29 18:09:51.375 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16332):2017-11-29 18:09:51.376 [INF] NTFN: New block: height=1872, sha=16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071
DEBUG:lnd(16331):2017-11-29 18:09:51.375 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071' in logs
DEBUG:lnd(16332):2017-11-29 18:09:51.393 [INF] CRTR: Block 16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071 (height=1872) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:51.396 [INF] CRTR: Block 16f86a165b59bad5e66173c711bb54f5d25d182887e002ffce49b9654d6b6071 (height=1872) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1872, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:53.412 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:53 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:53 keypool reserve 2334
DEBUG:bitcoind:2017-11-29 17:09:53 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:53 UpdateTip: new best=268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1 height=1873 version=0x20000000 log2_work=11.871905 tx=2063 date='2017-11-29 17:09:53' progress=1.000000 cache=0.4MiB(2049txo)
DEBUG:bitcoind:2017-11-29 17:09:53 AddToWallet 67804bb7b5d8638f161c6691f19cdb518db06f805e80147f759403e0c5b75268 new
DEBUG:bitcoind:2017-11-29 17:09:53 keypool keep 2334
DEBUG:proc:2017-11-29 18:09:53.444 [INF] BMGR: Processed 5 blocks in the last 10.65s (5 transactions, height 1873, 2017-11-29 18:09:53 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:09:53.446 [INF] CRTR: Pruning channel graph using block 268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1 (height=1873)
DEBUG:lnd(16331):2017-11-29 18:09:53.446 [INF] CRTR: Pruning channel graph using block 268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1 (height=1873)
DEBUG:lnd(16332):2017-11-29 18:09:53.447 [INF] NTFN: New block: height=1873, sha=268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1
DEBUG:lnd(16331):2017-11-29 18:09:53.447 [INF] NTFN: New block: height=1873, sha=268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1
DEBUG:lnd(16331):2017-11-29 18:09:53.448 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:53.448 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:09:53.454 [INF] CRTR: Block 268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1 (height=1873) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:09:53.458 [INF] CRTR: Block 268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1 (height=1873) closed 0 channels
Waiting for node to learn about 268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1' in the logs
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=268c71d7a513b064b32797f2a0ab1207ac911c7cc29c8741a9acab41f6796bb1' in logs
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1873, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:55.503 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:55 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:55 keypool reserve 2335
DEBUG:bitcoind:2017-11-29 17:09:55 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:55 UpdateTip: new best=7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3 height=1874 version=0x20000000 log2_work=11.872675 tx=2064 date='2017-11-29 17:09:55' progress=1.000000 cache=0.4MiB(2050txo)
DEBUG:bitcoind:2017-11-29 17:09:55 AddToWallet 20d5544d76619e2b13b272547e2f141691875d3d9ed66f037eb27c61370c5943 new
DEBUG:bitcoind:2017-11-29 17:09:55 keypool keep 2335
Waiting for node to learn about 7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:55.634 [INF] CRTR: Pruning channel graph using block 7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3 (height=1874)
DEBUG:lnd(16332):2017-11-29 18:09:55.635 [INF] CRTR: Pruning channel graph using block 7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3 (height=1874)
DEBUG:lnd(16332):2017-11-29 18:09:55.635 [INF] NTFN: New block: height=1874, sha=7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3
DEBUG:lnd(16331):2017-11-29 18:09:55.635 [INF] NTFN: New block: height=1874, sha=7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3' in logs
DEBUG:lnd(16331):2017-11-29 18:09:55.636 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:55.636 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:55.650 [INF] CRTR: Block 7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3 (height=1874) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:55.653 [INF] CRTR: Block 7bbc39e71fe8d79ef4e09127c613a0892c8ca224f4e4002f5b290f59f6504da3 (height=1874) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:56.387 [DBG] PEER: Received Ping from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:56.387 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.Ping)(0xc420749ea0)({
DEBUG:lnd(16332): NumPongBytes: (uint16) 982,
DEBUG:lnd(16332): PaddingBytes: (lnwire.PingPayload) (len=798 cap=798) {
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000200 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000210 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000220 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000230 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000250 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000260 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000270 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000280 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000290 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000310 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |..............|
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:09:56.392 [DBG] PEER: Sending Pong to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:09:56.393 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.Pong)(0xc4207e6160)({
DEBUG:lnd(16332): PongBytes: (lnwire.PongPayload) (len=982 cap=982) {
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000200 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000210 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000220 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000230 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000250 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000260 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000270 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000280 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000290 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000002f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000300 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000310 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000320 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000330 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000340 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000350 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000360 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000370 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000380 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000390 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000003a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000003b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000003c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000003d0 00 00 00 00 00 00 |......|
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1874, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:57.670 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:57 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:57 keypool reserve 2336
DEBUG:bitcoind:2017-11-29 17:09:57 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:57 UpdateTip: new best=25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b height=1875 version=0x20000000 log2_work=11.873444 tx=2065 date='2017-11-29 17:09:57' progress=1.000000 cache=0.4MiB(2051txo)
DEBUG:bitcoind:2017-11-29 17:09:57 AddToWallet 8182f7acf8b8611b76c1f2adac6aa660e43e05a3298fb403577e5109af769ba3 new
DEBUG:bitcoind:2017-11-29 17:09:57 keypool keep 2336
Waiting for node to learn about 25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b' in the logs
DEBUG:lnd(16332):2017-11-29 18:09:57.801 [INF] CRTR: Pruning channel graph using block 25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b (height=1875)
DEBUG:lnd(16331):2017-11-29 18:09:57.801 [INF] CRTR: Pruning channel graph using block 25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b (height=1875)
DEBUG:lnd(16331):2017-11-29 18:09:57.803 [INF] NTFN: New block: height=1875, sha=25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b
DEBUG:lnd(16332):2017-11-29 18:09:57.804 [INF] NTFN: New block: height=1875, sha=25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b
DEBUG:lnd(16331):2017-11-29 18:09:57.804 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b' in logs
DEBUG:lnd(16331):2017-11-29 18:09:57.804 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:57.815 [INF] CRTR: Block 25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b (height=1875) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:57.815 [INF] CRTR: Block 25489cdb45e3d8a4556670bc64481317b79fb5b41282387239df971e8de3b33b (height=1875) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1875, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:09:59.841 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:09:59 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:09:59 keypool reserve 2337
DEBUG:bitcoind:2017-11-29 17:09:59 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:09:59 UpdateTip: new best=0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28 height=1876 version=0x20000000 log2_work=11.874213 tx=2066 date='2017-11-29 17:09:59' progress=1.000000 cache=0.4MiB(2052txo)
DEBUG:bitcoind:2017-11-29 17:09:59 AddToWallet 2e010ac80b247c2075ca13671df8ef3373b372158bebd423141649873422443f new
DEBUG:bitcoind:2017-11-29 17:09:59 keypool keep 2337
Waiting for node to learn about 0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28' in the logs
DEBUG:lnd(16331):2017-11-29 18:09:59.979 [INF] CRTR: Pruning channel graph using block 0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28 (height=1876)
DEBUG:lnd(16331):2017-11-29 18:09:59.982 [INF] NTFN: New block: height=1876, sha=0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28
DEBUG:lnd(16332):2017-11-29 18:09:59.983 [INF] CRTR: Pruning channel graph using block 0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28 (height=1876)
DEBUG:lnd(16332):2017-11-29 18:09:59.984 [INF] NTFN: New block: height=1876, sha=0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28' in logs
DEBUG:lnd(16331):2017-11-29 18:09:59.984 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:09:59.984 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:09:59.989 [INF] CRTR: Block 0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28 (height=1876) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:09:59.995 [INF] CRTR: Block 0d0d334e9596e2c08eb3d7084d336e155e21c016be3c794c6959c1b42127de28 (height=1876) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1876, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:02.023 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:02 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:02 keypool reserve 2338
DEBUG:bitcoind:2017-11-29 17:10:02 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:02 UpdateTip: new best=1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422 height=1877 version=0x20000000 log2_work=11.874981 tx=2067 date='2017-11-29 17:10:02' progress=1.000000 cache=0.4MiB(2053txo)
DEBUG:bitcoind:2017-11-29 17:10:02 AddToWallet 4e153d34a2f2a8d6551414588e1a7b34d5f2f5fe210fe9123fa87cdcc3fe56ee new
DEBUG:bitcoind:2017-11-29 17:10:02 keypool keep 2338
Waiting for node to learn about 1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422
DEBUG:root:Waiting for 'NTFN: New block: height=([0-9]+), sha=1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422' in the logs
DEBUG:lnd(16331):2017-11-29 18:10:02.189 [INF] CRTR: Pruning channel graph using block 1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422 (height=1877)
DEBUG:lnd(16332):2017-11-29 18:10:02.190 [INF] CRTR: Pruning channel graph using block 1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422 (height=1877)
DEBUG:lnd(16332):2017-11-29 18:10:02.191 [INF] NTFN: New block: height=1877, sha=1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422
DEBUG:lnd(16331):2017-11-29 18:10:02.191 [INF] NTFN: New block: height=1877, sha=1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422
DEBUG:root:Found 'NTFN: New block: height=([0-9]+), sha=1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422' in logs
DEBUG:lnd(16331):2017-11-29 18:10:02.192 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:02.193 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:02.213 [INF] CRTR: Block 1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422 (height=1877) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:02.213 [INF] CRTR: Block 1f68d871a09d2452d7cfe39059fbae60f8410697e71962f4c0d1c6938f1ab422 (height=1877) closed 0 channels
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:03.224 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
{"method": "getblockchaininfo", "params": [], "id": 1, "version": "1.1"}
Waiting for 3 nodes to blockheight 1877
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:04.271 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:04.281 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:04.327 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:04 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:04 keypool reserve 2339
DEBUG:bitcoind:2017-11-29 17:10:04 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:04 UpdateTip: new best=4b524a18706825970da63bad5dad5cb70788315d14bb8561e90c2e6834612952 height=1878 version=0x20000000 log2_work=11.875749 tx=2068 date='2017-11-29 17:10:04' progress=1.000000 cache=0.4MiB(2054txo)
DEBUG:bitcoind:2017-11-29 17:10:04 AddToWallet 1a50906aaf644c2b337577fc9feb0bbb615fc4760b37ff630e28f6b2482db8fd new
DEBUG:bitcoind:2017-11-29 17:10:04 keypool keep 2339
DEBUG:proc:2017-11-29 18:10:04.557 [INF] BMGR: Processed 5 blocks in the last 11.11s (5 transactions, height 1878, 2017-11-29 18:10:04 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:10:04.558 [INF] CRTR: Pruning channel graph using block 4b524a18706825970da63bad5dad5cb70788315d14bb8561e90c2e6834612952 (height=1878)
DEBUG:lnd(16332):2017-11-29 18:10:04.558 [INF] CRTR: Pruning channel graph using block 4b524a18706825970da63bad5dad5cb70788315d14bb8561e90c2e6834612952 (height=1878)
DEBUG:lnd(16332):2017-11-29 18:10:04.559 [INF] NTFN: New block: height=1878, sha=4b524a18706825970da63bad5dad5cb70788315d14bb8561e90c2e6834612952
DEBUG:lnd(16331):2017-11-29 18:10:04.560 [INF] NTFN: New block: height=1878, sha=4b524a18706825970da63bad5dad5cb70788315d14bb8561e90c2e6834612952
DEBUG:lnd(16331):2017-11-29 18:10:04.561 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:04.561 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:04.576 [INF] CRTR: Block 4b524a18706825970da63bad5dad5cb70788315d14bb8561e90c2e6834612952 (height=1878) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:04.583 [INF] CRTR: Block 4b524a18706825970da63bad5dad5cb70788315d14bb8561e90c2e6834612952 (height=1878) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:05.405 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:05.410 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:05.439 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:05 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:05 keypool reserve 2340
DEBUG:bitcoind:2017-11-29 17:10:05 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:05 UpdateTip: new best=533f7694b81373315051a5a77e5ae4a6ad0ec766780e4c0b4a6a19cfec019011 height=1879 version=0x20000000 log2_work=11.876517 tx=2069 date='2017-11-29 17:10:05' progress=1.000000 cache=0.4MiB(2055txo)
DEBUG:bitcoind:2017-11-29 17:10:05 AddToWallet d2b0c646d26e07e7a76ca92387ce9867107d4e5ab7f7f24202c69969d80c26ad new
DEBUG:bitcoind:2017-11-29 17:10:05 keypool keep 2340
DEBUG:lnd(16331):2017-11-29 18:10:05.616 [INF] CRTR: Pruning channel graph using block 533f7694b81373315051a5a77e5ae4a6ad0ec766780e4c0b4a6a19cfec019011 (height=1879)
DEBUG:lnd(16331):2017-11-29 18:10:05.617 [INF] NTFN: New block: height=1879, sha=533f7694b81373315051a5a77e5ae4a6ad0ec766780e4c0b4a6a19cfec019011
DEBUG:lnd(16332):2017-11-29 18:10:05.617 [INF] NTFN: New block: height=1879, sha=533f7694b81373315051a5a77e5ae4a6ad0ec766780e4c0b4a6a19cfec019011
DEBUG:lnd(16332):2017-11-29 18:10:05.617 [INF] CRTR: Pruning channel graph using block 533f7694b81373315051a5a77e5ae4a6ad0ec766780e4c0b4a6a19cfec019011 (height=1879)
DEBUG:lnd(16331):2017-11-29 18:10:05.618 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:05.619 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:05.633 [INF] CRTR: Block 533f7694b81373315051a5a77e5ae4a6ad0ec766780e4c0b4a6a19cfec019011 (height=1879) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:05.660 [INF] CRTR: Block 533f7694b81373315051a5a77e5ae4a6ad0ec766780e4c0b4a6a19cfec019011 (height=1879) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:06.361 [DBG] PEER: Sending Ping to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:10:06.361 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.Ping)(0xc421053d00)({
DEBUG:lnd(16332): NumPongBytes: (uint16) 16,
DEBUG:lnd(16332): PaddingBytes: (lnwire.PingPayload) <nil>
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:10:06.368 [DBG] PEER: Received Pong from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:10:06.369 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.Pong)(0xc421053dc0)({
DEBUG:lnd(16332): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:06.531 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:06.537 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:06.564 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:06 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:06 keypool reserve 2341
DEBUG:bitcoind:2017-11-29 17:10:06 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:06 UpdateTip: new best=11c207a101824bcc73abca48f8d9e1ba3f6761af36dcf09c4cf626e4801b7396 height=1880 version=0x20000000 log2_work=11.877284 tx=2070 date='2017-11-29 17:10:06' progress=1.000000 cache=0.4MiB(2056txo)
DEBUG:bitcoind:2017-11-29 17:10:06 AddToWallet bf7e5903482b5f7e4e041709316b3a28fffd96ba58b0411624357242195b98cf new
DEBUG:bitcoind:2017-11-29 17:10:06 keypool keep 2341
DEBUG:lnd(16331):2017-11-29 18:10:06.730 [INF] CRTR: Pruning channel graph using block 11c207a101824bcc73abca48f8d9e1ba3f6761af36dcf09c4cf626e4801b7396 (height=1880)
DEBUG:lnd(16331):2017-11-29 18:10:06.731 [INF] NTFN: New block: height=1880, sha=11c207a101824bcc73abca48f8d9e1ba3f6761af36dcf09c4cf626e4801b7396
DEBUG:lnd(16331):2017-11-29 18:10:06.734 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:06.734 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:06.732 [INF] CRTR: Pruning channel graph using block 11c207a101824bcc73abca48f8d9e1ba3f6761af36dcf09c4cf626e4801b7396 (height=1880)
DEBUG:lnd(16332):2017-11-29 18:10:06.734 [INF] NTFN: New block: height=1880, sha=11c207a101824bcc73abca48f8d9e1ba3f6761af36dcf09c4cf626e4801b7396
DEBUG:lnd(16332):2017-11-29 18:10:06.749 [INF] CRTR: Block 11c207a101824bcc73abca48f8d9e1ba3f6761af36dcf09c4cf626e4801b7396 (height=1880) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:06.750 [INF] CRTR: Block 11c207a101824bcc73abca48f8d9e1ba3f6761af36dcf09c4cf626e4801b7396 (height=1880) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:07.649 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:07.654 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:07.676 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:07 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:07 keypool reserve 2342
DEBUG:bitcoind:2017-11-29 17:10:07 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:07 UpdateTip: new best=71c6b4465dbf67626ebda1a3bee3e3d7b08dad3c1911356e5a73951fa7bfaaf4 height=1881 version=0x20000000 log2_work=11.878051 tx=2071 date='2017-11-29 17:10:07' progress=1.000000 cache=0.4MiB(2057txo)
DEBUG:bitcoind:2017-11-29 17:10:07 AddToWallet add5f0c6597895b520621afab57aa669ddf0be91895974e7ecc221f4e0d25f73 new
DEBUG:bitcoind:2017-11-29 17:10:07 keypool keep 2342
DEBUG:lnd(16331):2017-11-29 18:10:07.851 [INF] CRTR: Pruning channel graph using block 71c6b4465dbf67626ebda1a3bee3e3d7b08dad3c1911356e5a73951fa7bfaaf4 (height=1881)
DEBUG:lnd(16331):2017-11-29 18:10:07.851 [INF] NTFN: New block: height=1881, sha=71c6b4465dbf67626ebda1a3bee3e3d7b08dad3c1911356e5a73951fa7bfaaf4
DEBUG:lnd(16331):2017-11-29 18:10:07.853 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16332):2017-11-29 18:10:07.852 [INF] CRTR: Pruning channel graph using block 71c6b4465dbf67626ebda1a3bee3e3d7b08dad3c1911356e5a73951fa7bfaaf4 (height=1881)
DEBUG:lnd(16331):2017-11-29 18:10:07.853 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:07.853 [INF] NTFN: New block: height=1881, sha=71c6b4465dbf67626ebda1a3bee3e3d7b08dad3c1911356e5a73951fa7bfaaf4
DEBUG:lnd(16331):2017-11-29 18:10:07.871 [INF] CRTR: Block 71c6b4465dbf67626ebda1a3bee3e3d7b08dad3c1911356e5a73951fa7bfaaf4 (height=1881) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:07.871 [INF] CRTR: Block 71c6b4465dbf67626ebda1a3bee3e3d7b08dad3c1911356e5a73951fa7bfaaf4 (height=1881) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:08.762 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:08.765 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:lnd(16332):2017-11-29 18:10:08.780 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:08 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:08 keypool reserve 2343
DEBUG:bitcoind:2017-11-29 17:10:08 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:08 UpdateTip: new best=09af5a82bd33908d399ad2c53d617e1bcb4b27e4a53ac74f8812c9a0b8785cfb height=1882 version=0x20000000 log2_work=11.878817 tx=2072 date='2017-11-29 17:10:08' progress=1.000000 cache=0.4MiB(2058txo)
DEBUG:bitcoind:2017-11-29 17:10:08 AddToWallet 77e036e3af74323967083c391250e204a7ce7ad8bdc4c76829f66342bd17d835 new
DEBUG:bitcoind:2017-11-29 17:10:08 keypool keep 2343
DEBUG:lnd(16332):2017-11-29 18:10:08.830 [INF] CRTR: Pruning channel graph using block 09af5a82bd33908d399ad2c53d617e1bcb4b27e4a53ac74f8812c9a0b8785cfb (height=1882)
DEBUG:lnd(16331):2017-11-29 18:10:08.830 [INF] CRTR: Pruning channel graph using block 09af5a82bd33908d399ad2c53d617e1bcb4b27e4a53ac74f8812c9a0b8785cfb (height=1882)
DEBUG:lnd(16332):2017-11-29 18:10:08.831 [INF] NTFN: New block: height=1882, sha=09af5a82bd33908d399ad2c53d617e1bcb4b27e4a53ac74f8812c9a0b8785cfb
DEBUG:lnd(16331):2017-11-29 18:10:08.831 [INF] NTFN: New block: height=1882, sha=09af5a82bd33908d399ad2c53d617e1bcb4b27e4a53ac74f8812c9a0b8785cfb
DEBUG:lnd(16331):2017-11-29 18:10:08.834 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:08.834 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:08.852 [INF] CRTR: Block 09af5a82bd33908d399ad2c53d617e1bcb4b27e4a53ac74f8812c9a0b8785cfb (height=1882) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:08.852 [INF] CRTR: Block 09af5a82bd33908d399ad2c53d617e1bcb4b27e4a53ac74f8812c9a0b8785cfb (height=1882) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:09.868 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:09.870 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:09.881 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:09 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:09 keypool reserve 2344
DEBUG:bitcoind:2017-11-29 17:10:09 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:09 UpdateTip: new best=267aad2d48d2a1717f0ea1dc531ddfe599d0ec2e4b5fc78d4723d60ad7aded58 height=1883 version=0x20000000 log2_work=11.879583 tx=2073 date='2017-11-29 17:10:09' progress=1.000000 cache=0.4MiB(2059txo)
DEBUG:bitcoind:2017-11-29 17:10:09 AddToWallet 5ddc62806c5bee0434f4becd1c61483318cbe055d72711723c5d60c5257575b7 new
DEBUG:bitcoind:2017-11-29 17:10:09 keypool keep 2344
DEBUG:lnd(16332):2017-11-29 18:10:10.023 [INF] CRTR: Pruning channel graph using block 267aad2d48d2a1717f0ea1dc531ddfe599d0ec2e4b5fc78d4723d60ad7aded58 (height=1883)
DEBUG:lnd(16331):2017-11-29 18:10:10.023 [INF] CRTR: Pruning channel graph using block 267aad2d48d2a1717f0ea1dc531ddfe599d0ec2e4b5fc78d4723d60ad7aded58 (height=1883)
DEBUG:lnd(16332):2017-11-29 18:10:10.023 [INF] NTFN: New block: height=1883, sha=267aad2d48d2a1717f0ea1dc531ddfe599d0ec2e4b5fc78d4723d60ad7aded58
DEBUG:lnd(16331):2017-11-29 18:10:10.023 [INF] NTFN: New block: height=1883, sha=267aad2d48d2a1717f0ea1dc531ddfe599d0ec2e4b5fc78d4723d60ad7aded58
DEBUG:lnd(16331):2017-11-29 18:10:10.024 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:10.024 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:10.037 [INF] CRTR: Block 267aad2d48d2a1717f0ea1dc531ddfe599d0ec2e4b5fc78d4723d60ad7aded58 (height=1883) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:10.037 [INF] CRTR: Block 267aad2d48d2a1717f0ea1dc531ddfe599d0ec2e4b5fc78d4723d60ad7aded58 (height=1883) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:10.936 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:10.938 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:10.946 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:10 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:10 keypool reserve 2345
DEBUG:bitcoind:2017-11-29 17:10:10 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:10 UpdateTip: new best=07cfc6602230c273081bcae8c5f47a956e35bac6d1d132435cb8a2449ab6b50c height=1884 version=0x20000000 log2_work=11.880349 tx=2074 date='2017-11-29 17:10:10' progress=1.000000 cache=0.4MiB(2060txo)
DEBUG:bitcoind:2017-11-29 17:10:10 AddToWallet e1f725c89e35529fc29b23fdb2c6aeb36ee5be7919ec986ea75b00a3705b3096 new
DEBUG:bitcoind:2017-11-29 17:10:10 keypool keep 2345
DEBUG:lnd(16331):2017-11-29 18:10:11.094 [INF] CRTR: Pruning channel graph using block 07cfc6602230c273081bcae8c5f47a956e35bac6d1d132435cb8a2449ab6b50c (height=1884)
DEBUG:lnd(16331):2017-11-29 18:10:11.096 [INF] NTFN: New block: height=1884, sha=07cfc6602230c273081bcae8c5f47a956e35bac6d1d132435cb8a2449ab6b50c
DEBUG:lnd(16332):2017-11-29 18:10:11.094 [INF] CRTR: Pruning channel graph using block 07cfc6602230c273081bcae8c5f47a956e35bac6d1d132435cb8a2449ab6b50c (height=1884)
DEBUG:lnd(16332):2017-11-29 18:10:11.099 [INF] NTFN: New block: height=1884, sha=07cfc6602230c273081bcae8c5f47a956e35bac6d1d132435cb8a2449ab6b50c
DEBUG:lnd(16331):2017-11-29 18:10:11.100 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:11.100 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:11.105 [INF] CRTR: Block 07cfc6602230c273081bcae8c5f47a956e35bac6d1d132435cb8a2449ab6b50c (height=1884) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:11.108 [INF] CRTR: Block 07cfc6602230c273081bcae8c5f47a956e35bac6d1d132435cb8a2449ab6b50c (height=1884) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:12.013 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:12.019 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:12.046 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:12 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:12 keypool reserve 2346
DEBUG:bitcoind:2017-11-29 17:10:12 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:12 UpdateTip: new best=17fa08507786045d9f75f2cbe49aa3569b6ccb2a1218c531fa53519f31f96d47 height=1885 version=0x20000000 log2_work=11.881114 tx=2075 date='2017-11-29 17:10:12' progress=1.000000 cache=0.4MiB(2061txo)
DEBUG:bitcoind:2017-11-29 17:10:12 AddToWallet e4210e1c14018fc5083d8815f4524f7e35c3da0caf33bc65347da2946e0af516 new
DEBUG:bitcoind:2017-11-29 17:10:12 keypool keep 2346
DEBUG:lnd(16332):2017-11-29 18:10:12.219 [INF] CRTR: Pruning channel graph using block 17fa08507786045d9f75f2cbe49aa3569b6ccb2a1218c531fa53519f31f96d47 (height=1885)
DEBUG:lnd(16331):2017-11-29 18:10:12.219 [INF] CRTR: Pruning channel graph using block 17fa08507786045d9f75f2cbe49aa3569b6ccb2a1218c531fa53519f31f96d47 (height=1885)
DEBUG:lnd(16332):2017-11-29 18:10:12.220 [INF] NTFN: New block: height=1885, sha=17fa08507786045d9f75f2cbe49aa3569b6ccb2a1218c531fa53519f31f96d47
DEBUG:lnd(16331):2017-11-29 18:10:12.221 [INF] NTFN: New block: height=1885, sha=17fa08507786045d9f75f2cbe49aa3569b6ccb2a1218c531fa53519f31f96d47
DEBUG:lnd(16331):2017-11-29 18:10:12.222 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:12.222 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:12.232 [INF] CRTR: Block 17fa08507786045d9f75f2cbe49aa3569b6ccb2a1218c531fa53519f31f96d47 (height=1885) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:12.240 [INF] CRTR: Block 17fa08507786045d9f75f2cbe49aa3569b6ccb2a1218c531fa53519f31f96d47 (height=1885) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:13.134 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:13.140 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:13.166 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:13 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:13 keypool reserve 2347
DEBUG:bitcoind:2017-11-29 17:10:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:13 UpdateTip: new best=39259713c063d283a0881372c1a7605b845a4cb558a356813c3fe1d87ab820e6 height=1886 version=0x20000000 log2_work=11.881879 tx=2076 date='2017-11-29 17:10:13' progress=1.000000 cache=0.4MiB(2062txo)
DEBUG:bitcoind:2017-11-29 17:10:13 AddToWallet 44e2b8298d1a367646e2b5fb9ea2855165f87caaefb14b756230c8301d4263cc new
DEBUG:bitcoind:2017-11-29 17:10:13 keypool keep 2347
DEBUG:lnd(16331):2017-11-29 18:10:13.341 [INF] CRTR: Pruning channel graph using block 39259713c063d283a0881372c1a7605b845a4cb558a356813c3fe1d87ab820e6 (height=1886)
DEBUG:lnd(16332):2017-11-29 18:10:13.341 [INF] CRTR: Pruning channel graph using block 39259713c063d283a0881372c1a7605b845a4cb558a356813c3fe1d87ab820e6 (height=1886)
DEBUG:lnd(16331):2017-11-29 18:10:13.342 [INF] NTFN: New block: height=1886, sha=39259713c063d283a0881372c1a7605b845a4cb558a356813c3fe1d87ab820e6
DEBUG:lnd(16332):2017-11-29 18:10:13.342 [INF] NTFN: New block: height=1886, sha=39259713c063d283a0881372c1a7605b845a4cb558a356813c3fe1d87ab820e6
DEBUG:lnd(16331):2017-11-29 18:10:13.342 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:13.342 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:13.358 [INF] CRTR: Block 39259713c063d283a0881372c1a7605b845a4cb558a356813c3fe1d87ab820e6 (height=1886) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:13.361 [INF] CRTR: Block 39259713c063d283a0881372c1a7605b845a4cb558a356813c3fe1d87ab820e6 (height=1886) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:14.262 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:14.273 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:14.322 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:14 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:14 keypool reserve 2348
DEBUG:bitcoind:2017-11-29 17:10:14 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:14 UpdateTip: new best=19d1b50e0b16a45564a02251a761901638c06a8ee7c37f194308874d2ac0ff9f height=1887 version=0x20000000 log2_work=11.882643 tx=2077 date='2017-11-29 17:10:14' progress=1.000000 cache=0.4MiB(2063txo)
DEBUG:bitcoind:2017-11-29 17:10:14 AddToWallet cac8ba2c2759c7b95134cd25a3cf0e95c0628b1cb71c82511e725da9ec40c557 new
DEBUG:bitcoind:2017-11-29 17:10:14 keypool keep 2348
DEBUG:lnd(16332):2017-11-29 18:10:14.484 [INF] CRTR: Pruning channel graph using block 19d1b50e0b16a45564a02251a761901638c06a8ee7c37f194308874d2ac0ff9f (height=1887)
DEBUG:lnd(16331):2017-11-29 18:10:14.486 [INF] NTFN: New block: height=1887, sha=19d1b50e0b16a45564a02251a761901638c06a8ee7c37f194308874d2ac0ff9f
DEBUG:lnd(16331):2017-11-29 18:10:14.486 [INF] CRTR: Pruning channel graph using block 19d1b50e0b16a45564a02251a761901638c06a8ee7c37f194308874d2ac0ff9f (height=1887)
DEBUG:lnd(16332):2017-11-29 18:10:14.487 [INF] NTFN: New block: height=1887, sha=19d1b50e0b16a45564a02251a761901638c06a8ee7c37f194308874d2ac0ff9f
DEBUG:lnd(16331):2017-11-29 18:10:14.488 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:14.488 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:14.504 [INF] CRTR: Block 19d1b50e0b16a45564a02251a761901638c06a8ee7c37f194308874d2ac0ff9f (height=1887) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:14.507 [INF] CRTR: Block 19d1b50e0b16a45564a02251a761901638c06a8ee7c37f194308874d2ac0ff9f (height=1887) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:15.399 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:15.405 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:15.433 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1877, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:15 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:15 keypool reserve 2349
DEBUG:bitcoind:2017-11-29 17:10:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:15 UpdateTip: new best=4b4fb2dfd4ccfc6a13718278f2c529ef96dedf934e1169def2ce5d7ecfd332c2 height=1888 version=0x20000000 log2_work=11.883407 tx=2078 date='2017-11-29 17:10:15' progress=1.000000 cache=0.4MiB(2064txo)
DEBUG:bitcoind:2017-11-29 17:10:15 AddToWallet b43fd8de50d4fdbca44707bdb56e651fc4ffda87175226b134dbc213ce004b57 new
DEBUG:bitcoind:2017-11-29 17:10:15 keypool keep 2349
DEBUG:proc:2017-11-29 18:10:15.520 [INF] BMGR: Processed 10 blocks in the last 10.96s (10 transactions, height 1888, 2017-11-29 18:10:15 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:10:15.521 [INF] CRTR: Pruning channel graph using block 4b4fb2dfd4ccfc6a13718278f2c529ef96dedf934e1169def2ce5d7ecfd332c2 (height=1888)
DEBUG:lnd(16331):2017-11-29 18:10:15.521 [INF] CRTR: Pruning channel graph using block 4b4fb2dfd4ccfc6a13718278f2c529ef96dedf934e1169def2ce5d7ecfd332c2 (height=1888)
DEBUG:lnd(16331):2017-11-29 18:10:15.523 [INF] NTFN: New block: height=1888, sha=4b4fb2dfd4ccfc6a13718278f2c529ef96dedf934e1169def2ce5d7ecfd332c2
DEBUG:lnd(16332):2017-11-29 18:10:15.523 [INF] NTFN: New block: height=1888, sha=4b4fb2dfd4ccfc6a13718278f2c529ef96dedf934e1169def2ce5d7ecfd332c2
DEBUG:lnd(16331):2017-11-29 18:10:15.524 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:15.524 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:15.539 [INF] CRTR: Block 4b4fb2dfd4ccfc6a13718278f2c529ef96dedf934e1169def2ce5d7ecfd332c2 (height=1888) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:15.542 [INF] CRTR: Block 4b4fb2dfd4ccfc6a13718278f2c529ef96dedf934e1169def2ce5d7ecfd332c2 (height=1888) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:16.550 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:16.556 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:16.582 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:16 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:16 keypool reserve 2351
DEBUG:bitcoind:2017-11-29 17:10:16 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:16 UpdateTip: new best=77bb239be431d55542ad23b59cb203c1a95a924a30e6e42929dde476e2921e9e height=1889 version=0x20000000 log2_work=11.884171 tx=2079 date='2017-11-29 17:10:16' progress=1.000000 cache=0.4MiB(2065txo)
DEBUG:bitcoind:2017-11-29 17:10:16 AddToWallet b3fcdb866f2e375b7b6ec4d814b207618d1f8542152ccbd6dc86b561d1166c31 new
DEBUG:bitcoind:2017-11-29 17:10:16 keypool keep 2351
DEBUG:lnd(16331):2017-11-29 18:10:16.747 [INF] CRTR: Pruning channel graph using block 77bb239be431d55542ad23b59cb203c1a95a924a30e6e42929dde476e2921e9e (height=1889)
DEBUG:lnd(16332):2017-11-29 18:10:16.747 [INF] CRTR: Pruning channel graph using block 77bb239be431d55542ad23b59cb203c1a95a924a30e6e42929dde476e2921e9e (height=1889)
DEBUG:lnd(16332):2017-11-29 18:10:16.749 [INF] NTFN: New block: height=1889, sha=77bb239be431d55542ad23b59cb203c1a95a924a30e6e42929dde476e2921e9e
DEBUG:lnd(16331):2017-11-29 18:10:16.749 [INF] NTFN: New block: height=1889, sha=77bb239be431d55542ad23b59cb203c1a95a924a30e6e42929dde476e2921e9e
DEBUG:lnd(16331):2017-11-29 18:10:16.750 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:16.750 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:16.762 [INF] CRTR: Block 77bb239be431d55542ad23b59cb203c1a95a924a30e6e42929dde476e2921e9e (height=1889) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:16.765 [INF] CRTR: Block 77bb239be431d55542ad23b59cb203c1a95a924a30e6e42929dde476e2921e9e (height=1889) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:17.667 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:17.671 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:17.699 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:17 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:17 keypool reserve 2352
DEBUG:bitcoind:2017-11-29 17:10:17 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:17 UpdateTip: new best=0b74844a54eace05055a0581fd305fee0fdc905b078b5068ba26f7fceec47ef5 height=1890 version=0x20000000 log2_work=11.884934 tx=2080 date='2017-11-29 17:10:17' progress=1.000000 cache=0.4MiB(2066txo)
DEBUG:bitcoind:2017-11-29 17:10:17 AddToWallet efbc7c9c02b046e2b3d3d2f67a94372ea19444e367435cef13904238af1ec5c9 new
DEBUG:bitcoind:2017-11-29 17:10:17 keypool keep 2352
DEBUG:lnd(16332):2017-11-29 18:10:17.860 [INF] CRTR: Pruning channel graph using block 0b74844a54eace05055a0581fd305fee0fdc905b078b5068ba26f7fceec47ef5 (height=1890)
DEBUG:lnd(16332):2017-11-29 18:10:17.862 [INF] NTFN: New block: height=1890, sha=0b74844a54eace05055a0581fd305fee0fdc905b078b5068ba26f7fceec47ef5
DEBUG:lnd(16331):2017-11-29 18:10:17.860 [INF] CRTR: Pruning channel graph using block 0b74844a54eace05055a0581fd305fee0fdc905b078b5068ba26f7fceec47ef5 (height=1890)
DEBUG:lnd(16331):2017-11-29 18:10:17.862 [INF] NTFN: New block: height=1890, sha=0b74844a54eace05055a0581fd305fee0fdc905b078b5068ba26f7fceec47ef5
DEBUG:lnd(16331):2017-11-29 18:10:17.863 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:17.863 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:17.874 [INF] CRTR: Block 0b74844a54eace05055a0581fd305fee0fdc905b078b5068ba26f7fceec47ef5 (height=1890) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:17.877 [INF] CRTR: Block 0b74844a54eace05055a0581fd305fee0fdc905b078b5068ba26f7fceec47ef5 (height=1890) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:18.775 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:18.779 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:18.799 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:18 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:18 keypool reserve 2353
DEBUG:bitcoind:2017-11-29 17:10:18 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:18 UpdateTip: new best=32c9f7d19da07cf21eb79ab0679dc746d85dafa9cd1d5a6d3bf1d7b808518053 height=1891 version=0x20000000 log2_work=11.885696 tx=2081 date='2017-11-29 17:10:18' progress=1.000000 cache=0.4MiB(2067txo)
DEBUG:bitcoind:2017-11-29 17:10:18 AddToWallet 1928b0fe877f073979556b747743c8184bdefafa10016e8d14f4487479ed01c5 new
DEBUG:lnd(16331):2017-11-29 18:10:18.838 [INF] CRTR: Pruning channel graph using block 32c9f7d19da07cf21eb79ab0679dc746d85dafa9cd1d5a6d3bf1d7b808518053 (height=1891)
DEBUG:lnd(16332):2017-11-29 18:10:18.838 [INF] CRTR: Pruning channel graph using block 32c9f7d19da07cf21eb79ab0679dc746d85dafa9cd1d5a6d3bf1d7b808518053 (height=1891)
DEBUG:lnd(16332):2017-11-29 18:10:18.839 [INF] NTFN: New block: height=1891, sha=32c9f7d19da07cf21eb79ab0679dc746d85dafa9cd1d5a6d3bf1d7b808518053
DEBUG:lnd(16331):2017-11-29 18:10:18.839 [INF] NTFN: New block: height=1891, sha=32c9f7d19da07cf21eb79ab0679dc746d85dafa9cd1d5a6d3bf1d7b808518053
DEBUG:lnd(16331):2017-11-29 18:10:18.839 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:18.839 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:bitcoind:2017-11-29 17:10:18 keypool keep 2353
DEBUG:lnd(16332):2017-11-29 18:10:18.850 [INF] CRTR: Block 32c9f7d19da07cf21eb79ab0679dc746d85dafa9cd1d5a6d3bf1d7b808518053 (height=1891) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:18.852 [INF] CRTR: Block 32c9f7d19da07cf21eb79ab0679dc746d85dafa9cd1d5a6d3bf1d7b808518053 (height=1891) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:19.879 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:19.884 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:19.913 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:19 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:19 keypool reserve 2354
DEBUG:bitcoind:2017-11-29 17:10:19 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:19 UpdateTip: new best=627ec7768b32988aab4c485a1a084f2ddbb25da3ad9cfb2d2df82a05743d4728 height=1892 version=0x20000000 log2_work=11.886459 tx=2082 date='2017-11-29 17:10:19' progress=1.000000 cache=0.4MiB(2068txo)
DEBUG:bitcoind:2017-11-29 17:10:19 AddToWallet b943830d5dbed87f28e0a0427d65c9c2f4d727d3d1f786073b4c7f1bdd3ed309 new
DEBUG:lnd(16331):2017-11-29 18:10:19.974 [INF] CRTR: Pruning channel graph using block 627ec7768b32988aab4c485a1a084f2ddbb25da3ad9cfb2d2df82a05743d4728 (height=1892)
DEBUG:lnd(16332):2017-11-29 18:10:19.974 [INF] CRTR: Pruning channel graph using block 627ec7768b32988aab4c485a1a084f2ddbb25da3ad9cfb2d2df82a05743d4728 (height=1892)
DEBUG:lnd(16332):2017-11-29 18:10:19.976 [INF] NTFN: New block: height=1892, sha=627ec7768b32988aab4c485a1a084f2ddbb25da3ad9cfb2d2df82a05743d4728
DEBUG:lnd(16331):2017-11-29 18:10:19.976 [INF] NTFN: New block: height=1892, sha=627ec7768b32988aab4c485a1a084f2ddbb25da3ad9cfb2d2df82a05743d4728
DEBUG:bitcoind:2017-11-29 17:10:19 keypool keep 2354
DEBUG:lnd(16331):2017-11-29 18:10:19.977 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:19.977 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:19.983 [INF] CRTR: Block 627ec7768b32988aab4c485a1a084f2ddbb25da3ad9cfb2d2df82a05743d4728 (height=1892) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:19.983 [INF] CRTR: Block 627ec7768b32988aab4c485a1a084f2ddbb25da3ad9cfb2d2df82a05743d4728 (height=1892) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:20.999 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:21.001 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:21.013 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:21 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:21 keypool reserve 2355
DEBUG:bitcoind:2017-11-29 17:10:21 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:21 UpdateTip: new best=19cbfe0a0bac283842e7be9be8ad4f155a7b775283561339049d01e184bce4bf height=1893 version=0x20000000 log2_work=11.887221 tx=2083 date='2017-11-29 17:10:21' progress=1.000000 cache=0.4MiB(2069txo)
DEBUG:bitcoind:2017-11-29 17:10:21 AddToWallet a52a2a1ce4914505f76a1016687db4bbc0d9e3e27c407161f277fabe59d1257b new
DEBUG:bitcoind:2017-11-29 17:10:21 keypool keep 2355
DEBUG:lnd(16331):2017-11-29 18:10:21.150 [INF] CRTR: Pruning channel graph using block 19cbfe0a0bac283842e7be9be8ad4f155a7b775283561339049d01e184bce4bf (height=1893)
DEBUG:lnd(16332):2017-11-29 18:10:21.150 [INF] CRTR: Pruning channel graph using block 19cbfe0a0bac283842e7be9be8ad4f155a7b775283561339049d01e184bce4bf (height=1893)
DEBUG:lnd(16332):2017-11-29 18:10:21.151 [INF] NTFN: New block: height=1893, sha=19cbfe0a0bac283842e7be9be8ad4f155a7b775283561339049d01e184bce4bf
DEBUG:lnd(16331):2017-11-29 18:10:21.151 [INF] NTFN: New block: height=1893, sha=19cbfe0a0bac283842e7be9be8ad4f155a7b775283561339049d01e184bce4bf
DEBUG:lnd(16331):2017-11-29 18:10:21.152 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:21.152 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:21.161 [INF] CRTR: Block 19cbfe0a0bac283842e7be9be8ad4f155a7b775283561339049d01e184bce4bf (height=1893) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:21.161 [INF] CRTR: Block 19cbfe0a0bac283842e7be9be8ad4f155a7b775283561339049d01e184bce4bf (height=1893) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:22.065 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:22.071 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:22.101 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:22 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:22 keypool reserve 2356
DEBUG:bitcoind:2017-11-29 17:10:22 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:22 UpdateTip: new best=55f1ae4965886784f17710c8fcb9b38bc5cf4e69f39cc2ac2d116bee8b332474 height=1894 version=0x20000000 log2_work=11.887982 tx=2084 date='2017-11-29 17:10:22' progress=1.000000 cache=0.4MiB(2070txo)
DEBUG:bitcoind:2017-11-29 17:10:22 AddToWallet 1c4a20d1448a807349297e1eef17b8c79a191f19be9ce2ec015c0827fbaef304 new
DEBUG:bitcoind:2017-11-29 17:10:22 keypool keep 2356
DEBUG:lnd(16331):2017-11-29 18:10:22.271 [INF] CRTR: Pruning channel graph using block 55f1ae4965886784f17710c8fcb9b38bc5cf4e69f39cc2ac2d116bee8b332474 (height=1894)
DEBUG:lnd(16332):2017-11-29 18:10:22.272 [INF] CRTR: Pruning channel graph using block 55f1ae4965886784f17710c8fcb9b38bc5cf4e69f39cc2ac2d116bee8b332474 (height=1894)
DEBUG:lnd(16332):2017-11-29 18:10:22.281 [INF] NTFN: New block: height=1894, sha=55f1ae4965886784f17710c8fcb9b38bc5cf4e69f39cc2ac2d116bee8b332474
DEBUG:lnd(16331):2017-11-29 18:10:22.280 [INF] NTFN: New block: height=1894, sha=55f1ae4965886784f17710c8fcb9b38bc5cf4e69f39cc2ac2d116bee8b332474
DEBUG:lnd(16331):2017-11-29 18:10:22.282 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:22.283 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:22.291 [INF] CRTR: Block 55f1ae4965886784f17710c8fcb9b38bc5cf4e69f39cc2ac2d116bee8b332474 (height=1894) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:22.297 [INF] CRTR: Block 55f1ae4965886784f17710c8fcb9b38bc5cf4e69f39cc2ac2d116bee8b332474 (height=1894) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:23.181 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:23.183 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:23.193 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:23 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:23 keypool reserve 2357
DEBUG:bitcoind:2017-11-29 17:10:23 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:23 UpdateTip: new best=0ebcf349228230b352fcbb77c8f2f2848a2e565866259195566afec049755e86 height=1895 version=0x20000000 log2_work=11.888743 tx=2085 date='2017-11-29 17:10:23' progress=1.000000 cache=0.4MiB(2071txo)
DEBUG:bitcoind:2017-11-29 17:10:23 AddToWallet b2e2c108824920b02caca6d9784a3bed0378bc1584cb504767dd51fa3ac54226 new
DEBUG:bitcoind:2017-11-29 17:10:23 keypool keep 2357
DEBUG:lnd(16332):2017-11-29 18:10:23.235 [INF] CRTR: Pruning channel graph using block 0ebcf349228230b352fcbb77c8f2f2848a2e565866259195566afec049755e86 (height=1895)
DEBUG:lnd(16331):2017-11-29 18:10:23.235 [INF] CRTR: Pruning channel graph using block 0ebcf349228230b352fcbb77c8f2f2848a2e565866259195566afec049755e86 (height=1895)
DEBUG:lnd(16331):2017-11-29 18:10:23.235 [INF] NTFN: New block: height=1895, sha=0ebcf349228230b352fcbb77c8f2f2848a2e565866259195566afec049755e86
DEBUG:lnd(16331):2017-11-29 18:10:23.236 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:23.236 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:23.236 [INF] NTFN: New block: height=1895, sha=0ebcf349228230b352fcbb77c8f2f2848a2e565866259195566afec049755e86
DEBUG:lnd(16331):2017-11-29 18:10:23.248 [INF] CRTR: Block 0ebcf349228230b352fcbb77c8f2f2848a2e565866259195566afec049755e86 (height=1895) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:23.254 [INF] CRTR: Block 0ebcf349228230b352fcbb77c8f2f2848a2e565866259195566afec049755e86 (height=1895) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:24.269 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:24.283 [INF] RPCS: [listchannels] fetched 1 channels from DB
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:24.340 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:24 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:24 keypool reserve 2358
DEBUG:bitcoind:2017-11-29 17:10:24 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:24 UpdateTip: new best=614889a320bc0057971ac78e0aa30bd067d74069ac04ff555f7d431a5aaa4564 height=1896 version=0x20000000 log2_work=11.889504 tx=2086 date='2017-11-29 17:10:24' progress=1.000000 cache=0.4MiB(2072txo)
DEBUG:bitcoind:2017-11-29 17:10:24 AddToWallet 224fa965735c0a9ef4d4ac4098b62a03e5401b95616a3c0a543f93cf2dade05c new
DEBUG:bitcoind:2017-11-29 17:10:24 keypool keep 2358
DEBUG:lnd(16332):2017-11-29 18:10:24.523 [INF] NTFN: New block: height=1896, sha=614889a320bc0057971ac78e0aa30bd067d74069ac04ff555f7d431a5aaa4564
DEBUG:lnd(16332):2017-11-29 18:10:24.523 [INF] CRTR: Pruning channel graph using block 614889a320bc0057971ac78e0aa30bd067d74069ac04ff555f7d431a5aaa4564 (height=1896)
DEBUG:lnd(16331):2017-11-29 18:10:24.523 [INF] NTFN: New block: height=1896, sha=614889a320bc0057971ac78e0aa30bd067d74069ac04ff555f7d431a5aaa4564
DEBUG:lnd(16331):2017-11-29 18:10:24.524 [INF] CRTR: Pruning channel graph using block 614889a320bc0057971ac78e0aa30bd067d74069ac04ff555f7d431a5aaa4564 (height=1896)
DEBUG:lnd(16331):2017-11-29 18:10:24.524 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:24.524 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:24.541 [INF] CRTR: Block 614889a320bc0057971ac78e0aa30bd067d74069ac04ff555f7d431a5aaa4564 (height=1896) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:24.557 [INF] CRTR: Block 614889a320bc0057971ac78e0aa30bd067d74069ac04ff555f7d431a5aaa4564 (height=1896) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:25.434 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:25.439 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:25.465 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:25 keypool reserve 2359
DEBUG:bitcoind:2017-11-29 17:10:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:25 UpdateTip: new best=04eb379a84c122bdbdc0df7f63bb16dd61362a8272657b728b70ca464b274354 height=1897 version=0x20000000 log2_work=11.890264 tx=2087 date='2017-11-29 17:10:25' progress=1.000000 cache=0.4MiB(2073txo)
DEBUG:bitcoind:2017-11-29 17:10:25 AddToWallet ecda50ef611bf585e5c9444bffe7e9e89d75e1415204cc1cfcef6d1dcc7ba3c2 new
DEBUG:bitcoind:2017-11-29 17:10:25 keypool keep 2359
DEBUG:proc:2017-11-29 18:10:25.639 [INF] BMGR: Processed 9 blocks in the last 10.11s (9 transactions, height 1897, 2017-11-29 18:10:25 +0100 CET)
DEBUG:lnd(16332):2017-11-29 18:10:25.641 [INF] CRTR: Pruning channel graph using block 04eb379a84c122bdbdc0df7f63bb16dd61362a8272657b728b70ca464b274354 (height=1897)
DEBUG:lnd(16332):2017-11-29 18:10:25.643 [INF] NTFN: New block: height=1897, sha=04eb379a84c122bdbdc0df7f63bb16dd61362a8272657b728b70ca464b274354
DEBUG:lnd(16331):2017-11-29 18:10:25.641 [INF] CRTR: Pruning channel graph using block 04eb379a84c122bdbdc0df7f63bb16dd61362a8272657b728b70ca464b274354 (height=1897)
DEBUG:lnd(16331):2017-11-29 18:10:25.642 [INF] NTFN: New block: height=1897, sha=04eb379a84c122bdbdc0df7f63bb16dd61362a8272657b728b70ca464b274354
DEBUG:lnd(16331):2017-11-29 18:10:25.643 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:25.644 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:25.652 [INF] CRTR: Block 04eb379a84c122bdbdc0df7f63bb16dd61362a8272657b728b70ca464b274354 (height=1897) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:25.652 [INF] CRTR: Block 04eb379a84c122bdbdc0df7f63bb16dd61362a8272657b728b70ca464b274354 (height=1897) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:26.563 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:26.569 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:26.598 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:26 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:26 keypool reserve 2360
DEBUG:bitcoind:2017-11-29 17:10:26 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:26 UpdateTip: new best=4ecbb281bf58d50e3ade3cc1a3fecf5a517860d74ce1e57daa964ee9c17d57a5 height=1898 version=0x20000000 log2_work=11.891024 tx=2088 date='2017-11-29 17:10:26' progress=1.000000 cache=0.4MiB(2074txo)
DEBUG:bitcoind:2017-11-29 17:10:26 AddToWallet 5f43c13411e632b5578b5c668a81723cb4791d5bbfbc221baaa88eab859afd8f new
DEBUG:bitcoind:2017-11-29 17:10:26 keypool keep 2360
DEBUG:lnd(16331):2017-11-29 18:10:26.647 [INF] CRTR: Pruning channel graph using block 4ecbb281bf58d50e3ade3cc1a3fecf5a517860d74ce1e57daa964ee9c17d57a5 (height=1898)
DEBUG:lnd(16332):2017-11-29 18:10:26.647 [INF] CRTR: Pruning channel graph using block 4ecbb281bf58d50e3ade3cc1a3fecf5a517860d74ce1e57daa964ee9c17d57a5 (height=1898)
DEBUG:lnd(16331):2017-11-29 18:10:26.647 [INF] NTFN: New block: height=1898, sha=4ecbb281bf58d50e3ade3cc1a3fecf5a517860d74ce1e57daa964ee9c17d57a5
DEBUG:lnd(16332):2017-11-29 18:10:26.647 [INF] NTFN: New block: height=1898, sha=4ecbb281bf58d50e3ade3cc1a3fecf5a517860d74ce1e57daa964ee9c17d57a5
DEBUG:lnd(16331):2017-11-29 18:10:26.647 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:26.648 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:26.671 [INF] CRTR: Block 4ecbb281bf58d50e3ade3cc1a3fecf5a517860d74ce1e57daa964ee9c17d57a5 (height=1898) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:26.671 [INF] CRTR: Block 4ecbb281bf58d50e3ade3cc1a3fecf5a517860d74ce1e57daa964ee9c17d57a5 (height=1898) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:27.451 [DBG] PEER: Sending Ping to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:10:27.451 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.Ping)(0xc420586640)({
DEBUG:lnd(16332): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331):2017-11-29 18:10:27.451 [DBG] PEER: Received Ping from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:10:27.452 [DBG] PEER: Sending Ping to 127.0.0.1:16332
DEBUG:lnd(16332): PaddingBytes: (lnwire.PingPayload) <nil>
DEBUG:lnd(16331):2017-11-29 18:10:27.452 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Ping)(0xc420673be0)({
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:10:27.452 [DBG] PEER: Received Ping from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:10:27.452 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.Ping)(0xc420fdea40)({
DEBUG:lnd(16332): NumPongBytes: (uint16) 16,
DEBUG:lnd(16332): PaddingBytes: (lnwire.PingPayload) {
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:10:27.453 [DBG] PEER: Sending Pong to 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:10:27.453 [TRC] PEER: writeMessage to 127.0.0.1:35740: (*lnwire.Pong)(0xc420586760)({
DEBUG:lnd(16332): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:10:27.454 [DBG] PEER: Received Pong from 127.0.0.1:35740
DEBUG:lnd(16332):2017-11-29 18:10:27.454 [TRC] PEER: readMessage from 127.0.0.1:35740: (*lnwire.Pong)(0xc420586800)({
DEBUG:lnd(16331): NumPongBytes: (uint16) 16,
DEBUG:lnd(16332): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16331): PaddingBytes: (lnwire.PingPayload) <nil>
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331):})
DEBUG:lnd(16332): }
DEBUG:lnd(16331):
DEBUG:lnd(16332):})
DEBUG:lnd(16331):2017-11-29 18:10:27.452 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Ping)(0xc421098340)({
DEBUG:lnd(16332):
DEBUG:lnd(16331): NumPongBytes: (uint16) 16,
DEBUG:lnd(16331): PaddingBytes: (lnwire.PingPayload) {
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:10:27.453 [DBG] PEER: Sending Pong to 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:10:27.453 [TRC] PEER: writeMessage to 127.0.0.1:16332: (*lnwire.Pong)(0xc42055eb80)({
DEBUG:lnd(16331): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16331): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:lnd(16331):2017-11-29 18:10:27.455 [DBG] PEER: Received Pong from 127.0.0.1:16332
DEBUG:lnd(16331):2017-11-29 18:10:27.456 [TRC] PEER: readMessage from 127.0.0.1:16332: (*lnwire.Pong)(0xc42055ec20)({
DEBUG:lnd(16331): PongBytes: (lnwire.PongPayload) (len=16 cap=16) {
DEBUG:lnd(16331): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16331): }
DEBUG:lnd(16331):})
DEBUG:lnd(16331):
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:27.679 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:27.685 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:27.714 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1888, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:27 keypool reserve 2361
DEBUG:bitcoind:2017-11-29 17:10:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:27 UpdateTip: new best=60d731dc700ddf3e004e2577c3472b361eec77b4134274c8f02aae981f060c80 height=1899 version=0x20000000 log2_work=11.891784 tx=2089 date='2017-11-29 17:10:27' progress=1.000000 cache=0.4MiB(2075txo)
DEBUG:bitcoind:2017-11-29 17:10:27 AddToWallet 1be636d336896dde348dfe40bc003c21ad46c2dc426d2f2d9d9b7e4e366455c4 new
DEBUG:bitcoind:2017-11-29 17:10:27 keypool keep 2361
DEBUG:lnd(16332):2017-11-29 18:10:27.880 [INF] CRTR: Pruning channel graph using block 60d731dc700ddf3e004e2577c3472b361eec77b4134274c8f02aae981f060c80 (height=1899)
DEBUG:lnd(16331):2017-11-29 18:10:27.880 [INF] CRTR: Pruning channel graph using block 60d731dc700ddf3e004e2577c3472b361eec77b4134274c8f02aae981f060c80 (height=1899)
DEBUG:lnd(16331):2017-11-29 18:10:27.880 [INF] NTFN: New block: height=1899, sha=60d731dc700ddf3e004e2577c3472b361eec77b4134274c8f02aae981f060c80
DEBUG:lnd(16331):2017-11-29 18:10:27.882 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:27.882 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:27.882 [INF] NTFN: New block: height=1899, sha=60d731dc700ddf3e004e2577c3472b361eec77b4134274c8f02aae981f060c80
DEBUG:lnd(16331):2017-11-29 18:10:27.890 [INF] CRTR: Block 60d731dc700ddf3e004e2577c3472b361eec77b4134274c8f02aae981f060c80 (height=1899) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:27.901 [INF] CRTR: Block 60d731dc700ddf3e004e2577c3472b361eec77b4134274c8f02aae981f060c80 (height=1899) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:28.794 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:28.801 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:28.823 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:28 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:28 keypool reserve 2362
DEBUG:bitcoind:2017-11-29 17:10:28 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:28 UpdateTip: new best=3fda53f39ad2a291fda1939cd4d6c7b3b29b20c06d3ed04559bb792592d0c609 height=1900 version=0x20000000 log2_work=11.892543 tx=2090 date='2017-11-29 17:10:28' progress=1.000000 cache=0.4MiB(2076txo)
DEBUG:bitcoind:2017-11-29 17:10:28 AddToWallet dc5433eaf558f33dc38772cf2387d404ae0faf6bc95b8f44429002c69d7c3bd5 new
DEBUG:bitcoind:2017-11-29 17:10:28 keypool keep 2362
DEBUG:lnd(16331):2017-11-29 18:10:28.865 [INF] CRTR: Pruning channel graph using block 3fda53f39ad2a291fda1939cd4d6c7b3b29b20c06d3ed04559bb792592d0c609 (height=1900)
DEBUG:lnd(16331):2017-11-29 18:10:28.866 [INF] NTFN: New block: height=1900, sha=3fda53f39ad2a291fda1939cd4d6c7b3b29b20c06d3ed04559bb792592d0c609
DEBUG:lnd(16332):2017-11-29 18:10:28.867 [INF] NTFN: New block: height=1900, sha=3fda53f39ad2a291fda1939cd4d6c7b3b29b20c06d3ed04559bb792592d0c609
DEBUG:lnd(16331):2017-11-29 18:10:28.868 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16332):2017-11-29 18:10:28.867 [INF] CRTR: Pruning channel graph using block 3fda53f39ad2a291fda1939cd4d6c7b3b29b20c06d3ed04559bb792592d0c609 (height=1900)
DEBUG:lnd(16331):2017-11-29 18:10:28.868 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:28.883 [INF] CRTR: Block 3fda53f39ad2a291fda1939cd4d6c7b3b29b20c06d3ed04559bb792592d0c609 (height=1900) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:28.911 [INF] CRTR: Block 3fda53f39ad2a291fda1939cd4d6c7b3b29b20c06d3ed04559bb792592d0c609 (height=1900) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:29.903 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:29.908 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:29.936 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:29 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:29 keypool reserve 2363
DEBUG:bitcoind:2017-11-29 17:10:29 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:29 UpdateTip: new best=29f44e9faea95b693960ed0a64184125421f2af5d76dd7cde783ff804306d529 height=1901 version=0x20000000 log2_work=11.893302 tx=2091 date='2017-11-29 17:10:29' progress=1.000000 cache=0.4MiB(2077txo)
DEBUG:bitcoind:2017-11-29 17:10:29 AddToWallet cd8f8b11a925ccfceeef1096a38dcc05cf8f1b718f19f7c0c4c41e6945dbca30 new
DEBUG:lnd(16332):2017-11-29 18:10:29.991 [INF] CRTR: Pruning channel graph using block 29f44e9faea95b693960ed0a64184125421f2af5d76dd7cde783ff804306d529 (height=1901)
DEBUG:lnd(16331):2017-11-29 18:10:29.992 [INF] CRTR: Pruning channel graph using block 29f44e9faea95b693960ed0a64184125421f2af5d76dd7cde783ff804306d529 (height=1901)
DEBUG:bitcoind:2017-11-29 17:10:29 keypool keep 2363
DEBUG:lnd(16332):2017-11-29 18:10:29.992 [INF] NTFN: New block: height=1901, sha=29f44e9faea95b693960ed0a64184125421f2af5d76dd7cde783ff804306d529
DEBUG:lnd(16331):2017-11-29 18:10:29.992 [INF] NTFN: New block: height=1901, sha=29f44e9faea95b693960ed0a64184125421f2af5d76dd7cde783ff804306d529
DEBUG:lnd(16331):2017-11-29 18:10:29.992 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:29.992 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:30.003 [INF] CRTR: Block 29f44e9faea95b693960ed0a64184125421f2af5d76dd7cde783ff804306d529 (height=1901) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:30.003 [INF] CRTR: Block 29f44e9faea95b693960ed0a64184125421f2af5d76dd7cde783ff804306d529 (height=1901) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:31.022 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:31.027 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:31.064 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:31 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:31 keypool reserve 2364
DEBUG:bitcoind:2017-11-29 17:10:31 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:31 UpdateTip: new best=3e71945ec5cd5d25e78310553a557ac9fd9a628ffd9762fb8ffb2f76f6efa6e3 height=1902 version=0x20000000 log2_work=11.89406 tx=2092 date='2017-11-29 17:10:31' progress=1.000000 cache=0.4MiB(2078txo)
DEBUG:bitcoind:2017-11-29 17:10:31 AddToWallet 1930ad80d33522429d210ec854b1e2e2484963dddc00127074680cc3f46b3ceb new
DEBUG:bitcoind:2017-11-29 17:10:31 keypool keep 2364
DEBUG:lnd(16331):2017-11-29 18:10:31.238 [INF] CRTR: Pruning channel graph using block 3e71945ec5cd5d25e78310553a557ac9fd9a628ffd9762fb8ffb2f76f6efa6e3 (height=1902)
DEBUG:lnd(16331):2017-11-29 18:10:31.239 [INF] NTFN: New block: height=1902, sha=3e71945ec5cd5d25e78310553a557ac9fd9a628ffd9762fb8ffb2f76f6efa6e3
DEBUG:lnd(16332):2017-11-29 18:10:31.238 [INF] NTFN: New block: height=1902, sha=3e71945ec5cd5d25e78310553a557ac9fd9a628ffd9762fb8ffb2f76f6efa6e3
DEBUG:lnd(16332):2017-11-29 18:10:31.238 [INF] CRTR: Pruning channel graph using block 3e71945ec5cd5d25e78310553a557ac9fd9a628ffd9762fb8ffb2f76f6efa6e3 (height=1902)
DEBUG:lnd(16331):2017-11-29 18:10:31.240 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:31.240 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:31.250 [INF] CRTR: Block 3e71945ec5cd5d25e78310553a557ac9fd9a628ffd9762fb8ffb2f76f6efa6e3 (height=1902) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:31.277 [INF] CRTR: Block 3e71945ec5cd5d25e78310553a557ac9fd9a628ffd9762fb8ffb2f76f6efa6e3 (height=1902) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:32.151 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:32.157 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:32.186 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:32 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:32 keypool reserve 2365
DEBUG:bitcoind:2017-11-29 17:10:32 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:32 UpdateTip: new best=682d7ed08f1230591e3aa4f7823d25f135764c0b622ab4a0bda6b56181ea6f29 height=1903 version=0x20000000 log2_work=11.894818 tx=2093 date='2017-11-29 17:10:32' progress=1.000000 cache=0.4MiB(2079txo)
DEBUG:bitcoind:2017-11-29 17:10:32 AddToWallet e21a472575b9eb0220e3db010a06e6ab8c87670e502dc3c5212f5b4ff5b48107 new
DEBUG:bitcoind:2017-11-29 17:10:32 keypool keep 2365
DEBUG:lnd(16331):2017-11-29 18:10:32.336 [INF] CRTR: Pruning channel graph using block 682d7ed08f1230591e3aa4f7823d25f135764c0b622ab4a0bda6b56181ea6f29 (height=1903)
DEBUG:lnd(16332):2017-11-29 18:10:32.336 [INF] CRTR: Pruning channel graph using block 682d7ed08f1230591e3aa4f7823d25f135764c0b622ab4a0bda6b56181ea6f29 (height=1903)
DEBUG:lnd(16332):2017-11-29 18:10:32.337 [INF] NTFN: New block: height=1903, sha=682d7ed08f1230591e3aa4f7823d25f135764c0b622ab4a0bda6b56181ea6f29
DEBUG:lnd(16331):2017-11-29 18:10:32.337 [INF] NTFN: New block: height=1903, sha=682d7ed08f1230591e3aa4f7823d25f135764c0b622ab4a0bda6b56181ea6f29
DEBUG:lnd(16331):2017-11-29 18:10:32.338 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:32.338 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:32.350 [INF] CRTR: Block 682d7ed08f1230591e3aa4f7823d25f135764c0b622ab4a0bda6b56181ea6f29 (height=1903) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:32.353 [INF] CRTR: Block 682d7ed08f1230591e3aa4f7823d25f135764c0b622ab4a0bda6b56181ea6f29 (height=1903) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:33.249 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:33.256 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:33.288 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:33 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:33 keypool reserve 2366
DEBUG:bitcoind:2017-11-29 17:10:33 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:33 UpdateTip: new best=641817c5e1c4ba04700b5b3cc3173d3788e8ebcad84769b4d5438f22de27a2be height=1904 version=0x20000000 log2_work=11.895575 tx=2094 date='2017-11-29 17:10:33' progress=1.000000 cache=0.4MiB(2080txo)
DEBUG:bitcoind:2017-11-29 17:10:33 AddToWallet 301569cf674beb55985c525fc1dd55e1a5cd792173b579e49509689f740d7a46 new
DEBUG:bitcoind:2017-11-29 17:10:33 keypool keep 2366
DEBUG:lnd(16331):2017-11-29 18:10:33.467 [INF] NTFN: New block: height=1904, sha=641817c5e1c4ba04700b5b3cc3173d3788e8ebcad84769b4d5438f22de27a2be
DEBUG:lnd(16332):2017-11-29 18:10:33.468 [INF] CRTR: Pruning channel graph using block 641817c5e1c4ba04700b5b3cc3173d3788e8ebcad84769b4d5438f22de27a2be (height=1904)
DEBUG:lnd(16331):2017-11-29 18:10:33.475 [INF] CRTR: Pruning channel graph using block 641817c5e1c4ba04700b5b3cc3173d3788e8ebcad84769b4d5438f22de27a2be (height=1904)
DEBUG:lnd(16331):2017-11-29 18:10:33.475 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:33.475 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:33.479 [INF] NTFN: New block: height=1904, sha=641817c5e1c4ba04700b5b3cc3173d3788e8ebcad84769b4d5438f22de27a2be
DEBUG:lnd(16332):2017-11-29 18:10:33.480 [INF] CRTR: Block 641817c5e1c4ba04700b5b3cc3173d3788e8ebcad84769b4d5438f22de27a2be (height=1904) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:33.506 [INF] CRTR: Block 641817c5e1c4ba04700b5b3cc3173d3788e8ebcad84769b4d5438f22de27a2be (height=1904) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:34.378 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:34.383 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:34.408 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:34 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:34 keypool reserve 2367
DEBUG:bitcoind:2017-11-29 17:10:34 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:34 UpdateTip: new best=729c10e945d4b64cf757339c7a302f9d39d0e5534c4e5590809af6b11c6c72dd height=1905 version=0x20000000 log2_work=11.896332 tx=2095 date='2017-11-29 17:10:34' progress=1.000000 cache=0.4MiB(2081txo)
DEBUG:bitcoind:2017-11-29 17:10:34 AddToWallet e03717d9e4d1e81f24b27c7922094851542e92897ce26ad888af918f0085a61e new
DEBUG:bitcoind:2017-11-29 17:10:34 keypool keep 2367
DEBUG:lnd(16332):2017-11-29 18:10:34.564 [INF] CRTR: Pruning channel graph using block 729c10e945d4b64cf757339c7a302f9d39d0e5534c4e5590809af6b11c6c72dd (height=1905)
DEBUG:lnd(16331):2017-11-29 18:10:34.564 [INF] CRTR: Pruning channel graph using block 729c10e945d4b64cf757339c7a302f9d39d0e5534c4e5590809af6b11c6c72dd (height=1905)
DEBUG:lnd(16332):2017-11-29 18:10:34.565 [INF] NTFN: New block: height=1905, sha=729c10e945d4b64cf757339c7a302f9d39d0e5534c4e5590809af6b11c6c72dd
DEBUG:lnd(16331):2017-11-29 18:10:34.565 [INF] NTFN: New block: height=1905, sha=729c10e945d4b64cf757339c7a302f9d39d0e5534c4e5590809af6b11c6c72dd
DEBUG:lnd(16331):2017-11-29 18:10:34.566 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:34.566 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:34.580 [INF] CRTR: Block 729c10e945d4b64cf757339c7a302f9d39d0e5534c4e5590809af6b11c6c72dd (height=1905) closed 0 channels
DEBUG:lnd(16331):2017-11-29 18:10:34.583 [INF] CRTR: Block 729c10e945d4b64cf757339c7a302f9d39d0e5534c4e5590809af6b11c6c72dd (height=1905) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:35.479 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:35.485 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:35.513 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:35 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:35 keypool reserve 2368
DEBUG:bitcoind:2017-11-29 17:10:35 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:35 UpdateTip: new best=4d2290ae541f56da974b00cbfb7bd265a6864c1c2897a4a961733df7f2dabc7b height=1906 version=0x20000000 log2_work=11.897089 tx=2096 date='2017-11-29 17:10:35' progress=1.000000 cache=0.4MiB(2082txo)
DEBUG:bitcoind:2017-11-29 17:10:35 AddToWallet 96bc22d2ced4d5cd98e2e5f03eb2f94606ba536caf7b7fb38bf779c7219c526b new
DEBUG:bitcoind:2017-11-29 17:10:35 keypool keep 2368
DEBUG:proc:2017-11-29 18:10:35.688 [INF] BMGR: Processed 9 blocks in the last 10.04s (9 transactions, height 1906, 2017-11-29 18:10:35 +0100 CET)
DEBUG:lnd(16331):2017-11-29 18:10:35.689 [INF] CRTR: Pruning channel graph using block 4d2290ae541f56da974b00cbfb7bd265a6864c1c2897a4a961733df7f2dabc7b (height=1906)
DEBUG:lnd(16332):2017-11-29 18:10:35.689 [INF] CRTR: Pruning channel graph using block 4d2290ae541f56da974b00cbfb7bd265a6864c1c2897a4a961733df7f2dabc7b (height=1906)
DEBUG:lnd(16332):2017-11-29 18:10:35.690 [INF] NTFN: New block: height=1906, sha=4d2290ae541f56da974b00cbfb7bd265a6864c1c2897a4a961733df7f2dabc7b
DEBUG:lnd(16331):2017-11-29 18:10:35.690 [INF] NTFN: New block: height=1906, sha=4d2290ae541f56da974b00cbfb7bd265a6864c1c2897a4a961733df7f2dabc7b
DEBUG:lnd(16331):2017-11-29 18:10:35.691 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:35.691 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16331):2017-11-29 18:10:35.709 [INF] CRTR: Block 4d2290ae541f56da974b00cbfb7bd265a6864c1c2897a4a961733df7f2dabc7b (height=1906) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:35.715 [INF] CRTR: Block 4d2290ae541f56da974b00cbfb7bd265a6864c1c2897a4a961733df7f2dabc7b (height=1906) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:36.391 [DBG] PEER: Received Ping from 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:10:36.391 [TRC] PEER: readMessage from 127.0.0.1:16333: (*lnwire.Ping)(0xc42068e100)({
DEBUG:lnd(16332): NumPongBytes: (uint16) 472,
DEBUG:lnd(16332): PaddingBytes: (lnwire.PingPayload) (len=493 cap=493) {
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 |.............|
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:lnd(16332):2017-11-29 18:10:36.392 [DBG] PEER: Sending Pong to 127.0.0.1:16333
DEBUG:lnd(16332):2017-11-29 18:10:36.395 [TRC] PEER: writeMessage to 127.0.0.1:16333: (*lnwire.Pong)(0xc4206a28e0)({
DEBUG:lnd(16332): PongBytes: (lnwire.PongPayload) (len=472 cap=472) {
DEBUG:lnd(16332): 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000060 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000080 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
DEBUG:lnd(16332): 000001d0 00 00 00 00 00 00 00 00 |........|
DEBUG:lnd(16332): }
DEBUG:lnd(16332):})
DEBUG:lnd(16332):
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:36.608 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:36.615 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:36.643 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 17:10:36 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 17:10:36 keypool reserve 2369
DEBUG:bitcoind:2017-11-29 17:10:36 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 17:10:36 UpdateTip: new best=09da0d173aa3a80523b90f5b25608c8ae3756ddd91375df32370427ffb5efd72 height=1907 version=0x20000000 log2_work=11.897845 tx=2097 date='2017-11-29 17:10:36' progress=1.000000 cache=0.4MiB(2083txo)
DEBUG:bitcoind:2017-11-29 17:10:36 AddToWallet 0b4f4392a5a768fcac18c05ddddd84231f0468db59a1040181f6fd3b8dbaee0c new
DEBUG:bitcoind:2017-11-29 17:10:36 keypool keep 2369
DEBUG:lnd(16331):2017-11-29 18:10:36.806 [INF] CRTR: Pruning channel graph using block 09da0d173aa3a80523b90f5b25608c8ae3756ddd91375df32370427ffb5efd72 (height=1907)
DEBUG:lnd(16332):2017-11-29 18:10:36.806 [INF] CRTR: Pruning channel graph using block 09da0d173aa3a80523b90f5b25608c8ae3756ddd91375df32370427ffb5efd72 (height=1907)
DEBUG:lnd(16331):2017-11-29 18:10:36.808 [INF] NTFN: New block: height=1907, sha=09da0d173aa3a80523b90f5b25608c8ae3756ddd91375df32370427ffb5efd72
DEBUG:lnd(16331):2017-11-29 18:10:36.809 [ERR] LNWL: unable to query estimator: -1: Command unimplemented
DEBUG:lnd(16331):2017-11-29 18:10:36.809 [DBG] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0): sampled fee rate for 3 block conf: 6000 sat/kw
DEBUG:lnd(16332):2017-11-29 18:10:36.808 [INF] NTFN: New block: height=1907, sha=09da0d173aa3a80523b90f5b25608c8ae3756ddd91375df32370427ffb5efd72
DEBUG:lnd(16331):2017-11-29 18:10:36.822 [INF] CRTR: Block 09da0d173aa3a80523b90f5b25608c8ae3756ddd91375df32370427ffb5efd72 (height=1907) closed 0 channels
DEBUG:lnd(16332):2017-11-29 18:10:36.823 [INF] CRTR: Block 09da0d173aa3a80523b90f5b25608c8ae3756ddd91375df32370427ffb5efd72 (height=1907) closed 0 channels
DEBUG:root:Checking all channels between [(<lnd.LndNode object at 0x7fb75c970940>, <lnd.LndNode object at 0x7fb731b27a58>), (<lnd.LndNode object at 0x7fb731b27a58>, <eclair.EclairNode object at 0x7fb731ad4550>)]
DEBUG:lnd(16331):2017-11-29 18:10:37.731 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16331):Channel 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 state: active: true
remote_pubkey: "036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
local_balance: 9995656
commit_fee: 4344
commit_weight: 600
fee_per_kw: 6000
DEBUG:lnd(16332):2017-11-29 18:10:37.734 [INF] RPCS: [listchannels] fetched 1 channels from DB
DEBUG:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088 state: active: true
remote_pubkey: "038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088"
channel_point: "bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0"
chan_id: 2030797976567808
capacity: 10000000
remote_balance: 9995656
commit_fee: 4344
commit_weight: 552
fee_per_kw: 6000
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lnd(16332):2017-11-29 18:10:37.745 [INF] RPCS: [listchannels] fetched 1 channels from DB
WARNING:lnd-node(16332):Channel 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 -> 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b', 'alias': 'eclair', 'blockHeight': 1899, 'port': 16333}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16333):Channel 03e9ae9ef218af0292327a1f43169f6346a550953c554db953ddc6f095fe77294b -> 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 not found
--------------------------- Captured stdout teardown ---------------------------
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [INF] PEER: unable to read message from 127.0.0.1:35740: EOF
DEBUG:proc:2017-11-29 18:10:37.841 [ERR] RPCS: Websocket receive error from 127.0.0.1:45854: websocket: close 1006 unexpected EOF
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [TRC] PEER: Disconnecting 127.0.0.1:35740, reason: read handler closed
DEBUG:proc:2017-11-29 18:10:37.841 [ERR] RPCS: Websocket receive error from 127.0.0.1:45858: websocket: close 1006 unexpected EOF
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [DBG] SRVR: Peer 127.0.0.1:35740 has been disconnected
DEBUG:proc:2017-11-29 18:10:37.841 [INF] RPCS: Disconnected websocket client 127.0.0.1:45854
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [DBG] FNDG: Cancelling all reservations for peer 038d90d32bd642200bb7e2e3429c480f29bf68da15639abb31f7b7a65354202088
DEBUG:proc:2017-11-29 18:10:37.841 [ERR] RPCS: Websocket receive error from 127.0.0.1:45860: websocket: close 1006 unexpected EOF
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [INF] HSWC: Removing channel link with ChannelID(33c7873859590badcba082a627de26b1de5f329ef47ad5ff1ee47564621822bd)
DEBUG:proc:2017-11-29 18:10:37.841 [INF] RPCS: Disconnected websocket client 127.0.0.1:45858
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [INF] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) is stopping
DEBUG:proc:2017-11-29 18:10:37.841 [ERR] RPCS: Websocket receive error from 127.0.0.1:45848: websocket: close 1006 unexpected EOF
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [TRC] PEER: writeHandler for peer 127.0.0.1:35740 done
DEBUG:proc:2017-11-29 18:10:37.841 [INF] RPCS: Disconnected websocket client 127.0.0.1:45860
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [TRC] PEER: readHandler for peer 127.0.0.1:35740 done
DEBUG:proc:2017-11-29 18:10:37.841 [INF] RPCS: Disconnected websocket client 127.0.0.1:45848
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [TRC] PEER: Update stream for gossiper exited
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [INF] HSWC: ChannelLink(bd2218626475e41effd57af49e325fdeb126de27a682a0cbad0b59593887c733:0) has exited
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [INF] NTFN: Cancelling epoch notification, epoch_id=4
DEBUG:lnd(16332):2017-11-29 18:10:37.841 [DBG] SRVR: removing peer 127.0.0.1:35740
DEBUG:proc:2017-11-29 18:10:37.865 [ERR] RPCS: Websocket receive error from 127.0.0.1:45864: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:10:37.865 [ERR] RPCS: Websocket receive error from 127.0.0.1:45862: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:10:37.865 [INF] RPCS: Disconnected websocket client 127.0.0.1:45864
DEBUG:proc:2017-11-29 18:10:37.865 [ERR] RPCS: Websocket receive error from 127.0.0.1:45868: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:10:37.865 [INF] RPCS: Disconnected websocket client 127.0.0.1:45862
DEBUG:proc:2017-11-29 18:10:37.865 [ERR] RPCS: Websocket receive error from 127.0.0.1:45870: websocket: close 1006 unexpected EOF
DEBUG:proc:2017-11-29 18:10:37.865 [INF] RPCS: Disconnected websocket client 127.0.0.1:45868
DEBUG:proc:2017-11-29 18:10:37.865 [INF] RPCS: Disconnected websocket client 127.0.0.1:45870
DEBUG:eclair(16333):2017-11-29 18:10:37,866 WARN f.a.eclair.crypto.TransportHandler akka://default/user/$i/server/$b - connection closed
DEBUG:eclair(16333):2017-11-29 18:10:37,867 WARN fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9 - lost connection to 036f802e9c8c060ea90904b3e29b7d65d4db6f5af8b2ab5632c6c4c31af9eb42c9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment