Skip to content

Instantly share code, notes, and snippets.

Created November 29, 2017 21:46
Show Gist options
  • Save anonymous/59399874fe8accb25ceb1e2fbb103eaf to your computer and use it in GitHub Desktop.
Save anonymous/59399874fe8accb25ceb1e2fbb103eaf to your computer and use it in GitHub Desktop.
_______________ test_forwarded_payment[eclair_lightning_eclair] ________________
bitcoind = <utils.BitcoinD object at 0x7fb768e47198>
node_factory = <test.NodeFactory object at 0x7fb75ca6b160>
impls = (<class 'eclair.EclairNode'>, <class 'lightningd.LightningNode'>, <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)
test.py:307:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
lightningd.py:87: in openchannel
 return self.rpc.fundchannel(node_id, satoshis)
.direnv/python-3.5.2/lib/python3.5/site-packages/lightning/lightning.py:44: in wrapper
 return self._call(name, args)
lightningd.py:63: in rpc_call
 r = orig_call(method, args)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <lightning.lightning.LightningRpc object at 0x7fb75c343c88>
method = 'fundchannel'
args = ('033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 10000000)
 def _call(self, method, args):
 logging.debug("Calling %s with arguments %r", method, args)
 
 sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
 sock.connect(self.socket_path)
 self._writeobj(sock, {
 "method": method,
 "params": args,
 "id": 0
 })
 resp = self._readobj(sock)
 sock.close()
 
 logging.debug("Received response for %s call: %r", method, resp)
 if 'error' in resp:
> raise ValueError("RPC call failed: {}".format(resp['error']))
E ValueError: RPC call failed: Peer died
.direnv/python-3.5.2/lib/python3.5/site-packages/lightning/lightning.py:62: ValueError
----------------------------- Captured stdout call -----------------------------
DEBUG:root:Starting '/usr/lib/jvm/java-8-openjdk-amd64/bin/java -Declair.datadir=/tmp/lightning-il5fkavy/test_forwarded_payment[eclair_lightning_eclair]/node-1/ -Declair.printToConsole=true -jar bin/eclair.jar'
DEBUG:root:Waiting for 'connected to tcp://127.0.0.1:29000' in the logs
DEBUG:eclair(16331):17:30:56,347 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml]
DEBUG:eclair(16331):17:30:56,347 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy]
DEBUG:eclair(16331):17:30:56,347 |-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(16331):17:30:56,357 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@4657df5d - 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(16331):17:30:56,393 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16331):17:30:56,395 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16331):17:30:56,401 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16331):17:30:56,417 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.FileAppender]
DEBUG:eclair(16331):17:30:56,419 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [FILE]
DEBUG:eclair(16331):17:30:56,420 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16331):17:30:56,420 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/tmp/lightning-il5fkavy/test_forwarded_payment[eclair_lightning_eclair]/node-1//eclair.log]
DEBUG:eclair(16331):17:30:56,422 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel] to DEBUG
DEBUG:eclair(16331):17:30:56,422 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel.Register] to DEBUG
DEBUG:eclair(16331):17:30:56,422 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.router] to INFO
DEBUG:eclair(16331):17:30:56,671 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16331):17:30:56,672 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16331):17:30:56,672 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16331):17:30:56,673 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [CONSOLE] to Logger[ROOT]
DEBUG:eclair(16331):17:30:56,673 |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to INFO
DEBUG:eclair(16331):17:30:56,673 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [FILE] to Logger[ROOT]
DEBUG:eclair(16331):17:30:56,673 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration.
DEBUG:eclair(16331):17:30:56,674 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@3e1d7637 - Registering current configuration as safe fallback point
DEBUG:eclair(16331):2017-11-29 17:30:56,677 INFO akka.event.slf4j.Slf4jLogger - Slf4jLogger started
DEBUG:eclair(16331):2017-11-29 17:30:56,696 INFO fr.acinq.eclair.Setup - hello!
DEBUG:eclair(16331):2017-11-29 17:30:56,697 INFO fr.acinq.eclair.Setup - version=0.2-SNAPSHOT commit=2d5d68bf3f57363075d04e23447b9c19924d9f8a
DEBUG:eclair(16331):2017-11-29 17:30:56,774 INFO org.bitcoin.Secp256k1Context - couldn't find secp256k1 library, defaulting to spongycastle
DEBUG:eclair(16331):2017-11-29 17:30:57,352 INFO fr.acinq.eclair.Setup - nodeid=031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 alias=eclair
DEBUG:eclair(16331):2017-11-29 17:30:57,353 INFO fr.acinq.eclair.Setup - using chain=regtest chainHash=06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f
DEBUG:eclair(16331):2017-11-29 17:30:57,354 INFO fr.acinq.eclair.Setup - initializing secure random generator
DEBUG:eclair(16331):2017-11-29 17:30:59,060 INFO fr.acinq.eclair.Setup - initial feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:eclair(16331):2017-11-29 17:30:59,074 INFO fr.acinq.eclair.Setup - current feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:bitcoind:2017-11-29 16:30:59 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:30:59 keypool reserve 406
DEBUG:bitcoind:2017-11-29 16:30:59 keypool keep 406
DEBUG:eclair(16331):2017-11-29 17:30:59,112 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - loading network announcements from db...
DEBUG:eclair(16331):2017-11-29 17:30:59,128 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - starting state machine
DEBUG:eclair(16331):2017-11-29 17:30:59,140 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - bound on /0:0:0:0:0:0:0:0:16331
DEBUG:eclair(16331):2017-11-29 17:30:59,146 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - current status channels=0 nodes=0 updates=0
DEBUG:eclair(16331):2017-11-29 17:30:59,176 INFO fr.acinq.eclair.Setup - initial wallet address=2N9nNbCD7QLs8M7AP9F8mgLdpgvbx5KZbdn
DEBUG:eclair(16331):2017-11-29 17:31:00,152 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(16331):Eclair started (pid: 13297)
DEBUG:root:Starting 'bin/lightningd --bitcoin-datadir=/tmp/lightning-il5fkavy/bitcoind --lightning-dir=/tmp/lightning-il5fkavy/test_forwarded_payment[eclair_lightning_eclair]/node-2/ --port=16332 --network=regtest --dev-broadcast-interval=1000 --network=regtest --locktime-blocks=6 --log-level=debug --bitcoind-poll=1s'
DEBUG:root:Waiting for 'Creating IPv6 listener on port' in the logs
DEBUG:proc:lightningd(13498): Trying to guess public addresses...
DEBUG:proc:lightningd(13498): Address 192.168.0.3:16332 is not routable
DEBUG:proc:lightningd(13498): Failed to connect 10 socket: Network is unreachable
DEBUG:proc:lightningd(13498): testing /home/cdecker/dev/lightning-integration/bin/lightningd
DEBUG:proc:lightningd(13498): testing /home/cdecker/dev/lightning-integration/bin/lightning_channeld
DEBUG:proc:lightningd(13498): testing /home/cdecker/dev/lightning-integration/bin/lightning_closingd
DEBUG:proc:lightningd(13498): testing /home/cdecker/dev/lightning-integration/bin/lightning_gossipd
DEBUG:proc:lightningd(13498): testing /home/cdecker/dev/lightning-integration/bin/lightning_hsmd
DEBUG:proc:lightningd(13498): testing /home/cdecker/dev/lightning-integration/bin/lightning_onchaind
DEBUG:proc:lightningd(13498): testing /home/cdecker/dev/lightning-integration/bin/lightning_openingd
DEBUG:proc:lightningd(13498): HSM TRACE: Control: type WIRE_HSMCTL_INIT len 3
DEBUG:proc:lightningd(13498): Adding block 1a226c8365337ad9f321482e869f3d6717411d91a1ee4bda685036df82898f66
DEBUG:proc:lightningd(13498): Adding block ed70e17f18ad3b6738576ec9de71136c82f03f8ea6b0c61df2ceefe2a425787f
DEBUG:proc:lightningd(13498): Adding block ccd9784823b24012df8a0feb46364dd2f2950c8d9cc8828ad9a2a7ccb89def5f
DEBUG:proc:lightningd(13498): Adding block 7dca118335b49f53a038588fc82edaee55c0449fd9db7c92c45f17279444ce65
DEBUG:proc:lightningd(13498): Adding block e074149d7c0dbc21662c5af6245aca229babd82e464956291686b7dcd3fe6219
DEBUG:proc:lightningd(13498): Adding block 1abc6b24e3a5f17d3bfd171541a3e0576725d54f709def4b1ef019dfbec0e577
DEBUG:proc:lightningd(13498): Adding block 5813fb249addaf36393ed9294165af74dbb1f011f6bf046eae8f5d577b442452
DEBUG:proc:lightningd(13498): Adding block e566e283e82d7ded7bb347ec31f09a8331c7681004e8e6c105659e436ce55e70
DEBUG:proc:lightningd(13498): Adding block c2db9b7231b3ba1c08883ce786f2bc9249feb13b42e6cd973d06ddbf81b4cf48
DEBUG:proc:lightningd(13498): Adding block fc695a30430b221cf31c32be2b427ca705714feff32fa2065ff0ff324e6f9b3f
DEBUG:proc:lightningd(13498): Adding block ab7e8debdbf33638e3f109a0028f13706d4e3bf470d32f21b3559f48d866404c
DEBUG:proc:lightningd(13498): Adding block 21bfbfb2fd7c4d74a63eb081653fd8dfe10e6f3eca216b220ad89a42ddadbf35
DEBUG:proc:lightningd(13498): Adding block 73962ee97250f930dff3cb670c55c25ae5072a387d40dd6b459ca996acea9107
DEBUG:proc:lightningd(13498): Adding block d3e4081c102643054d9cfd2ac1476d974df35c5100bcf05579fa7716636ddb25
DEBUG:proc:lightningd(13498): Adding block b8e6667d7d306b09b37e6b3003dcc827a01b1138bd3f7dbbf899200e4238f832
DEBUG:proc:lightningd(13498): Adding block a29f09beed9f2b7f2d011cb1199f2523bac5028aeded5da4ea84910384130d34
DEBUG:proc:lightningd(13498): Adding block 4b0dcda22d30ec8c56b41200c762fc86adbf1161178907633aa5032367f3eb40
DEBUG:proc:lightningd(13498): Adding block ae314e9548372c61ac4b47d1cc017901fa9c9e30d10eb0d3d124a1a784b82f14
DEBUG:proc:lightningd(13498): Adding block 734bd43734e8f057fa1756298f6f7a9e386e049a3d8fda473f4d7a4c4d021844
DEBUG:proc:lightningd(13498): Adding block a867bce41774a568b16298819ad0f46b4d6c1dc2450cde46d4cee5ed353b5a34
DEBUG:proc:lightningd(13498): Adding block c1949c3f4bb065e5d4be41703a2a037878880c5b2675de6d18a2b26f77ce6a08
DEBUG:proc:lightningd(13498): Adding block 87496de24008ab768f3f982302aa3fd39dbe1b1abf77312e1737e5645a92da3b
DEBUG:proc:lightningd(13498): Adding block 533fb921dc0b012c1dece0e0a4de6e4a7188134ec23d36d6ccc12466be281019
DEBUG:proc:lightningd(13498): Adding block 3dd7b75d61148efbd44dcc9701fa118c379a457898d4524e4b7306b48dfff466
DEBUG:proc:lightningd(13498): Adding block 6f97cc00660edad174735a0bcee205efeb88e038efcc08fcfa07e1fb0d962327
DEBUG:proc:lightningd(13498): Adding block 7c9fcea8176c6c6fa39d04830ec1ae2c12fd369c8890aaa6cadf04c358f57861
DEBUG:proc:lightningd(13498): Adding block 42cfdc1d66951b3c5ca71044659c8d06eec7998794ae13b144866bbf71cc211c
DEBUG:proc:lightningd(13498): Adding block eb16ba04c8e187b8df4c13a64ec88f2be4dd01fad5fd03c05a438d3dcc316066
DEBUG:proc:lightningd(13498): Adding block 4fc3be4ced8448244b3ff754483ddae2b97cc31902a7a160c3a761a334156b2e
DEBUG:proc:lightningd(13498): Adding block 7f4cf35570842bc9127d73551cef72d67eb6f9117ced90d34c717e4fcf1d1057
DEBUG:proc:lightningd(13498): Adding block de899500fbc90423eaeabcfd0d5c1c18f5f8cdfd2830254f751e88bee8c8aa42
DEBUG:proc:lightningd(13498): Adding block eb8f0d39903de2f124c527002b127748bce27dc47fa178cdcb6280161529bc6a
DEBUG:proc:lightningd(13498): Adding block 28a511b2cf1f16902a5af7e02b531d2eb249484d816029e2b2c473512faee237
DEBUG:proc:lightningd(13498): Adding block 5622d981e81e3181ded58852f42ef329a77e2457b9125265310dbc01e55e8104
DEBUG:proc:lightningd(13498): Adding block 256a5fbf3cc59292b2f12620895f0ced3bc725986dc87883009e3a744ae87773
DEBUG:proc:lightningd(13498): Adding block 4214442dfcf8a7ab70a0975736b07825c3349b5ba9ccfb46ccbb3e0ac2849b49
DEBUG:proc:lightningd(13498): Adding block 596ee95b26f0b64bd4e1480f361c9e5ce85a1ecdc604224caca3541da19a610b
DEBUG:proc:lightningd(13498): Adding block 1ab87537be746a3c0bf929e94043f14ec8e9cb8c937e09398fe86770bbc1264a
DEBUG:proc:lightningd(13498): Adding block 9ade37629054376d5a5143ee467ec2867079aec0e76cef93c8c81264e6771b3d
DEBUG:proc:lightningd(13498): Adding block d86f24304267c3e680428e202ad9f359e72bb70061dfa931f303d194821e055b
DEBUG:proc:lightningd(13498): Adding block e2be38aafe8c36ca672eba6bbe89bc6f4e9844dadadf19d58a56f65275c9e70a
DEBUG:proc:lightningd(13498): Adding block ff68c47d2a36ea0022c0d4805b4166fe06cc8712a43bbe89b90d4fbbf4a8df18
DEBUG:proc:lightningd(13498): Adding block 335d5fc93b62ff9438807fb19082d7c82176e94eb2071cff9c48295eedf09353
DEBUG:proc:lightningd(13498): Adding block 3e0aef338946549c46ac282d88f7a05b238c0d2ff063223c73413e8ef312d046
DEBUG:proc:lightningd(13498): Adding block 6c9cc88e3a976f3827d507bdcd54d57993fb4bd2aefa3dad4b7a175f637bda11
DEBUG:proc:lightningd(13498): Adding block 821b2336b796f7577de053cbae1f32cc6395422b20acb93aec184c1a2c32096f
DEBUG:proc:lightningd(13498): Adding block 7baf39d172ca4306ddfb699df1478ec134e15e39cdf9fe84e07a821188abf469
DEBUG:proc:lightningd(13498): Adding block 16af50372c901fb0f7e5600ff3e182401201cefb6389765018f4624a58ae9809
DEBUG:proc:lightningd(13498): Adding block c1bef580679aa5bfa715f4a9fbd6ce7f828d766fa5ea30714542ec658eba0700
DEBUG:proc:lightningd(13498): Adding block d15dd8c78dbb1c700400b59f58f5cc6c319ea308f24d030da209bf8101e22910
DEBUG:proc:lightningd(13498): Adding block 15b395cc818c3c59251d939b4fca356f6bf0d319ffb57d82e99cac93489a9f1d
DEBUG:proc:lightningd(13498): Adding block db26b46260c8bdde9d673712853ca4aeb023029f2028f01397214844264c7a50
DEBUG:proc:lightningd(13498): Adding block 7a4ee46a7188eea5261541f538df24b48fa623e42a4b66f4f8eec525fe38ce0e
DEBUG:proc:lightningd(13498): Adding block e3cc7f332e6223903c9b3f50d9a5153a89c4e540f1d58f4575b1267fbf313960
DEBUG:proc:lightningd(13498): Adding block ffb08559965b61e746c40b3fdd176d9576a19e327628ba3d2bb78fc23a8e4872
DEBUG:proc:lightningd(13498): Adding block 5da2f753c4abfe61d0c94559992519a4fa8c03ad47707fb8356fc15987459c7c
DEBUG:proc:lightningd(13498): Adding block 7a155417ebc089cf44a27860f768574a5e319e80e334b00b83a7e28f7aad7872
DEBUG:proc:lightningd(13498): Adding block 36d2224c7c4dcae8a55fa274a4da72ce9b614119b113e1155350536c92b6e841
DEBUG:proc:lightningd(13498): Adding block 181de8e0baa66bfbaab04710c40166cedd6af73e586c9ad0a0306bf67dac4577
DEBUG:proc:lightningd(13498): Adding block f0437ccd1eaef2fd62e7a5d4b7022b49dfd9eef8c171a80458996857c721e50c
DEBUG:proc:lightningd(13498): Adding block 9fd7ad2493fd9daf4ee0adc3e33bd8e64001f7e0a851b94e9108dcdfa9a5132e
DEBUG:proc:lightningd(13498): Adding block e084f39b7f27a043ee638baf9945e9000679453de84eac9e4752c8b7da1f9a55
DEBUG:proc:lightningd(13498): Adding block 055021a13c5ec652b1952d7e9ac0c8da9133d0570bf9d6a818ea2704ec89ba78
DEBUG:proc:lightningd(13498): Adding block 3ed7e2778e5ae6d11cf00f3a91710dbe6c45ec3332e9519b1ee6dd27edf31918
DEBUG:proc:lightningd(13498): Adding block 245b5bb1b5ea44908f0ea2b75ce4d8b09fcb870288983de11691e4ff26466779
DEBUG:proc:lightningd(13498): Adding block c246289e42d1a843da129b6c164f7ef9809f72696ba6e495e55d4ef37ffcfe3a
DEBUG:proc:lightningd(13498): Adding block 74c4d4c28874e5f65be0bc4c7d3805003e42d67d8ad4e721f805dbef4fe90d20
DEBUG:proc:lightningd(13498): Adding block e20b43b2f475671a5a8420429cb960ae464b6b81136cdab797f1cd3b9a395600
DEBUG:proc:lightningd(13498): Adding block c07d0774a7f0378175f7f68457873177d61303ba51dc15ed825d40fd6c1ab656
DEBUG:proc:lightningd(13498): Adding block 139d4c33b59c09b1bdfe8bb6fdc892a0f2aa6973634fd1320cbba6a673074517
DEBUG:proc:lightningd(13498): Adding block 3948d11e936880a25408661e12bee1e76ffdc695704e7d005331f8f615f2cb3b
DEBUG:proc:lightningd(13498): Adding block 0f52915f9e37da264de564393bbd1ca00b54aa21ff5f94cd88cc2df6f3963840
DEBUG:proc:lightningd(13498): Adding block 05dc27aee28b56c6c4d9b1b3c75916b7944ac7d22b12f6aae785b460f8e6606a
DEBUG:proc:lightningd(13498): Adding block 01bfeb537fad66f8996803d5f4833e4e73314ba4230f9c1090880d4ca966f46f
DEBUG:proc:lightningd(13498): Adding block cb185d9d792dd33447e17e5d9364a0ec35d894fc3a08758b972ce0befb9e4779
DEBUG:proc:lightningd(13498): Adding block f902986422643f4358dcc33b4d9c543dd244f02cc325bf39a20b0c1774e82739
DEBUG:proc:lightningd(13498): Adding block c0d57223d5181176e042eb15b3d0cb4b53e6da0c902c545cf180230b3acf8e73
DEBUG:proc:lightningd(13498): Adding block c489d9b914c19f35a79296a8eb26698f109035f69dd7187bb321ece90542dd53
DEBUG:proc:lightningd(13498): Adding block db77bf8ab681d3e849f35503bf07472b12d08860a1d543ccb86bbf61f809d105
DEBUG:proc:lightningd(13498): Adding block 98b172d918a5b4f7c156ad3d845a3b4aecafd0f0aa0601384f465fd782ead843
DEBUG:proc:lightningd(13498): Adding block e70e94527b5673109a4019692863f438af13cd80ef3c9c34f73b63fc01f82b5c
DEBUG:proc:lightningd(13498): Adding block 296103a3eab97ad1b29ad46c0414498d4ab7fa8881d443455343d9486e196d11
DEBUG:proc:lightningd(13498): Adding block 2bf9addf0a42564a3a6e0e9e216968fa4c1e8215b04bfc016cec5f04037e2908
DEBUG:proc:lightningd(13498): Adding block c409c698cee11c50462e8859c151c5a026003801bf5cda2eca99c88797286673
DEBUG:proc:lightningd(13498): Adding block 49c1e6455c4f784ad421d19fd5ea78dc5797d19904ea79f0f673fb00bb04bc63
DEBUG:proc:lightningd(13498): Adding block 17e6e60a2646fe9a1def1e5ddbe2b8ddb0dbb604043979aab1aab24e1bf5a246
DEBUG:proc:lightningd(13498): Adding block 2b81d5ee8fc0a553dff2df1ded6196d52fdd0e5a951bea3cabdd1f91fd30fd2b
DEBUG:proc:lightningd(13498): Adding block 55e7dce8313fb5248a78d0e413577ee3900feef9471dfb60e9b31bd2b5d35972
DEBUG:proc:lightningd(13498): Adding block 73d01e93c6ff01430b72e84ca4115c1aba392cd0e2cc268b30f0f8350bae3d48
DEBUG:proc:lightningd(13498): Adding block c0e5910a3e84646e2a20e7dc23e33315e97630dabfb6fd2c4a43808897b59a7c
DEBUG:proc:lightningd(13498): Adding block bf36b08b4db7e4a08d903ba8932cc1300a3b0add4020c7bd72a097f4d7e13a4e
DEBUG:proc:lightningd(13498): Adding block 72d3fce7a1a4c541739a82dd16f2d8c8a2e3f753546b77b0d871f51165b15b29
DEBUG:proc:lightningd(13498): Adding block 987b4eed6142cc32502ac06cc5eddb1033d5933af03a0131d8fb841f67a9f760
DEBUG:proc:lightningd(13498): Adding block e0e48bf20dee05ad2f09d9915490cc6db9573859662926ce8a64534d0382945a
DEBUG:proc:lightningd(13498): Adding block 1fbe15184d921cf8750a63626128e6796ceb2109d894ce80147b378017270440
DEBUG:proc:lightningd(13498): Adding block 03cf886699229c8c51107bea59ac48112c9bb734121b4e191892a0dae25b4879
DEBUG:proc:lightningd(13498): Adding block 261f9cf49cf176605c9d60ba05a7a68b5af408c23e25b3f8ea268718594c744d
DEBUG:proc:lightningd(13498): Adding block 25fe1dd27c9e5bea4a0c3993d97d83c115daf09733e86b92213c473b0b2dbb72
DEBUG:proc:lightningd(13498): Adding block 225c0b00e7a7b1de44c63ba0ab26f6bc2d1730009c5d24c2962e6c1cc40c815c
DEBUG:proc:lightningd(13498): Adding block 039d071d89e6c807d084a8d8dbc416a7394988f24a024007bf05510cc52c4548
DEBUG:proc:lightningd(13498): Adding block 30c9417671067f632354ab3886cdbdab98271acc601b2059c2f9e3e32654ca12
DEBUG:proc:lightningd(13498): Loaded 0 invoices from DB
DEBUG:proc:lightningd(13498): HSM TRACE: Control: type WIRE_HSMCTL_HSMFD_ECDH len 2
DEBUG:proc:lightning_gossipd(13659): pid 13659, msgfd 15
DEBUG:proc:lightningd(13498): Loaded 0 channels from DB
DEBUG:proc:lightningd(13498): Listening on 'lightning-rpc'
DEBUG:proc:lightningd(13498): Hello world from 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c aka SLIMYWALK #033f7b (version v0.5.2-2016-11-21-1199-gcfde208)!
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIPCTL_INIT len 78
DEBUG:proc:lightning_gossipd(13659): TRACE: Creating IPv6 listener on port 16332
DEBUG:proc:lightning_gossipd(13659): TRACE: Failed to bind on 2 socket: Address already in use
DEBUG:root:Found 'Creating IPv6 listener on port' in logs
INFO:root:LightningD started
DEBUG:root:Starting '/usr/lib/jvm/java-8-openjdk-amd64/bin/java -Declair.datadir=/tmp/lightning-il5fkavy/test_forwarded_payment[eclair_lightning_eclair]/node-3/ -Declair.printToConsole=true -jar bin/eclair.jar'
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 0)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 0)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 0)
DEBUG:root:Waiting for 'connected to tcp://127.0.0.1:29000' in the logs
DEBUG:eclair(16333):17:31:02,376 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml]
DEBUG:eclair(16333):17:31:02,376 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy]
DEBUG:eclair(16333):17:31:02,377 |-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):17:31:02,390 |-INFO in ch.qos.logback.core.joran.spi.ConfigurationWatchList@786efd6c - 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):17:31:02,428 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16333):17:31:02,430 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16333):17:31:02,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):17:31:02,459 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.FileAppender]
DEBUG:eclair(16333):17:31:02,460 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [FILE]
DEBUG:eclair(16333):17:31:02,461 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16333):17:31:02,462 |-INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [/tmp/lightning-il5fkavy/test_forwarded_payment[eclair_lightning_eclair]/node-3//eclair.log]
DEBUG:eclair(16333):17:31:02,463 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel] to DEBUG
DEBUG:eclair(16333):17:31:02,463 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.channel.Register] to DEBUG
DEBUG:eclair(16333):17:31:02,463 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [fr.acinq.eclair.router] to INFO
DEBUG:eclair(16333):17:31:02,796 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender]
DEBUG:eclair(16333):17:31:02,796 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [CONSOLE]
DEBUG:eclair(16333):17:31:02,796 |-INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property
DEBUG:eclair(16333):17:31:02,797 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [CONSOLE] to Logger[ROOT]
DEBUG:eclair(16333):17:31:02,799 |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to INFO
DEBUG:eclair(16333):17:31:02,799 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [FILE] to Logger[ROOT]
DEBUG:eclair(16333):17:31:02,799 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration.
DEBUG:eclair(16333):17:31:02,801 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@a01c0d4 - Registering current configuration as safe fallback point
DEBUG:eclair(16333):2017-11-29 17:31:02,803 INFO akka.event.slf4j.Slf4jLogger - Slf4jLogger started
DEBUG:eclair(16333):2017-11-29 17:31:02,816 INFO fr.acinq.eclair.Setup - hello!
DEBUG:eclair(16333):2017-11-29 17:31:02,817 INFO fr.acinq.eclair.Setup - version=0.2-SNAPSHOT commit=2d5d68bf3f57363075d04e23447b9c19924d9f8a
DEBUG:eclair(16333):2017-11-29 17:31:02,889 INFO org.bitcoin.Secp256k1Context - couldn't find secp256k1 library, defaulting to spongycastle
DEBUG:eclair(16333):2017-11-29 17:31:03,500 INFO fr.acinq.eclair.Setup - nodeid=033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1 alias=eclair
DEBUG:eclair(16333):2017-11-29 17:31:03,501 INFO fr.acinq.eclair.Setup - using chain=regtest chainHash=06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f
DEBUG:eclair(16333):2017-11-29 17:31:03,501 INFO fr.acinq.eclair.Setup - initializing secure random generator
DEBUG:eclair(16333):2017-11-29 17:31:05,288 INFO fr.acinq.eclair.Setup - initial feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:eclair(16333):2017-11-29 17:31:05,293 INFO fr.acinq.eclair.Setup - current feeratesPerByte=FeeratesPerByte(210,180,150,110,50,20)
DEBUG:bitcoind:2017-11-29 16:31:05 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:05 keypool reserve 407
DEBUG:bitcoind:2017-11-29 16:31:05 keypool keep 407
DEBUG:eclair(16333):2017-11-29 17:31:05,341 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - loading network announcements from db...
DEBUG:eclair(16333):2017-11-29 17:31:05,348 INFO fr.acinq.eclair.router.Router akka://default/user/$f/router - starting state machine
DEBUG:eclair(16333):2017-11-29 17:31:05,368 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 17:31:05,375 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 17:31:05,415 INFO fr.acinq.eclair.Setup - initial wallet address=2NFxhMyB2G2tpudZTuXVVtNMU4vQibNRewx
DEBUG:eclair(16333):2017-11-29 17:31:06,396 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: 13663)
DEBUG:lightning-node(16332):Calling getinfo with arguments ()
DEBUG:root:Calling getinfo with arguments ()
DEBUG:proc:lightningd(13498): Connected json input
DEBUG:proc:lightningd(13498):jcon fd 14: Success
DEBUG:proc:lightningd(13498):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getinfo call: {'result': {'address': [], 'blockheight': 991, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'address': [], 'blockheight': 991, 'version': 'v0.5.2-2016-11-21-1199-gcfde208', 'port': 16332, 'id': '033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c'}
INFO:root:Calling connect with params=['033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c', 'localhost', 16332]
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): localhost
DEBUG:eclair(16331):2017-11-29 17:31:06,608 INFO fr.acinq.eclair.io.Switchboard akka://default/user/$g/switchboard - connecting to 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c @ localhost/127.0.0.1:16332 on behalf of Actor[akka://default/temp/$a]
DEBUG:proc:lightning_gossipd(13659): TRACE: Responder: Act 1
DEBUG:eclair(16331):2017-11-29 17:31:06,622 INFO fr.acinq.eclair.io.Client akka://default/user/$g/switchboard/$a - connected to localhost/127.0.0.1:16332
DEBUG:proc:lightning_gossipd(13659): TRACE: Responder: Act 2
DEBUG:proc:lightning_gossipd(13659): TRACE: Responder: Act 3
DEBUG:eclair(16331):2017-11-29 17:31:06,722 INFO fr.acinq.eclair.io.Client akka://default/user/$g/switchboard/$a - handshake completed with 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
DEBUG:eclair(16331):2017-11-29 17:31:06,731 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - registering as a listener to Actor[akka://default/user/$g/switchboard/$a/$a#168714262]
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(13659): TRACE: Forgetting remote peer 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:proc:lightning_gossipd(13659): TRACE: handle_peer 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3: new peer
DEBUG:eclair(16331):2017-11-29 17:31:06,818 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c has features: initialRoutingSync=true
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 53
DEBUG:root:Method connect returned {'result': 'connected', 'id': 'scala-client'}
{"method": "sendtoaddress", "params": ["2N9nNbCD7QLs8M7AP9F8mgLdpgvbx5KZbdn", 0.4], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:06 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:06 keypool reserve 1061
DEBUG:bitcoind:2017-11-29 16:31:06 Fee Calculation: Fee:6336 Bytes:316 Needed:6336 Tgt:6 (requested 6) Reason:"Conservative Double Target longer horizon" Decay 0.99520: Estimation: (19613.1 - 1e+99) 100.00% 22.4/(22.4 0 mem 0.0 out) Fail: (0 - 19613.1) 100.00% 0.7/(0.7 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 16:31:06 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=660a5faa58, ver=2, vin.size=2, vout.size=2, nLockTime=991)
DEBUG:bitcoind: CTxIn(COutPoint(5d97caa59f, 0), scriptSig=16001496e55e3184b2bc79b1, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(5d97caa59f, 1), scriptSig=473044022014b9272e591abe, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness(3045022100facfa812c4314770a44d5ddb7b9b4ff8c7a7eec79394befae8bfbbb1b5c5d37702200e9e5f88ad87283693106d43f0ecdf9c6d70f511439eac664e637540b8c9afa801, 02df02c7d7ed190390dc82a291cfbbca83c96c773b021aaf81317b9d8d879c9b02)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CTxOut(nValue=0.06144777, scriptPubKey=76a914efeb08131ac24073ba142bb5)
DEBUG:bitcoind: CTxOut(nValue=0.40000000, scriptPubKey=a914b566167df1d6dc7e743d996077)
DEBUG:bitcoind:2017-11-29 16:31:06 keypool keep 1061
DEBUG:bitcoind:2017-11-29 16:31:06 AddToWallet 660a5faa5863d7ad6658cfd48c17b2af85dbd10bee223879b1727c516e304cef new
DEBUG:bitcoind:2017-11-29 16:31:06 AddToWallet 660a5faa5863d7ad6658cfd48c17b2af85dbd10bee223879b1727c516e304cef
DEBUG:bitcoind:2017-11-29 16:31:06 Relaying wtx 660a5faa5863d7ad6658cfd48c17b2af85dbd10bee223879b1727c516e304cef
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:07 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:07 keypool reserve 408
DEBUG:bitcoind:2017-11-29 16:31:07 CreateNewBlock(): total size: 661 block weight: 2203 txs: 1 fees: 6336 sigops 405
DEBUG:bitcoind:2017-11-29 16:31:07 UpdateTip: new best=4e8abf2303724a4032625a09cf588fe88a3f082265852263a24a8d80ce094265 height=992 version=0x20000000 log2_work=10.95565 tx=1110 date='2017-11-29 16:31:07' progress=1.000000 cache=0.2MiB(1103txo)
DEBUG:bitcoind:2017-11-29 16:31:07 AddToWallet 204acfa3c5a0a5fd4cf58bdc9fd2688fb6429df52c2976a017f3b426a9a772fb new
DEBUG:bitcoind:2017-11-29 16:31:07 AddToWallet 660a5faa5863d7ad6658cfd48c17b2af85dbd10bee223879b1727c516e304cef update
DEBUG:bitcoind:2017-11-29 16:31:07 keypool keep 408
DEBUG:proc:2017-11-29 17:31:07.938 [INF] BMGR: Processed 5 blocks in the last 40.8s (6 transactions, height 992, 2017-11-29 17:31:07 +0100 CET)
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 286
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'alias': 'eclair', 'blockHeight': 991, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lightning-node(16332):Calling connect with arguments ('033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'localhost:16333')
DEBUG:root:Calling connect with arguments ('033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'localhost:16333')
DEBUG:proc:lightningd(13498): Connected json input
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIPCTL_PEER_ADDRHINT len 42
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIPCTL_REACH_PEER len 35
DEBUG:proc:lightning_gossipd(13659): TRACE: Connected out for 033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1
DEBUG:proc:lightning_gossipd(13659): TRACE: Initiator: Act 1
DEBUG:proc:lightning_gossipd(13659): TRACE: Initiator: Act 2
DEBUG:eclair(16333):2017-11-29 17:31:08,186 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - connected to /127.0.0.1:53670
DEBUG:proc:lightning_gossipd(13659): TRACE: Initiator: Act 3
DEBUG:eclair(16333):2017-11-29 17:31:08,237 INFO fr.acinq.eclair.io.Server akka://default/user/$i/server - handshake completed with 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
DEBUG:eclair(16333):2017-11-29 17:31:08,249 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - registering as a listener to Actor[akka://default/user/$i/server/$a#-1059075935]
DEBUG:eclair(16333):2017-11-29 17:31:08,272 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c has features: initialRoutingSync=true
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightningd(13498):jcon fd 14: Success
DEBUG:root:Received response for connect call: {'result': {'id': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'id': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1'}
DEBUG:lightning-node(16332):Calling newaddr with arguments ()
DEBUG:root:Calling newaddr with arguments ()
DEBUG:proc:lightningd(13498): Connected json input
DEBUG:proc:lightningd(13498):jcon fd 14: Closing (Bad file descriptor)
DEBUG:proc:lightning_gossipd(13659): TRACE: Forgetting remote peer 033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1
DEBUG:proc:lightningd(13498):jcon fd 16: Success
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 193
DEBUG:proc:lightning_gossipd(13659): TRACE: handle_peer 033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1: new peer
DEBUG:proc:lightningd(13498):jcon fd 16: Closing (No such file or directory)
DEBUG:root:Received response for newaddr call: {'result': {'address': '2N4FyQMyQG5JbbeQDHtcFuyiwGdiWmJCNCS'}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'address': '2N4FyQMyQG5JbbeQDHtcFuyiwGdiWmJCNCS'}
{"method": "sendtoaddress", "params": ["2N4FyQMyQG5JbbeQDHtcFuyiwGdiWmJCNCS", 0.4], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:08 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:08 keypool reserve 1062
DEBUG:bitcoind:2017-11-29 16:31:08 Fee Calculation: Fee:6337 Bytes:316 Needed:6337 Tgt:6 (requested 6) Reason:"Conservative Double Target longer horizon" Decay 0.99520: Estimation: (19613.1 - 1e+99) 100.00% 23.3/(23.3 0 mem 0.0 out) Fail: (0 - 19613.1) 100.00% 0.7/(0.7 0 mem 0.0 out)
DEBUG:bitcoind:2017-11-29 16:31:08 CommitTransaction:
DEBUG:bitcoind:CTransaction(hash=9c9617774a, ver=2, vin.size=2, vout.size=2, nLockTime=992)
DEBUG:bitcoind: CTxIn(COutPoint(660a5faa58, 0), scriptSig=483045022100fa7dd5d2b093, nSequence=4294967294)
DEBUG:bitcoind: CTxIn(COutPoint(660a5faa58, 1), scriptSig=160014f6f86802381ab7eb40, nSequence=4294967294)
DEBUG:bitcoind: CScriptWitness()
DEBUG:bitcoind: CScriptWitness(3045022100e9924e0ef40a2cdb06a8df3022cbafa83892a7426862d60b2ed8b7aeaf8e98cd0220405adc9ed91220322ec6af7a0297550118022f421bf66a4888b1ce9d7932f4da01, 03613e0570d0f942b233475342e3c609fee495c8ab041b19370f4ea66b30e01bbe)
DEBUG:bitcoind: CTxOut(nValue=0.40000000, scriptPubKey=a91478cd9ff048d21d2b1afc03022b)
DEBUG:bitcoind: CTxOut(nValue=0.06138440, scriptPubKey=76a9143e385240a08206509243ee18)
DEBUG:bitcoind:2017-11-29 16:31:08 keypool keep 1062
DEBUG:bitcoind:2017-11-29 16:31:08 AddToWallet 9c9617774aeb97e483612abd2c5be14d41e1f48b8e3ef16828f725bc6a8b677d new
DEBUG:bitcoind:2017-11-29 16:31:08 AddToWallet 9c9617774aeb97e483612abd2c5be14d41e1f48b8e3ef16828f725bc6a8b677d
{"method": "getrawtransaction", "params": ["9c9617774aeb97e483612abd2c5be14d41e1f48b8e3ef16828f725bc6a8b677d"], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:08 Relaying wtx 9c9617774aeb97e483612abd2c5be14d41e1f48b8e3ef16828f725bc6a8b677d
DEBUG:lightning-node(16332):Calling addfunds with arguments ('02000000000102ef4c306e517c72b1793822ee0bd1db85afb2178cd4cf5866add76358aa5f0a66000000006b483045022100fa7dd5d2b093a9e5cfd0f2e617eccda6f3f8ced71cd980c2933e0df7acbe537302203c011d21b2393a68729edc3358909e55e21761ea5690051aa603b404f2eecec001210368a72320bdb32a48470ff16a9b8d838906db9a0c553b8c2b5508dad1c56f7c6afeffffffef4c306e517c72b1793822ee0bd1db85afb2178cd4cf5866add76358aa5f0a660100000017160014f6f86802381ab7eb4026e2fb0e5004219e993006feffffff02005a62020000000017a91478cd9ff048d21d2b1afc03022be2fd8cca802a798748aa5d00000000001976a9143e385240a08206509243ee18b7f2f27a86f497fc88ac0002483045022100e9924e0ef40a2cdb06a8df3022cbafa83892a7426862d60b2ed8b7aeaf8e98cd0220405adc9ed91220322ec6af7a0297550118022f421bf66a4888b1ce9d7932f4da012103613e0570d0f942b233475342e3c609fee495c8ab041b19370f4ea66b30e01bbee0030000',)
DEBUG:root:Calling addfunds with arguments ('02000000000102ef4c306e517c72b1793822ee0bd1db85afb2178cd4cf5866add76358aa5f0a66000000006b483045022100fa7dd5d2b093a9e5cfd0f2e617eccda6f3f8ced71cd980c2933e0df7acbe537302203c011d21b2393a68729edc3358909e55e21761ea5690051aa603b404f2eecec001210368a72320bdb32a48470ff16a9b8d838906db9a0c553b8c2b5508dad1c56f7c6afeffffffef4c306e517c72b1793822ee0bd1db85afb2178cd4cf5866add76358aa5f0a660100000017160014f6f86802381ab7eb4026e2fb0e5004219e993006feffffff02005a62020000000017a91478cd9ff048d21d2b1afc03022be2fd8cca802a798748aa5d00000000001976a9143e385240a08206509243ee18b7f2f27a86f497fc88ac0002483045022100e9924e0ef40a2cdb06a8df3022cbafa83892a7426862d60b2ed8b7aeaf8e98cd0220405adc9ed91220322ec6af7a0297550118022f421bf66a4888b1ce9d7932f4da012103613e0570d0f942b233475342e3c609fee495c8ab041b19370f4ea66b30e01bbee0030000',)
DEBUG:proc:lightningd(13498): Connected json input
DEBUG:proc:lightningd(13498): Owning output 0 40000000 (P2SH) txid 7d678b6abc25f72868f13e8e8bf4e1414de15b2cbd2a6183e497eb4a7717969c
DEBUG:proc:lightningd(13498):jcon fd 14: Success
DEBUG:root:Received response for addfunds call: {'result': {'satoshis': 40000000, 'outputs': 1}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(13498):jcon fd 14: Closing (No such file or directory)
DEBUG:lightning-node(16332):Call returned {'satoshis': 40000000, 'outputs': 1}
INFO:root:Calling open with params=['033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c', 'localhost', 16332, 10000000, 0]
DEBUG:eclair(16331):2017-11-29 17:31:08,468 INFO fr.acinq.eclair.io.Switchboard akka://default/user/$g/switchboard - already connected to nodeId=033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
DEBUG:eclair(16331):2017-11-29 17:31:08,477 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - requesting a new channel to 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c with fundingSatoshis=Satoshi(10000000) and pushMsat=MilliSatoshi(0)
DEBUG:bitcoind:2017-11-29 16:31:08 keypool added 1 keys (1 internal), size=2000 (1000 internal)
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 138
DEBUG:root:Method open returned {'result': 'already connected to nodeId=033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c', 'id': 'scala-client'}
DEBUG:bitcoind:2017-11-29 16:31:08 keypool reserve 409
DEBUG:bitcoind:2017-11-29 16:31:08 keypool keep 409
DEBUG:eclair(16331):2017-11-29 17:31:08,744 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a - setting repeating timer 'TickRefreshChannelUpdate'/1 day: TickRefreshChannelUpdate
DEBUG:eclair(16331):2017-11-29 17:31:08,776 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 0000000000000000000000000000000000000000000000000000000000000000 - processing Event(INPUT_INIT_FUNDER(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,53760,LocalParams(031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3,542,100000000000,100000,1000000,144,30,18f4cd3618fd3b730401bcdf36f965499616f575918d79d66f6370aa28555ea401,f0751e1edf97d7ed2e33c934c78d4aec456e0f0bd19092cd65358b2f25ce7adc,617c529e137d4240fefd2e42d9652001760e01caf1d0e9be1fbca3035b8caa99,9b533d449183bc9cdf182134cd7df89429ebd647047cd0e68ffeeadc312ff326,8527737882d803c43a0990561a15fcc820e6e4dc98ead58747ed117113ac8fd9,a914b6df1a7648ab3fed543828992738b3d8c1a037fd87,03611189247cb2f30ebbb9b5e687f8b1427f81fb48c4b7007af449b75b0f1aab,true,,08),Actor[akka://default/user/$g/switchboard/$a/$a#168714262],Init(,08),1),Nothing) from Actor[akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c#1158453719] in state WAIT_FOR_INIT_INTERNAL
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_NONGOSSIP
DEBUG:proc:lightningd(13498): peer 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3: state: UNINITIALIZED -> OPENINGD
DEBUG:eclair(16331):2017-11-29 17:31:08,791 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 0000000000000000000000000000000000000000000000000000000000000000 - transition WAIT_FOR_INIT_INTERNAL -> WAIT_FOR_ACCEPT_CHANNEL
DEBUG:proc:lightning_openingd(13942): pid 13942, msgfd 18
DEBUG:proc:lightning_openingd(13942): TRACE: First per_commit_point = 03688b08eb1e9c687989df9077c52a56391d8b84d72f4441f4ec70f19669886f84
DEBUG:proc:lightning_openingd(13942): STATUS_FAIL_PEER_BAD: feerate_per_kw 53760 above maximum 25065
DEBUG:proc:lightningd(13498): peer 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3: Peer permanent failure in OPENINGD: feerate_per_kw 53760 above maximum 25065
DEBUG:proc:lightning_openingd(13942): Status closed, but not exited. Killing
DEBUG:proc:lightning_gossipd(13659): TRACE: Forgetting remote peer 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3
DEBUG:eclair(16331):2017-11-29 17:31:08,816 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - processing Event(Error(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,666565726174655f7065725f6b772035333736302061626f7665206d6178696d756d20323530363500),DATA_WAIT_FOR_ACCEPT_CHANNEL(INPUT_INIT_FUNDER(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,53760,LocalParams(031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3,542,100000000000,100000,1000000,144,30,18f4cd3618fd3b730401bcdf36f965499616f575918d79d66f6370aa28555ea401,f0751e1edf97d7ed2e33c934c78d4aec456e0f0bd19092cd65358b2f25ce7adc,617c529e137d4240fefd2e42d9652001760e01caf1d0e9be1fbca3035b8caa99,9b533d449183bc9cdf182134cd7df89429ebd647047cd0e68ffeeadc312ff326,8527737882d803c43a0990561a15fcc820e6e4dc98ead58747ed117113ac8fd9,a914b6df1a7648ab3fed543828992738b3d8c1a037fd87,03611189247cb2f30ebbb9b5e687f8b1427f81fb48c4b7007af449b75b0f1aab,true,,08),Actor[akka://default/user/$g/switchboard/$a/$a#168714262],Init(,08),1),OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,542,100000000000,100000,1000000,53760,144,30,032c6570da63cc01a2cd2d5d9da20d0af5e04d9d74c9d958f19b9055bbd0d4f08f,02ed9c4d24d05969347728be221fc7b9646a7acdb9036a671f0184232f8d878e0c,03fa1d6dd7afe878caa1aa14719883272f70972d8e591eed90b25a1b55878cb1d8,027620ff00ca573e5d9dc3a4dcfc10a7575987c97eebcde9f390cbc539bbc37151,02bbd4ecdbe54d32b5f56b665578eb36584ea797bc1227e4a5115c10ecc7c56bcc,03cd93b8ff2678d55f89ed0738a1ba94f1cb3b331ae214af4952c5b765e6cad456,1))) from Actor[akka://default/user/$g/switchboard/$a/$a#168714262] in state WAIT_FOR_ACCEPT_CHANNEL
DEBUG:eclair(16331):2017-11-29 17:31:08,818 WARN f.a.eclair.crypto.TransportHandler akka://default/user/$g/switchboard/$a/$a - connection closed
DEBUG:eclair(16331):2017-11-29 17:31:08,820 ERROR fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - peer sent Error(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,666565726174655f7065725f6b772035333736302061626f7665206d6178696d756d20323530363500), closing connection
DEBUG:eclair(16331):2017-11-29 17:31:08,822 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - transition WAIT_FOR_ACCEPT_CHANNEL -> CLOSED
DEBUG:eclair(16331):2017-11-29 17:31:08,827 INFO fr.acinq.eclair.io.Switchboard akka://default/user/$g/switchboard - Actor[akka://default/user/$g/switchboard/$a#-599831561] is dead, removing from connections
DEBUG:eclair(16331):2017-11-29 17:31:08,828 WARN fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - lost connection to 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
DEBUG:eclair(16331):2017-11-29 17:31:08,829 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - processing Event(INPUT_DISCONNECTED,DATA_WAIT_FOR_ACCEPT_CHANNEL(INPUT_INIT_FUNDER(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,53760,LocalParams(031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3,542,100000000000,100000,1000000,144,30,18f4cd3618fd3b730401bcdf36f965499616f575918d79d66f6370aa28555ea401,f0751e1edf97d7ed2e33c934c78d4aec456e0f0bd19092cd65358b2f25ce7adc,617c529e137d4240fefd2e42d9652001760e01caf1d0e9be1fbca3035b8caa99,9b533d449183bc9cdf182134cd7df89429ebd647047cd0e68ffeeadc312ff326,8527737882d803c43a0990561a15fcc820e6e4dc98ead58747ed117113ac8fd9,a914b6df1a7648ab3fed543828992738b3d8c1a037fd87,03611189247cb2f30ebbb9b5e687f8b1427f81fb48c4b7007af449b75b0f1aab,true,,08),Actor[akka://default/user/$g/switchboard/$a/$a#168714262],Init(,08),1),OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,542,100000000000,100000,1000000,53760,144,30,032c6570da63cc01a2cd2d5d9da20d0af5e04d9d74c9d958f19b9055bbd0d4f08f,02ed9c4d24d05969347728be221fc7b9646a7acdb9036a671f0184232f8d878e0c,03fa1d6dd7afe878caa1aa14719883272f70972d8e591eed90b25a1b55878cb1d8,027620ff00ca573e5d9dc3a4dcfc10a7575987c97eebcde9f390cbc539bbc37151,02bbd4ecdbe54d32b5f56b665578eb36584ea797bc1227e4a5115c10ecc7c56bcc,03cd93b8ff2678d55f89ed0738a1ba94f1cb3b331ae214af4952c5b765e6cad456,1))) from Actor[akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c#1158453719] in state CLOSED
DEBUG:proc:lightningd(13498): Adding block 654209ce808d4aa26322856522083f8ae88f58cf095a6232404a720323bf8a4e
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
DEBUG:eclair(16331):2017-11-29 17:31:09,850 INFO fr.acinq.eclair.io.Switchboard akka://default/user/$g/switchboard - connecting to 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c @ localhost/127.0.0.1:16332 on behalf of Actor[akka://default/deadLetters]
DEBUG:proc:lightning_gossipd(13659): TRACE: Responder: Act 1
DEBUG:eclair(16331):2017-11-29 17:31:09,861 INFO fr.acinq.eclair.io.Client akka://default/user/$g/switchboard/$b - connected to localhost/127.0.0.1:16332
DEBUG:proc:lightning_gossipd(13659): TRACE: Responder: Act 2
DEBUG:proc:lightning_gossipd(13659): TRACE: Responder: Act 3
DEBUG:eclair(16331):2017-11-29 17:31:09,915 INFO fr.acinq.eclair.io.Client akka://default/user/$g/switchboard/$b - handshake completed with 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
DEBUG:eclair(16331):2017-11-29 17:31:09,916 INFO akka.actor.DeadLetterActorRef akka://default/deadLetters - Message [java.lang.String] from Actor[akka://default/user/$g/switchboard/$b#2050025263] to Actor[akka://default/deadLetters] was not delivered. [1] dead letters encountered. This logging can be turned off or adjusted with configuration settings 'akka.log-dead-letters' and 'akka.log-dead-letters-during-shutdown'.
DEBUG:eclair(16331):2017-11-29 17:31:09,917 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - registering as a listener to Actor[akka://default/user/$g/switchboard/$b/$a#-718511805]
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(13659): UPDATE WIRE_GOSSIP_PEER_CONNECTED
DEBUG:proc:lightning_gossipd(13659): TRACE: Forgetting remote peer 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIPCTL_HANDLE_PEER len 205
DEBUG:proc:lightning_gossipd(13659): TRACE: handle_peer 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3: new peer
DEBUG:eclair(16331):2017-11-29 17:31:09,952 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c has features: initialRoutingSync=true
DEBUG:eclair(16331):2017-11-29 17:31:09,959 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - processing Event(INPUT_RECONNECTED(Actor[akka://default/user/$g/switchboard/$b/$a#-718511805]),DATA_WAIT_FOR_ACCEPT_CHANNEL(INPUT_INIT_FUNDER(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,53760,LocalParams(031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3,542,100000000000,100000,1000000,144,30,18f4cd3618fd3b730401bcdf36f965499616f575918d79d66f6370aa28555ea401,f0751e1edf97d7ed2e33c934c78d4aec456e0f0bd19092cd65358b2f25ce7adc,617c529e137d4240fefd2e42d9652001760e01caf1d0e9be1fbca3035b8caa99,9b533d449183bc9cdf182134cd7df89429ebd647047cd0e68ffeeadc312ff326,8527737882d803c43a0990561a15fcc820e6e4dc98ead58747ed117113ac8fd9,a914b6df1a7648ab3fed543828992738b3d8c1a037fd87,03611189247cb2f30ebbb9b5e687f8b1427f81fb48c4b7007af449b75b0f1aab,true,,08),Actor[akka://default/user/$g/switchboard/$a/$a#168714262],Init(,08),1),OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,542,100000000000,100000,1000000,53760,144,30,032c6570da63cc01a2cd2d5d9da20d0af5e04d9d74c9d958f19b9055bbd0d4f08f,02ed9c4d24d05969347728be221fc7b9646a7acdb9036a671f0184232f8d878e0c,03fa1d6dd7afe878caa1aa14719883272f70972d8e591eed90b25a1b55878cb1d8,027620ff00ca573e5d9dc3a4dcfc10a7575987c97eebcde9f390cbc539bbc37151,02bbd4ecdbe54d32b5f56b665578eb36584ea797bc1227e4a5115c10ecc7c56bcc,03cd93b8ff2678d55f89ed0738a1ba94f1cb3b331ae214af4952c5b765e6cad456,1))) from Actor[akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c#1158453719] in state CLOSED
DEBUG:eclair(16331):2017-11-29 17:31:09,963 WARN fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - unhandled event INPUT_RECONNECTED(Actor[akka://default/user/$g/switchboard/$b/$a#-718511805]) in state CLOSED
DEBUG:eclair(16331):2017-11-29 17:31:10,347 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - processing Event(CurrentBlockCount(992),DATA_WAIT_FOR_ACCEPT_CHANNEL(INPUT_INIT_FUNDER(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,53760,LocalParams(031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3,542,100000000000,100000,1000000,144,30,18f4cd3618fd3b730401bcdf36f965499616f575918d79d66f6370aa28555ea401,f0751e1edf97d7ed2e33c934c78d4aec456e0f0bd19092cd65358b2f25ce7adc,617c529e137d4240fefd2e42d9652001760e01caf1d0e9be1fbca3035b8caa99,9b533d449183bc9cdf182134cd7df89429ebd647047cd0e68ffeeadc312ff326,8527737882d803c43a0990561a15fcc820e6e4dc98ead58747ed117113ac8fd9,a914b6df1a7648ab3fed543828992738b3d8c1a037fd87,03611189247cb2f30ebbb9b5e687f8b1427f81fb48c4b7007af449b75b0f1aab,true,,08),Actor[akka://default/user/$g/switchboard/$a/$a#168714262],Init(,08),1),OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,542,100000000000,100000,1000000,53760,144,30,032c6570da63cc01a2cd2d5d9da20d0af5e04d9d74c9d958f19b9055bbd0d4f08f,02ed9c4d24d05969347728be221fc7b9646a7acdb9036a671f0184232f8d878e0c,03fa1d6dd7afe878caa1aa14719883272f70972d8e591eed90b25a1b55878cb1d8,027620ff00ca573e5d9dc3a4dcfc10a7575987c97eebcde9f390cbc539bbc37151,02bbd4ecdbe54d32b5f56b665578eb36584ea797bc1227e4a5115c10ecc7c56bcc,03cd93b8ff2678d55f89ed0738a1ba94f1cb3b331ae214af4952c5b765e6cad456,1))) from Actor[akka://default/deadLetters] in state CLOSED
{"method": "generate", "params": [6], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:13 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:13 keypool reserve 410
DEBUG:bitcoind:2017-11-29 16:31:13 CreateNewBlock(): total size: 662 block weight: 2207 txs: 1 fees: 6337 sigops 405
DEBUG:bitcoind:2017-11-29 16:31:13 UpdateTip: new best=1f45b2c989f514281054eac3270887079f3e5d980aade2982dd37fa03bc4a2ef height=993 version=0x20000000 log2_work=10.957102 tx=1112 date='2017-11-29 16:31:13' progress=1.000000 cache=0.2MiB(1104txo)
DEBUG:bitcoind:2017-11-29 16:31:13 AddToWallet b4f5e2d66c28019f4403d341c57fce05e851aa344f2db526b3e5ae64d4830e0d new
DEBUG:bitcoind:2017-11-29 16:31:13 AddToWallet 9c9617774aeb97e483612abd2c5be14d41e1f48b8e3ef16828f725bc6a8b677d update
DEBUG:bitcoind:2017-11-29 16:31:13 keypool keep 410
DEBUG:bitcoind:2017-11-29 16:31:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:13 UpdateTip: new best=1b721d61b5726cd500d564232a27bdf71fcbb811e85d00170b34c453d65ba5f2 height=994 version=0x20000000 log2_work=10.958553 tx=1113 date='2017-11-29 16:31:13' progress=1.000000 cache=0.2MiB(1105txo)
DEBUG:bitcoind:2017-11-29 16:31:13 AddToWallet a839dbab7f6492bd9dcb14aba97177f40e6a846bd8b416dba48c8cd9b315b891 new
DEBUG:proc:2017-11-29 17:31:13.551 [INF] CHAN: Adding orphan block 1b721d61b5726cd500d564232a27bdf71fcbb811e85d00170b34c453d65ba5f2 with parent 1f45b2c989f514281054eac3270887079f3e5d980aade2982dd37fa03bc4a2ef
DEBUG:bitcoind:2017-11-29 16:31:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:13 UpdateTip: new best=7c4e334248afd116c29b4faa60215c68a71d184df7368d7d36f0a1c6374fd238 height=995 version=0x20000000 log2_work=10.960002 tx=1114 date='2017-11-29 16:31:13' progress=1.000000 cache=0.2MiB(1106txo)
DEBUG:bitcoind:2017-11-29 16:31:13 AddToWallet 58e8b40aa933642e10268918ddc64849b0b3b193d157b4f5cfd8e962e2b112f8 new
DEBUG:bitcoind:2017-11-29 16:31:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:13 UpdateTip: new best=17484800a9989a70fc13e01b52e3ce19b8a3e0b67e499b38af0ec2cbc1e7b843 height=996 version=0x20000000 log2_work=10.96145 tx=1115 date='2017-11-29 16:31:13' progress=1.000000 cache=0.2MiB(1107txo)
DEBUG:bitcoind:2017-11-29 16:31:13 AddToWallet be676941a5906e1011532b8d2d74437a856af23cd538481ab628a1a74eaa16b7 new
DEBUG:bitcoind:2017-11-29 16:31:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:13 UpdateTip: new best=6182193c3beee317feb335a605edf37b19e1718442db3f9193ee30cdff263515 height=997 version=0x20000000 log2_work=10.962896 tx=1116 date='2017-11-29 16:31:13' progress=1.000000 cache=0.2MiB(1108txo)
DEBUG:bitcoind:2017-11-29 16:31:13 AddToWallet dcc6c03b847c81b0cc94e3bb92b11c88637b857546c9e7d457af9ca31227842a new
DEBUG:bitcoind:2017-11-29 16:31:13 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:13 UpdateTip: new best=5baa1bb539c384fd5e5391040de8b4957a0881f4d29719b2b3bd09b51c9289e1 height=998 version=0x20000000 log2_work=10.964341 tx=1117 date='2017-11-29 16:31:13' progress=1.000000 cache=0.2MiB(1109txo)
DEBUG:bitcoind:2017-11-29 16:31:13 AddToWallet ce27dd9f9974a905a4ef0b8af9340ef763fa2a28799d63930d429e43381ba5ce new
DEBUG:proc:lightningd(13498): Adding block e189921cb509bdb3b21997d2f481087a95b4e80d0491535efd84c339b51baa5b
DEBUG:proc:lightningd(13498): Adding block 153526ffcd30ee93913fdb428471e1197bf3ed05a635b3fe17e3ee3b3c198261
DEBUG:proc:lightningd(13498): Adding block 43b8e7c1cbc20eaf389b497eb6e0a3b819cee3521be013fc709a98a900484817
DEBUG:proc:lightningd(13498): Adding block 38d24f37c6a1f0367d8d36f74d181da7685c2160aa4f9bc216d1af4842334e7c
DEBUG:proc:lightningd(13498): Adding block f2a55bd653c4340b17005de811b8cb1ff7bd272a2364d500d56c72b5611d721b
DEBUG:proc:lightningd(13498): Adding block efa2c43ba07fd32d98e2ad0a985d3e9f07870827c3ea54102814f589c9b2451f
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
DEBUG:eclair(16331):2017-11-29 17:31:16,497 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - processing Event(CurrentBlockCount(998),DATA_WAIT_FOR_ACCEPT_CHANNEL(INPUT_INIT_FUNDER(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,53760,LocalParams(031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3,542,100000000000,100000,1000000,144,30,18f4cd3618fd3b730401bcdf36f965499616f575918d79d66f6370aa28555ea401,f0751e1edf97d7ed2e33c934c78d4aec456e0f0bd19092cd65358b2f25ce7adc,617c529e137d4240fefd2e42d9652001760e01caf1d0e9be1fbca3035b8caa99,9b533d449183bc9cdf182134cd7df89429ebd647047cd0e68ffeeadc312ff326,8527737882d803c43a0990561a15fcc820e6e4dc98ead58747ed117113ac8fd9,a914b6df1a7648ab3fed543828992738b3d8c1a037fd87,03611189247cb2f30ebbb9b5e687f8b1427f81fb48c4b7007af449b75b0f1aab,true,,08),Actor[akka://default/user/$g/switchboard/$a/$a#168714262],Init(,08),1),OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,542,100000000000,100000,1000000,53760,144,30,032c6570da63cc01a2cd2d5d9da20d0af5e04d9d74c9d958f19b9055bbd0d4f08f,02ed9c4d24d05969347728be221fc7b9646a7acdb9036a671f0184232f8d878e0c,03fa1d6dd7afe878caa1aa14719883272f70972d8e591eed90b25a1b55878cb1d8,027620ff00ca573e5d9dc3a4dcfc10a7575987c97eebcde9f390cbc539bbc37151,02bbd4ecdbe54d32b5f56b665578eb36584ea797bc1227e4a5115c10ecc7c56bcc,03cd93b8ff2678d55f89ed0738a1ba94f1cb3b331ae214af4952c5b765e6cad456,1))) from Actor[akka://default/deadLetters] in state CLOSED
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 286
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 998, 'port': 16331}, 'id': 'scala-client'}
Waiting for channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c to confirm
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 286
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 998, 'port': 16331}, 'id': 'scala-client'}
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(13498): Connected json input
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(13659): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(13498):jcon fd 14: Success
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'peerid': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}, {'peerid': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:44192'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:proc:lightningd(13498):jcon fd 14: Closing (Bad file descriptor)
DEBUG:lightning-node(16332):Call returned {'peers': [{'peerid': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}, {'peerid': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'owner': 'lightning_gossipd', 'netaddr': ['::ffff:127.0.0.1:44192'], 'connected': True, 'state': 'GOSSIPING'}]}
INFO:root:Calling peers with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 114
DEBUG:root:Method peers returned {'result': ['033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c'], 'id': 'scala-client'}
DEBUG:eclair(16331):2017-11-29 17:31:18,844 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - processing Event('shutdown,DATA_WAIT_FOR_ACCEPT_CHANNEL(INPUT_INIT_FUNDER(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,53760,LocalParams(031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3,542,100000000000,100000,1000000,144,30,18f4cd3618fd3b730401bcdf36f965499616f575918d79d66f6370aa28555ea401,f0751e1edf97d7ed2e33c934c78d4aec456e0f0bd19092cd65358b2f25ce7adc,617c529e137d4240fefd2e42d9652001760e01caf1d0e9be1fbca3035b8caa99,9b533d449183bc9cdf182134cd7df89429ebd647047cd0e68ffeeadc312ff326,8527737882d803c43a0990561a15fcc820e6e4dc98ead58747ed117113ac8fd9,a914b6df1a7648ab3fed543828992738b3d8c1a037fd87,03611189247cb2f30ebbb9b5e687f8b1427f81fb48c4b7007af449b75b0f1aab,true,,08),Actor[akka://default/user/$g/switchboard/$a/$a#168714262],Init(,08),1),OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8,10000000,0,542,100000000000,100000,1000000,53760,144,30,032c6570da63cc01a2cd2d5d9da20d0af5e04d9d74c9d958f19b9055bbd0d4f08f,02ed9c4d24d05969347728be221fc7b9646a7acdb9036a671f0184232f8d878e0c,03fa1d6dd7afe878caa1aa14719883272f70972d8e591eed90b25a1b55878cb1d8,027620ff00ca573e5d9dc3a4dcfc10a7575987c97eebcde9f390cbc539bbc37151,02bbd4ecdbe54d32b5f56b665578eb36584ea797bc1227e4a5115c10ecc7c56bcc,03cd93b8ff2678d55f89ed0738a1ba94f1cb3b331ae214af4952c5b765e6cad456,1))) from Actor[akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a#-1877680720] in state CLOSED
DEBUG:eclair(16331):2017-11-29 17:31:18,845 INFO fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8 - shutting down
DEBUG:eclair(16331):2017-11-29 17:31:18,851 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - channel closed: channelId=TemporaryChannelId(fc37a967fdf1bcd60e03c122126980d12e523574ae612023baf915b23a5881e8)
DEBUG:eclair(16331):2017-11-29 17:31:18,854 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - that was the last open channel, closing the connection
DEBUG:eclair(16331):2017-11-29 17:31:18,859 INFO fr.acinq.eclair.io.Switchboard akka://default/user/$g/switchboard - Actor[akka://default/user/$g/switchboard/$b#2050025263] is dead, removing from connections
DEBUG:eclair(16331):2017-11-29 17:31:18,861 WARN fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - lost connection to 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 286
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 998, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:19 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:19 keypool reserve 411
DEBUG:bitcoind:2017-11-29 16:31:19 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:19 UpdateTip: new best=0bc0b6b58354898a1b2f1110c0aa9cf28dce4acf661c5ceb252b8292baa8fb33 height=999 version=0x20000000 log2_work=10.965784 tx=1118 date='2017-11-29 16:31:19' progress=1.000000 cache=0.2MiB(1110txo)
DEBUG:bitcoind:2017-11-29 16:31:19 AddToWallet 51576e3dce2dcf7b7e56bbb9b727b423811ec452f5504e80ddb8f4b3b1646320 new
DEBUG:proc:2017-11-29 17:31:19.748 [INF] BMGR: Processed 6 blocks in the last 11.81s (7 transactions, height 999, 2017-11-29 17:31:19 +0100 CET)
DEBUG:bitcoind:2017-11-29 16:31:19 keypool keep 411
DEBUG:proc:lightningd(13498): Adding block 33fba8ba92822b25eb5c1c66cf4ace8df29caac010112f1b8a895483b5b6c00b
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 286
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 999, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:22 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:22 keypool reserve 412
DEBUG:bitcoind:2017-11-29 16:31:22 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:22 UpdateTip: new best=01497fa88cb0b790b3d070b2e00c9ecd538bec1822547a361b99fb45e688f231 height=1000 version=0x20000000 log2_work=10.967226 tx=1119 date='2017-11-29 16:31:22' progress=1.000000 cache=0.2MiB(1111txo)
DEBUG:bitcoind:2017-11-29 16:31:22 AddToWallet 897ed94419f1ddc4ab560cd27768fd0dc4ca52099863205e1528ab2d94b645e6 new
DEBUG:bitcoind:2017-11-29 16:31:22 keypool keep 412
DEBUG:proc:lightningd(13498): Adding block 31f288e645fb991b367a542218ec8b53cd9e0ce0b270d0b390b7b08ca87f4901
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1000, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:25 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:25 keypool reserve 413
DEBUG:bitcoind:2017-11-29 16:31:25 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:25 UpdateTip: new best=44f249ddb75751adeb5fda31d18b7de0c8e5cd34ab3a4942aed85d41d0910cc5 height=1001 version=0x20000000 log2_work=10.968667 tx=1120 date='2017-11-29 16:31:25' progress=1.000000 cache=0.2MiB(1112txo)
DEBUG:bitcoind:2017-11-29 16:31:25 AddToWallet 9e4c0a0354bee92b6f2ad73fae8ad98c3b7ebf586b318f742aca7511131a7662 new
DEBUG:bitcoind:2017-11-29 16:31:25 keypool keep 413
DEBUG:proc:lightningd(13498): Adding block c50c91d0415dd8ae42493aab34cde5c8e07d8bd131da5febad5157b7dd49f244
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1001, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:29 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:29 keypool reserve 414
DEBUG:bitcoind:2017-11-29 16:31:29 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:29 UpdateTip: new best=478557923c2efd4dbc30e0fad6856c8e2d211ecf8ba66f7fff0c408ff92d4c2c height=1002 version=0x20000000 log2_work=10.970106 tx=1121 date='2017-11-29 16:31:29' progress=1.000000 cache=0.2MiB(1113txo)
DEBUG:bitcoind:2017-11-29 16:31:29 AddToWallet 1870f55059d51b0461e1019652c7746a111a420f4febedb2b7bd7143e3f57997 new
DEBUG:bitcoind:2017-11-29 16:31:29 keypool keep 414
DEBUG:proc:lightningd(13498): Adding block 2c4c2df98f400cff7f6fa68bcf1e212d8e6c85d6fae030bc4dfd2e3c92578547
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1002, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:32 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:32 keypool reserve 415
DEBUG:bitcoind:2017-11-29 16:31:32 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:32 UpdateTip: new best=43bb8c5cb45b84dc707e27876864ee5d6ffd4e7103a7be9a29809f53a6b6732a height=1003 version=0x20000000 log2_work=10.971544 tx=1122 date='2017-11-29 16:31:32' progress=1.000000 cache=0.2MiB(1114txo)
DEBUG:bitcoind:2017-11-29 16:31:32 AddToWallet 0fc8e8a610527bfce9ab853da7a7faa7d2b16a4e5984b75bb16527d4467516ba new
DEBUG:bitcoind:2017-11-29 16:31:32 keypool keep 415
DEBUG:proc:2017-11-29 17:31:32.133 [INF] BMGR: Processed 4 blocks in the last 12.38s (4 transactions, height 1003, 2017-11-29 17:31:32 +0100 CET)
DEBUG:proc:lightningd(13498): Adding block 2a73b6a6539f80299abea703714efd6f5dee646887277e70dc845bb45c8cbb43
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1003, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:35 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:35 keypool reserve 416
DEBUG:bitcoind:2017-11-29 16:31:35 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:35 UpdateTip: new best=369489f2955977e7c30664cd5256b17a5e568c96b0ac11d8b7e88b4c2405363e height=1004 version=0x20000000 log2_work=10.97298 tx=1123 date='2017-11-29 16:31:35' progress=1.000000 cache=0.2MiB(1115txo)
DEBUG:bitcoind:2017-11-29 16:31:35 AddToWallet f98abf6f8168bfc6976226c1084fbac88f636b7d4d3c252c39d159478965f914 new
DEBUG:bitcoind:2017-11-29 16:31:35 keypool keep 416
DEBUG:proc:lightningd(13498): Adding block 3e3605244c8be8b7d811acb0968c565e7ab15652cd6406c3e7775995f2899436
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1004, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:38 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:38 keypool reserve 417
DEBUG:bitcoind:2017-11-29 16:31:38 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:38 UpdateTip: new best=3285255c9a40e8363a665dbac7b552ef002c227ee0c86f537e4731b897f1f312 height=1005 version=0x20000000 log2_work=10.974415 tx=1124 date='2017-11-29 16:31:38' progress=1.000000 cache=0.2MiB(1116txo)
DEBUG:bitcoind:2017-11-29 16:31:38 AddToWallet a8fbf484151124bad5b6f06fe49d5b24bf5acb96ae7d250e270dccc6dc2da3e8 new
DEBUG:bitcoind:2017-11-29 16:31:38 keypool keep 417
DEBUG:proc:lightningd(13498): Adding block 12f3f197b831477e536fc8e07e222c00ef52b5c7ba5d663a36e8409a5c258532
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1005, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:41 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:41 keypool reserve 418
DEBUG:bitcoind:2017-11-29 16:31:41 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:41 UpdateTip: new best=6173eca56711c1bbddd5892a5777047d1266c11b0f1544b4c3f5728f860f1ca6 height=1006 version=0x20000000 log2_work=10.975848 tx=1125 date='2017-11-29 16:31:41' progress=1.000000 cache=0.2MiB(1117txo)
DEBUG:bitcoind:2017-11-29 16:31:41 AddToWallet e7177b0065db7653e4fba02f791dc4ee9593d952e1499df80e695da09ea770c3 new
DEBUG:bitcoind:2017-11-29 16:31:41 keypool keep 418
DEBUG:proc:lightningd(13498): Adding block a61c0f868f72f5c3b444150f1bc166127d0477572a89d5ddbbc11167a5ec7361
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1006, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:44 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:44 keypool reserve 419
DEBUG:bitcoind:2017-11-29 16:31:44 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:44 UpdateTip: new best=7b290ca3c4857e411ca3e9e466f6caa24a3f4a9ee90b8cf99376547e0e2094b9 height=1007 version=0x20000000 log2_work=10.97728 tx=1126 date='2017-11-29 16:31:44' progress=1.000000 cache=0.2MiB(1118txo)
DEBUG:bitcoind:2017-11-29 16:31:44 AddToWallet efca8bb86168089324ad06fde100ed810f626855ed4aa80fd0dc0e598ff4caa0 new
DEBUG:bitcoind:2017-11-29 16:31:44 keypool keep 419
DEBUG:proc:2017-11-29 17:31:44.608 [INF] BMGR: Processed 4 blocks in the last 12.47s (4 transactions, height 1007, 2017-11-29 17:31:44 +0100 CET)
DEBUG:proc:lightningd(13498): Adding block b994200e7e547693f98c0be99e4a3f4aa2caf666e4e9a31c417e85c4a30c297b
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1007, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:47 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:47 keypool reserve 420
DEBUG:bitcoind:2017-11-29 16:31:47 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:47 UpdateTip: new best=67220c6f89f8b6263161ccdf331c4352b82319a821133ad4b3203bd93d09b432 height=1008 version=0x20000000 log2_work=10.97871 tx=1127 date='2017-11-29 16:31:47' progress=1.000000 cache=0.2MiB(1119txo)
DEBUG:bitcoind:2017-11-29 16:31:47 AddToWallet 59f172ec7cc3f50ad7d1e51561bf10c2bdb0c02784de7f5468ae49bee2336dde new
DEBUG:bitcoind:2017-11-29 16:31:47 keypool keep 420
DEBUG:proc:lightningd(13498): Adding block 32b4093dd93b20b3d43a1321a81923b852431c33dfcc613126b6f8896f0c2267
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1008, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:50 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:50 keypool reserve 421
DEBUG:bitcoind:2017-11-29 16:31:50 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:50 UpdateTip: new best=0d1d521fe7bbadfc12447138baaacf75a9c729573ee5a4d3a25879a0381c1bc0 height=1009 version=0x20000000 log2_work=10.98014 tx=1128 date='2017-11-29 16:31:50' progress=1.000000 cache=0.2MiB(1120txo)
DEBUG:bitcoind:2017-11-29 16:31:50 AddToWallet ef11b696ec7baa146b477bf045ec3defe3ba542ab8433c479693efe76aaca5e9 new
DEBUG:bitcoind:2017-11-29 16:31:50 keypool keep 421
DEBUG:proc:lightningd(13498): Adding block c01b1c38a07958a2d3a4e53e5729c7a975cfaaba38714412fcadbbe71f521d0d
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1009, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:53 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:53 keypool reserve 422
DEBUG:bitcoind:2017-11-29 16:31:53 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:53 UpdateTip: new best=694488e4784d27a703521ae8e427640cadc8619f9c19bda381b55bfd2d1c0551 height=1010 version=0x20000000 log2_work=10.981567 tx=1129 date='2017-11-29 16:31:53' progress=1.000000 cache=0.2MiB(1121txo)
DEBUG:bitcoind:2017-11-29 16:31:53 AddToWallet b289e2159e046758e2ef43ad51c3d8b8a524a958e858ce26b1727809829b1de0 new
DEBUG:bitcoind:2017-11-29 16:31:53 keypool keep 422
DEBUG:proc:lightningd(13498): Adding block 51051c2dfd5bb581a3bd199c9f61c8ad0c6427e4e81a5203a7274d78e4884469
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1010, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:56 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:56 keypool reserve 423
DEBUG:bitcoind:2017-11-29 16:31:56 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:56 UpdateTip: new best=0824a0e4c2991bb3c220cd79ad5ed0c712bbc88b7024ff3b6943a11d36517c80 height=1011 version=0x20000000 log2_work=10.982994 tx=1130 date='2017-11-29 16:31:56' progress=1.000000 cache=0.2MiB(1122txo)
DEBUG:bitcoind:2017-11-29 16:31:56 AddToWallet 1b8f4b3e3cb4370e1fe105996e6dfb82895616f74e5c03375b1907fd52aa0533 new
DEBUG:bitcoind:2017-11-29 16:31:56 keypool keep 423
DEBUG:proc:2017-11-29 17:31:56.849 [INF] BMGR: Processed 4 blocks in the last 12.24s (4 transactions, height 1011, 2017-11-29 17:31:56 +0100 CET)
DEBUG:proc:lightningd(13498): Adding block 807c51361da143693bff24708bc8bb12c7d05ead79cd20c2b31b99c2e4a02408
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1011, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:31:59 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:31:59 keypool reserve 424
DEBUG:bitcoind:2017-11-29 16:31:59 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:31:59 UpdateTip: new best=0cbc97cde14a215ab192f157aef8d04db06166717aa13f42fe7718352a225f74 height=1012 version=0x20000000 log2_work=10.984418 tx=1131 date='2017-11-29 16:31:59' progress=1.000000 cache=0.2MiB(1123txo)
DEBUG:bitcoind:2017-11-29 16:31:59 AddToWallet 1ac8cb060d9c311e960d80471a5981430d838af51d2fd502cc2745ff4665fc56 new
DEBUG:bitcoind:2017-11-29 16:31:59 keypool keep 424
DEBUG:proc:lightningd(13498): Adding block 745f222a351877fe423fa17a716661b04dd0f8ae57f192b15a214ae1cd97bc0c
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1012, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:03 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:03 keypool reserve 425
DEBUG:bitcoind:2017-11-29 16:32:03 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:03 UpdateTip: new best=425eb9beb5bbb1e99553e78fa28084678dc2e601f0178986858e00b657ed0275 height=1013 version=0x20000000 log2_work=10.985842 tx=1132 date='2017-11-29 16:32:03' progress=1.000000 cache=0.2MiB(1124txo)
DEBUG:bitcoind:2017-11-29 16:32:03 AddToWallet c39f8798c29816b94b0c3d7120e70297769b790b572f6a7dfabb77ea611b115e new
DEBUG:bitcoind:2017-11-29 16:32:03 keypool keep 425
DEBUG:proc:lightningd(13498): Adding block 7502ed57b6008e85868917f001e6c28d678480a28fe75395e9b1bbb5beb95e42
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1013, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:06 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:06 keypool reserve 426
DEBUG:bitcoind:2017-11-29 16:32:06 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:06 UpdateTip: new best=70b2a283698c451d2d7a9bde5403dd8fea7d889cdb921307299984dc4440437e height=1014 version=0x20000000 log2_work=10.987264 tx=1133 date='2017-11-29 16:32:06' progress=1.000000 cache=0.2MiB(1125txo)
DEBUG:bitcoind:2017-11-29 16:32:06 AddToWallet 76a8b446817f0a683128149542bf93eb21e3c2f563e33f356165e6234ed8f69a new
DEBUG:bitcoind:2017-11-29 16:32:06 keypool keep 426
DEBUG:proc:lightningd(13498): Adding block 7e434044dc849929071392db9c887dea8fdd0354de9b7a2d1d458c6983a2b270
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1014, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:09 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:09 keypool reserve 427
DEBUG:bitcoind:2017-11-29 16:32:09 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:09 UpdateTip: new best=2d0f47944359f027226a7cae3274dc5dd19161277c8830b143a4f6033ccadbad height=1015 version=0x20000000 log2_work=10.988685 tx=1134 date='2017-11-29 16:32:09' progress=1.000000 cache=0.2MiB(1126txo)
DEBUG:bitcoind:2017-11-29 16:32:09 AddToWallet 167315c22056a6fc7f11f5bb16aa63c7f04e677d30b5754b127905af9c3827b5 new
DEBUG:bitcoind:2017-11-29 16:32:09 keypool keep 427
DEBUG:proc:2017-11-29 17:32:09.205 [INF] BMGR: Processed 4 blocks in the last 12.35s (4 transactions, height 1015, 2017-11-29 17:32:09 +0100 CET)
DEBUG:proc:lightningd(13498): Adding block addbca3c03f6a443b130887c276191d15ddc7432ae7c6a2227f0594394470f2d
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1015, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:12 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:12 keypool reserve 428
DEBUG:bitcoind:2017-11-29 16:32:12 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:12 UpdateTip: new best=44d315acdc0b5b09cac88317ffa4ce1440cb38f4d4cc24368743493157fb2cc3 height=1016 version=0x20000000 log2_work=10.990104 tx=1135 date='2017-11-29 16:32:12' progress=1.000000 cache=0.2MiB(1127txo)
DEBUG:bitcoind:2017-11-29 16:32:12 AddToWallet 8c5c2511aceca64fca5f7b85c7e35abbcf293113f34a539803a9000569f34b44 new
DEBUG:bitcoind:2017-11-29 16:32:12 keypool keep 428
DEBUG:proc:lightningd(13498): Adding block c32cfb57314943873624ccd4f438cb4014cea4ff1783c8ca095b0bdcac15d344
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1016, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:15 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:15 keypool reserve 429
DEBUG:bitcoind:2017-11-29 16:32:15 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:15 UpdateTip: new best=7bb75f4942bb25467c9851a2dd1695e71b9ac2a2b5f6168c268a2201ce0623ce height=1017 version=0x20000000 log2_work=10.991522 tx=1136 date='2017-11-29 16:32:15' progress=1.000000 cache=0.2MiB(1128txo)
DEBUG:bitcoind:2017-11-29 16:32:15 AddToWallet 793c92d9139698eee6ed5600c90f9e4089ec70c29e8fd6bbcf54d2fb04023abd new
DEBUG:bitcoind:2017-11-29 16:32:15 keypool keep 429
DEBUG:proc:lightningd(13498): Adding block ce2306ce01228a268c16f6b5a2c29a1be79516dda251987c4625bb42495fb77b
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1017, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:18 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:18 keypool reserve 430
DEBUG:bitcoind:2017-11-29 16:32:18 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:18 UpdateTip: new best=5abcb594742e50be06b223a4e2e4464454fccf8a2a8996d125e496c2dfe26ebb height=1018 version=0x20000000 log2_work=10.992938 tx=1137 date='2017-11-29 16:32:18' progress=1.000000 cache=0.2MiB(1129txo)
DEBUG:bitcoind:2017-11-29 16:32:18 AddToWallet 395cb5f41f1e281b7290f61a841659c2722f52e83303c624b3d54a46aa4d6d4e new
DEBUG:bitcoind:2017-11-29 16:32:18 keypool keep 430
DEBUG:proc:lightningd(13498): Adding block bb6ee2dfc296e425d196892a8acffc544446e4e2a423b206be502e7494b5bc5a
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1018, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:21 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:21 keypool reserve 431
DEBUG:bitcoind:2017-11-29 16:32:21 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:21 UpdateTip: new best=329fe716cbad7d08d38586bfd2a7dca20b1349b3a8df986f6a80fdde5f08083e height=1019 version=0x20000000 log2_work=10.994353 tx=1138 date='2017-11-29 16:32:21' progress=1.000000 cache=0.2MiB(1130txo)
DEBUG:bitcoind:2017-11-29 16:32:21 AddToWallet b52ab4081cdb184e4155bfbd8ec4728814bae5a0cad40c561d7301654cad7c80 new
DEBUG:bitcoind:2017-11-29 16:32:21 keypool keep 431
DEBUG:proc:2017-11-29 17:32:21.615 [INF] BMGR: Processed 4 blocks in the last 12.41s (4 transactions, height 1019, 2017-11-29 17:32:21 +0100 CET)
DEBUG:proc:lightningd(13498): Adding block 3e08085fdefd806a6f98dfa8b349130ba2dca7d2bf8685d3087dadcb16e79f32
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1019, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:24 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:24 keypool reserve 432
DEBUG:bitcoind:2017-11-29 16:32:24 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:24 UpdateTip: new best=5839671651cd6556b75e2ef68f0b4091c53e2bae8d77cf2469f19aff3975c162 height=1020 version=0x20000000 log2_work=10.995767 tx=1139 date='2017-11-29 16:32:24' progress=1.000000 cache=0.2MiB(1131txo)
DEBUG:bitcoind:2017-11-29 16:32:24 AddToWallet 969f7760a271d51a3c8e13fe7b5016e9b44397cb49c626415b7b8b1bc01d124f new
DEBUG:bitcoind:2017-11-29 16:32:24 keypool keep 432
DEBUG:proc:lightningd(13498): Adding block 62c17539ff9af16924cf778dae2b3ec591400b8ff62e5eb75665cd5116673958
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1020, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:27 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:27 keypool reserve 433
DEBUG:bitcoind:2017-11-29 16:32:27 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:27 UpdateTip: new best=5b0c74efa9123bd08f984182db45017a7a10c57444e63264ca1549efef878c68 height=1021 version=0x20000000 log2_work=10.997179 tx=1140 date='2017-11-29 16:32:27' progress=1.000000 cache=0.2MiB(1132txo)
DEBUG:bitcoind:2017-11-29 16:32:27 AddToWallet a89b40fc6a193f67edff333ed366d56e3236fcc702c5ebb2157c0bca8ab65f78 new
DEBUG:bitcoind:2017-11-29 16:32:27 keypool keep 433
DEBUG:proc:lightningd(13498): Adding block 688c87efef4915ca6432e64474c5107a7a0145db8241988fd03b12a9ef740c5b
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1021, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:30 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:30 keypool reserve 434
DEBUG:bitcoind:2017-11-29 16:32:30 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:30 UpdateTip: new best=593cba91f046a46de4467a406540c7fd7ca3c06c6f8852c02be90e1ce6960507 height=1022 version=0x20000000 log2_work=10.99859 tx=1141 date='2017-11-29 16:32:30' progress=1.000000 cache=0.2MiB(1133txo)
DEBUG:bitcoind:2017-11-29 16:32:30 AddToWallet 9cb750a32cb20d9683a222be314beb23dfddb6e077741c94595ce380cc614eed new
DEBUG:bitcoind:2017-11-29 16:32:30 keypool keep 434
DEBUG:proc:lightningd(13498): Adding block 070596e61c0ee92bc052886f6cc0a37cfdc74065407a46e46da446f091ba3c59
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1022, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:33 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:33 keypool reserve 435
DEBUG:bitcoind:2017-11-29 16:32:33 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:33 UpdateTip: new best=184069aced64b304312dacea18ee20e7ff2da19c5233b7d1dc161fc233cd8610 height=1023 version=0x20000000 log2_work=11 tx=1142 date='2017-11-29 16:32:33' progress=1.000000 cache=0.2MiB(1134txo)
DEBUG:bitcoind:2017-11-29 16:32:33 AddToWallet b2b06cf1cd675fd04926cd02cf9b816d35ca0f2a67c830363969d8699478ceac new
DEBUG:bitcoind:2017-11-29 16:32:33 keypool keep 435
DEBUG:proc:2017-11-29 17:32:33.812 [INF] BMGR: Processed 4 blocks in the last 12.19s (4 transactions, height 1023, 2017-11-29 17:32:33 +0100 CET)
DEBUG:proc:lightningd(13498): Adding block 1086cd33c21f16dcd1b733529ca12dffe720ee18eaac2d3104b364edac694018
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1023, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:36 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:36 keypool reserve 436
DEBUG:bitcoind:2017-11-29 16:32:36 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:36 UpdateTip: new best=3164776869be9ce329006c05e4743675440e223490289ce902e6ef87fb4c9db6 height=1024 version=0x20000000 log2_work=11.001408 tx=1143 date='2017-11-29 16:32:36' progress=1.000000 cache=0.2MiB(1135txo)
DEBUG:bitcoind:2017-11-29 16:32:36 AddToWallet 3842655d1bbca20e7317d8c3e6924ba958b52245070254f43299725de91b2916 new
DEBUG:bitcoind:2017-11-29 16:32:36 keypool keep 436
DEBUG:proc:lightningd(13498): Adding block b69d4cfb87efe602e99c289034220e44753674e4056c0029e39cbe6968776431
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1024, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:39 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:39 keypool reserve 437
DEBUG:bitcoind:2017-11-29 16:32:39 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:39 UpdateTip: new best=79f065780e2aee7bfdda812fd3da08a2ec6f44753da999ff908b778c1c2485cd height=1025 version=0x20000000 log2_work=11.002815 tx=1144 date='2017-11-29 16:32:39' progress=1.000000 cache=0.2MiB(1136txo)
DEBUG:bitcoind:2017-11-29 16:32:39 AddToWallet 6b63ca5c0ab54c81b06c79a24e51bb74f2b42afb240c6862adccfe09b0359679 new
DEBUG:bitcoind:2017-11-29 16:32:39 keypool keep 437
DEBUG:proc:lightningd(13498): Adding block cd85241c8c778b90ff99a93d75446feca208dad32f81dafd7bee2a0e7865f079
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1025, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:43 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:43 keypool reserve 438
DEBUG:bitcoind:2017-11-29 16:32:43 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:43 UpdateTip: new best=7860a19d0b4940a26773b8ccee2e046bf9b6129e8380b84ab2ef1343953d4906 height=1026 version=0x20000000 log2_work=11.00422 tx=1145 date='2017-11-29 16:32:43' progress=1.000000 cache=0.2MiB(1137txo)
DEBUG:bitcoind:2017-11-29 16:32:43 AddToWallet a2a7942d358d1822b4e241e8ba076c7647bfc1b779aedf468f47621d25f538a6 new
DEBUG:bitcoind:2017-11-29 16:32:43 keypool keep 438
DEBUG:proc:lightningd(13498): Adding block 06493d954313efb24ab880839e12b6f96b042eeeccb87367a240490b9da16078
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1026, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:46 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:46 keypool reserve 439
DEBUG:bitcoind:2017-11-29 16:32:46 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:46 UpdateTip: new best=7d57bdaf3fb3130e01001cb228a4c0cade7260e17d78ea97e2b1f7be5dcbfa9e height=1027 version=0x20000000 log2_work=11.005625 tx=1146 date='2017-11-29 16:32:46' progress=1.000000 cache=0.2MiB(1138txo)
DEBUG:bitcoind:2017-11-29 16:32:46 AddToWallet a93b023cf6a5b1b4b295c32123f5bcfb99cb4c19fbf3a1ee0aa99b47843aa3c4 new
DEBUG:bitcoind:2017-11-29 16:32:46 keypool keep 439
DEBUG:proc:2017-11-29 17:32:46.107 [INF] BMGR: Processed 4 blocks in the last 12.29s (4 transactions, height 1027, 2017-11-29 17:32:46 +0100 CET)
DEBUG:proc:lightningd(13498): Adding block 9efacb5dbef7b1e297ea787de16072decac0a428b21c00010e13b33fafbd577d
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1027, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
{"method": "generate", "params": [1], "id": 1, "version": "1.1"}
DEBUG:bitcoind:2017-11-29 16:32:49 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:49 keypool reserve 440
DEBUG:bitcoind:2017-11-29 16:32:49 CreateNewBlock(): total size: 263 block weight: 944 txs: 0 fees: 0 sigops 400
DEBUG:bitcoind:2017-11-29 16:32:49 UpdateTip: new best=2d25c56d8e85fc71c1435bdf25b6e6f7c9d1df6d1884a55c5b77189ab0f42143 height=1028 version=0x20000000 log2_work=11.007027 tx=1147 date='2017-11-29 16:32:49' progress=1.000000 cache=0.2MiB(1139txo)
DEBUG:bitcoind:2017-11-29 16:32:49 AddToWallet 868a8c11bae9b94b85743d9912665fd1b4dab32cc6aac70f3b55753cd5f2b9ce new
DEBUG:bitcoind:2017-11-29 16:32:49 keypool keep 440
DEBUG:proc:lightningd(13498): Adding block 4321f4b09a18775b5ca584186ddfd1c9f7e6b625df5b43c171fc858e6dc5252d
DEBUG:proc:lightningd(13498): Immediate feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Normal feerate 5013 (was 5013)
DEBUG:proc:lightningd(13498): Slow feerate 5013 (was 5013)
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3', 'alias': 'eclair', 'blockHeight': 1027, 'port': 16331}, 'id': 'scala-client'}
INFO:root:Calling channels with params=[]
DEBUG:urllib3.connectionpool:http://localhost:26331 "POST / HTTP/1.1" 200 45
DEBUG:root:Method channels returned {'result': [], 'id': 'scala-client'}
WARNING:eclair-node(16331):Channel 031a9e65e3a1764850e063b97758a1a6c4a3e5a60f62128c0eb301641f3e5c43b3 -> 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c not found
INFO:root:Calling getinfo with params=[]
DEBUG:urllib3.connectionpool:Resetting dropped connection: localhost
DEBUG:urllib3.connectionpool:http://localhost:26333 "POST / HTTP/1.1" 200 287
DEBUG:root:Method getinfo returned {'result': {'chainHash': '06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f', 'nodeId': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'alias': 'eclair', 'blockHeight': 1027, 'port': 16333}, 'id': 'scala-client'}
DEBUG:lightning-node(16332):Calling getpeers with arguments ()
DEBUG:root:Calling getpeers with arguments ()
DEBUG:proc:lightningd(13498): Connected json input
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIP_GETPEERS_REQUEST len 2
DEBUG:proc:lightning_gossipd(13659): REPLY WIRE_GOSSIP_GETPEERS_REPLY with 0 fds
DEBUG:proc:lightningd(13498):jcon fd 14: Success
DEBUG:proc:lightningd(13498):jcon fd 14: Closing (Bad file descriptor)
DEBUG:root:Received response for getpeers call: {'result': {'peers': [{'peerid': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}]}, 'jsonrpc': '2.0', 'id': 0}
DEBUG:lightning-node(16332):Call returned {'peers': [{'peerid': '033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 'owner': 'lightning_gossipd', 'netaddr': ['127.0.0.1:16333'], 'connected': True, 'state': 'GOSSIPING'}]}
DEBUG:lightning-node(16332):Calling fundchannel with arguments ('033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 10000000)
DEBUG:root:Calling fundchannel with arguments ('033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1', 10000000)
DEBUG:proc:lightningd(13498): Connected json input
DEBUG:proc:lightning_gossipd(13659): TRACE: req: type WIRE_GOSSIPCTL_RELEASE_PEER len 35
DEBUG:proc:lightning_gossipd(13659): REPLY WIRE_GOSSIPCTL_RELEASE_PEER_REPLY with 2 fds
DEBUG:proc:lightningd(13498): peer 033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1: state: UNINITIALIZED -> OPENINGD
DEBUG:proc:lightning_openingd(17408): pid 17408, msgfd 19
DEBUG:proc:lightning_openingd(17408): TRACE: First per_commit_point = 02c020090ffc651b76054715f0ce18b68eba41326834ecaff3b1b8ecef10b68480
DEBUG:eclair(16333):2017-11-29 17:32:51,408 INFO fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - accepting a new channel to 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
DEBUG:bitcoind:2017-11-29 16:32:51 keypool added 1 keys (0 internal), size=2000 (1000 internal)
DEBUG:bitcoind:2017-11-29 16:32:51 keypool reserve 441
DEBUG:bitcoind:2017-11-29 16:32:51 keypool keep 441
DEBUG:eclair(16333):2017-11-29 17:32:51,689 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a - setting repeating timer 'TickRefreshChannelUpdate'/1 day: TickRefreshChannelUpdate
DEBUG:eclair(16333):2017-11-29 17:32:51,709 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 0000000000000000000000000000000000000000000000000000000000000000 - processing Event(INPUT_INIT_FUNDEE(4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d,LocalParams(033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1,542,100000000000,100000,1000000,144,30,3928b001257f49f3b240aad7b98ca68cffbcb9cf4d4be5c6d11f02c4b12e25df01,d3185e99096fa1ccf63e1b97d57004a0d064ac1af12572e8d53b7f5283f91103,119af557ff1deeb1bea0c0d0fa69782075deae8d19d7cd3ac2c9fc6029078c7d,4d791b0bdeaaf212e76e4fce77295f8e1783b996ac517703c302b8edf55bfeb7,e347f358c959941514ad755f0b3595dd0297c15389d945e4eae02ef6ffbf1fd7,a9145ba6f19d356d53fcfa1a6e204a075fdc7128a22287,70dc86ea645fe334b63e25e7748e8a1b600916522dabdee1eba31ad86de20ccc,false,,08),Actor[akka://default/user/$i/server/$a#-1059075935],Init(,08)),Nothing) from Actor[akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c#1435128302] in state WAIT_FOR_INIT_INTERNAL
DEBUG:eclair(16333):2017-11-29 17:32:51,710 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 0000000000000000000000000000000000000000000000000000000000000000 - transition WAIT_FOR_INIT_INTERNAL -> WAIT_FOR_OPEN_CHANNEL
DEBUG:eclair(16333):2017-11-29 17:32:51,712 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d - processing Event(OpenChannel(06226e46111a0b59caaf126043eb5bbf28c34f3a5e332a1fc7b2b73cf188910f,4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d,10000000,0,546,18446744073709551615,100000,0,5013,6,483,03688bdef4e7d0411d4c53dc76ac76c24575996722f9ca5790aa65e307a6c86d1a,021a42c68e99b16c6d737b5296c05c1d7ccf1ea7b38916ee6e070d6ff38f7fef55,033860661d057037845ee58806f8176e2e1acc9d194b897e667474412d3e22c1a5,0319771b453e89e634d8fed885adcf3b745d241426785e7f0e534abd7a4d8fad2d,0331639b16cea57f5ab11fe5eff13a285b3cd51da2a41790f965a34227d8ffbc3b,02c020090ffc651b76054715f0ce18b68eba41326834ecaff3b1b8ecef10b68480,1),DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d,LocalParams(033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1,542,100000000000,100000,1000000,144,30,3928b001257f49f3b240aad7b98ca68cffbcb9cf4d4be5c6d11f02c4b12e25df01,d3185e99096fa1ccf63e1b97d57004a0d064ac1af12572e8d53b7f5283f91103,119af557ff1deeb1bea0c0d0fa69782075deae8d19d7cd3ac2c9fc6029078c7d,4d791b0bdeaaf212e76e4fce77295f8e1783b996ac517703c302b8edf55bfeb7,e347f358c959941514ad755f0b3595dd0297c15389d945e4eae02ef6ffbf1fd7,a9145ba6f19d356d53fcfa1a6e204a075fdc7128a22287,70dc86ea645fe334b63e25e7748e8a1b600916522dabdee1eba31ad86de20ccc,false,,08),Actor[akka://default/user/$i/server/$a#-1059075935],Init(,08)))) from Actor[akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c#1435128302] in state WAIT_FOR_OPEN_CHANNEL
DEBUG:eclair(16333):2017-11-29 17:32:51,714 WARN fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d - local/remote feerates are too different: remoteFeeratePerKw=5013 localFeeratePerKw=53760
DEBUG:eclair(16333):2017-11-29 17:32:51,717 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d - transition WAIT_FOR_OPEN_CHANNEL -> CLOSED
DEBUG:proc:lightning_openingd(17408): TRACE: Read decrypt 00114fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d00586c6f63616c2f72656d6f74652066656572617465732061726520746f6f20646966666572656e743a2072656d6f7465466565726174655065724b773d35303133206c6f63616c466565726174655065724b773d3533373630
DEBUG:proc:lightning_openingd(17408): STATUS_FAIL_PEER_BAD: Parsing accept_channel 00114fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d00586c6f63616c2f72656d6f74652066656572617465732061726520746f6f20646966666572656e743a2072656d6f7465466565726174655065724b773d35303133206c6f63616c466565726174655065724b773d3533373630
DEBUG:proc:lightningd(13498): peer 033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1: Peer permanent failure in OPENINGD: Parsing accept_channel 00114fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d00586c6f63616c2f72656d6f74652066656572617465732061726520746f6f20646966666572656e743a2072656d6f7465466565726174655065724b773d35303133206c6f63616c466565726174655065724b773d3533373630
DEBUG:proc:lightningd(13498):jcon fd 14: Failing: Peer died
DEBUG:eclair(16333):2017-11-29 17:32:51,719 WARN f.a.eclair.crypto.TransportHandler akka://default/user/$i/server/$a - connection closed
DEBUG:eclair(16333):2017-11-29 17:32:51,720 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d - processing Event(Error(4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d,50617273696e67206163636570745f6368616e6e656c20303031313466653731653535343833333533316335316362386265393639376230646636303130343531643838653533306639366566346231336538353931353566326430303538366336663633363136633266373236353664366637343635323036363635363537323631373436353733323036313732363532303734366636663230363436393636363636353732363536653734336132303732363536643666373436353436363536353732363137343635353036353732346237373364333533303331333332303663366636333631366334363635363537323631373436353530363537323462373733643335333333373336333000),DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d,LocalParams(033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1,542,100000000000,100000,1000000,144,30,3928b001257f49f3b240aad7b98ca68cffbcb9cf4d4be5c6d11f02c4b12e25df01,d3185e99096fa1ccf63e1b97d57004a0d064ac1af12572e8d53b7f5283f91103,119af557ff1deeb1bea0c0d0fa69782075deae8d19d7cd3ac2c9fc6029078c7d,4d791b0bdeaaf212e76e4fce77295f8e1783b996ac517703c302b8edf55bfeb7,e347f358c959941514ad755f0b3595dd0297c15389d945e4eae02ef6ffbf1fd7,a9145ba6f19d356d53fcfa1a6e204a075fdc7128a22287,70dc86ea645fe334b63e25e7748e8a1b600916522dabdee1eba31ad86de20ccc,false,,08),Actor[akka://default/user/$i/server/$a#-1059075935],Init(,08)))) from Actor[akka://default/user/$i/server/$a#-1059075935] in state CLOSED
DEBUG:eclair(16333):2017-11-29 17:32:51,722 WARN fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d - unhandled event Error(4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d,50617273696e67206163636570745f6368616e6e656c20303031313466653731653535343833333533316335316362386265393639376230646636303130343531643838653533306639366566346231336538353931353566326430303538366336663633363136633266373236353664366637343635323036363635363537323631373436353733323036313732363532303734366636663230363436393636363636353732363536653734336132303732363536643666373436353436363536353732363137343635353036353732346237373364333533303331333332303663366636333631366334363635363537323631373436353530363537323462373733643335333333373336333000) in state CLOSED
DEBUG:eclair(16333):2017-11-29 17:32:51,725 WARN fr.acinq.eclair.io.Peer akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c - lost connection to 033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c
DEBUG:eclair(16333):2017-11-29 17:32:51,726 DEBUG fr.acinq.eclair.channel.Channel akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c/$a 4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d - processing Event(INPUT_DISCONNECTED,DATA_WAIT_FOR_OPEN_CHANNEL(INPUT_INIT_FUNDEE(4fe71e554833531c51cb8be9697b0df6010451d88e530f96ef4b13e859155f2d,LocalParams(033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1,542,100000000000,100000,1000000,144,30,3928b001257f49f3b240aad7b98ca68cffbcb9cf4d4be5c6d11f02c4b12e25df01,d3185e99096fa1ccf63e1b97d57004a0d064ac1af12572e8d53b7f5283f91103,119af557ff1deeb1bea0c0d0fa69782075deae8d19d7cd3ac2c9fc6029078c7d,4d791b0bdeaaf212e76e4fce77295f8e1783b996ac517703c302b8edf55bfeb7,e347f358c959941514ad755f0b3595dd0297c15389d945e4eae02ef6ffbf1fd7,a9145ba6f19d356d53fcfa1a6e204a075fdc7128a22287,70dc86ea645fe334b63e25e7748e8a1b600916522dabdee1eba31ad86de20ccc,false,,08),Actor[akka://default/user/$i/server/$a#-1059075935],Init(,08)))) from Actor[akka://default/user/$g/switchboard/peer-033f7b74e9493439ec1bc7de9f7c4330e3b2f56d861d0fc5a4485685146b9b246c#1435128302] in state CLOSED
DEBUG:proc:lightning_gossipd(13659): TRACE: Forgetting remote peer 033b112518bc1ac059dfe2b199d24c65baf8ddee997768f08bb5277d2d9d2a55f1
DEBUG:root:Received response for fundchannel call: {'jsonrpc': '2.0', 'error': 'Peer died', 'id': 0}
--------------------------- Captured stdout teardown ---------------------------
INFO:root:LightningD stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment