--- Day changed Fri Jul 21 2017 00:00 -!- JackH [~laptop@46.231.18.66] has joined #lightning-dev 00:12 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 00:12 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #lightning-dev 00:34 -!- coredump_ [~quassel@vpn-qld171.vpnsolutions.com.au] has quit [Ping timeout: 246 seconds] 00:40 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Quit: Quitte] 00:45 -!- jtimon [~quassel@102.30.134.37.dynamic.jazztel.es] has quit [Ping timeout: 240 seconds] 00:54 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #lightning-dev 01:48 -!- Deadlyelder [~Thunderbi@ip-213-135-240-50.static.luxdsl.pt.lu] has quit [Remote host closed the connection] 01:49 -!- Deadlyelder [~Thunderbi@ip-213-135-240-50.static.luxdsl.pt.lu] has joined #lightning-dev 02:36 -!- coredump_ [~quassel@101.165.147.38] has joined #lightning-dev 02:49 -!- coredump_ [~quassel@101.165.147.38] has quit [Ping timeout: 246 seconds] 02:49 -!- coredump_ [~quassel@101.165.147.38] has joined #lightning-dev 02:51 < bincap> cdecker: would be good to promote LN (and SW) on /r/btc, I think most people there, opposing SW and usually SW+LN, are just missinformed 02:52 < cdecker> Been doing that for a while, but having to debunk the same stuff over and over again is quite tiring 02:53 < cdecker> Probably best to just wait for segwit to activate and start growing the network slowly 02:53 < cdecker> No need to go for a direct confrontation when we can just show that it works 02:58 < JackH> does LN lnd work on bitcoin core yet? 02:58 < JackH> or are you still not building on core? 02:59 < cdecker> c-lightning and eclair are working on bitcoind 02:59 < cdecker> lnd is using btcd patched with segwit by roasbeef 03:02 < JackH> ah c-lightning already on bitcoind, nice 03:03 < JackH> is c-lightning compatible with eclair yet? 03:03 < JackH> or I should ask, are all the BIP 03:03 < JackH> sorry, not BIP, the BOLT specs done 03:07 < cdecker> We are working on getting them completely compatible, and still fixing some ambiguities in the spec 03:07 < cdecker> I have an integration framework to check interoperability here https://github.com/cdecker/lightning-integration 03:08 < cdecker> connect and fundchannel seems to work between c-lightning and eclair 03:08 < cdecker> And indeed I can connect to Eclair's default host with c-lightning 03:18 -!- coredump_ [~quassel@101.165.147.38] has quit [Ping timeout: 246 seconds] 03:39 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Quit: Quitte] 04:12 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:12 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #lightning-dev 05:04 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Remote host closed the connection] 05:05 -lightningrfc:#lightning-dev- [lightning-rfc] cdecker opened pull request #211: BOLT09: Further specify how bits are specified. (master...feature-bits) https://git.io/v7Ugy 07:23 -!- JackH [~laptop@46.231.18.66] has quit [Quit: Leaving] 08:12 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 08:13 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #lightning-dev 08:25 -!- jtimon [~quassel@102.30.134.37.dynamic.jazztel.es] has joined #lightning-dev 08:30 -!- jtimon [~quassel@102.30.134.37.dynamic.jazztel.es] has quit [Remote host closed the connection] 08:32 -!- deusexbeer [~deusexbee@093-092-177-222-dynamic-pool-adsl.wbt.ru] has quit [Ping timeout: 248 seconds] 08:32 -!- deusexbeer [~deusexbee@095-129-170-117-dynamic-pool-adsl.wbt.ru] has joined #lightning-dev 08:34 -!- Someone_ [~Someone@s55942913.adsl.online.nl] has joined #lightning-dev 08:35 < Someone_> Hello everybody, I was testing Eclair ldn and it went well with processing simple RPC JSON commands but i'm having difficulties with inserting params because i'm getting "method not found" error. 08:35 < Someone_> I'm using this curl command: 08:35 < Someone_> curl --data-binary '{"jsonrpc":"2.0", "id": "0", "method": "receive", "params": [{"amountMsat":"5000"}]}'\ 08:35 < Someone_> -H 'content-type:application/json'\ 08:35 < Someone_> http://localhost:8081 08:36 < Someone_> I'm not sure how the params should be processed, I know it should be a list, even with only "params": ["5000"] it doesnt recognize 08:44 -!- deusexbeer [~deusexbee@095-129-170-117-dynamic-pool-adsl.wbt.ru] has quit [Quit: Konversation terminated!] 08:48 -!- a___ [2a961b0b@gateway/web/freenode/ip.42.150.27.11] has joined #lightning-dev 08:48 -!- a___ [2a961b0b@gateway/web/freenode/ip.42.150.27.11] has quit [Client Quit] 08:52 -!- deusexbeer [~deusexbee@095-129-170-117-dynamic-pool-adsl.wbt.ru] has joined #lightning-dev 09:01 < cdecker> Hi Someone_ I have an implementation of the Eclair RPC in python here https://github.com/cdecker/lightning-integration/blob/master/eclair.py#L109 09:01 < cdecker> Maybe that helps a bit? 09:01 < cdecker> It seems you need to use `[5000]` for the params 09:04 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-lcuyieiwfvopotkk] has joined #lightning-dev 09:06 < Someone_> Ah thank you! You are way ahead of me! Your repo is so awesome, i'm going to use that 09:06 < Someone_> `[5000]` for the params didnt work too unfournately, i'm stil getting method not found 09:07 < cdecker> You sure the RPC has a `receive` method? 09:10 < cdecker> Hm, it's in the README but I can't find where it's wired up in the source 09:10 < cdecker> (then again my scala is really rusty :-D) 09:10 < Someone_> Yes, when i use other method commands without need for params like getinfo, peers or channels i'm getting nice output 09:11 < Someone_> I don't even know scala :P 09:11 < Someone_> I found this script too but it's really outdated: https://github.com/ACINQ/eclair/blob/master/eclair-core/eclair-cli 09:12 < Someone_> Going to submit issue for that 10:22 < afdudley> that script seems to provide the proper RPC format though. 10:22 < afdudley> what happens when you just modify the contents to what you want? 11:47 -!- Someone_ [~Someone@s55942913.adsl.online.nl] has quit [Quit: Someone_] 11:53 -!- cdecker is now known as cdecker|afk 12:12 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 12:12 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #lightning-dev 12:28 -!- Someone_ [~Someone@s55942913.adsl.online.nl] has joined #lightning-dev 13:10 < Someone_> RPC format is fine, but eclair needs json as a header instead of post and those methods are outdated 13:10 < Someone_> https://github.com/ACINQ/eclair/issues/112 15:50 -!- Someone_ [~Someone@s55942913.adsl.online.nl] has quit [Quit: Someone_] 16:12 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 16:13 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #lightning-dev 16:28 -!- roidster [~chatzilla@71-92-221-248.static.mtpk.ca.charter.com] has joined #lightning-dev 18:09 -!- roidster [~chatzilla@71-92-221-248.static.mtpk.ca.charter.com] has quit [Ping timeout: 240 seconds] 18:44 -!- roidster [~chatzilla@71-92-221-248.static.mtpk.ca.charter.com] has joined #lightning-dev 20:01 -!- kurimoto [~kurimoto@42-150-27-11.rev.home.ne.jp] has joined #lightning-dev 20:13 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 20:14 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #lightning-dev 20:26 -!- sh_smith [foobar@cpe-76-174-26-91.socal.res.rr.com] has quit [Read error: Connection reset by peer] 20:28 -!- sh_smith [foobar@cpe-76-174-26-91.socal.res.rr.com] has joined #lightning-dev 20:29 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-lcuyieiwfvopotkk] has quit [Quit: Connection closed for inactivity] 21:14 -!- roidster [~chatzilla@71-92-221-248.static.mtpk.ca.charter.com] has quit [Quit: ChatZilla 0.9.92 [SeaMonkey 2.40/20160120202951]] 21:35 -!- CubicEarth [~cubiceart@host-69-144-45-132.static.bresnan.net] has joined #lightning-dev 22:01 -!- HostFat [~HostFat@93-39-178-182.ip77.fastwebnet.it] has joined #lightning-dev 22:20 -!- CubicEarth [~cubiceart@host-69-144-45-132.static.bresnan.net] has quit [Remote host closed the connection] 23:22 -!- kurimoto [~kurimoto@42-150-27-11.rev.home.ne.jp] has quit [Quit: kurimoto] 23:24 -!- kurimoto [~kurimoto@42-150-27-11.rev.home.ne.jp] has joined #lightning-dev 23:24 -!- kurimoto [~kurimoto@42-150-27-11.rev.home.ne.jp] has quit [Client Quit] 23:27 -!- kurimoto [~kurimoto@42-150-27-11.rev.home.ne.jp] has joined #lightning-dev 23:27 -!- kurimoto [~kurimoto@42-150-27-11.rev.home.ne.jp] has quit [Client Quit] 23:36 -!- kurimoto [~kurimoto@42-150-27-11.rev.home.ne.jp] has joined #lightning-dev 23:47 -!- coredump_ [~quassel@101.165.147.38] has joined #lightning-dev 23:54 -!- coredump_ [~quassel@101.165.147.38] has quit [Ping timeout: 246 seconds] 23:55 -!- coredump_ [~quassel@101.165.147.38] has joined #lightning-dev