Christian Decker
Christian Decker
I have updated the `Dockerfile` for the v0.12.1 release in this branch: https://github.com/ElementsProject/lightning/tree/docker-v0.12.1 It just switches from being `poetry` back to `pip`, which seems to be more stable. We can't...
No, I want to get rid of poetry as much as possible, and since we can export the requirements.txt file and just use pip (reusing the cached dependency resolution from...
Seems there is one json scan that doesn't always match the payload: ``` `openchannel2` payload did not scan Parsing '{openchannel2:{id:%,channel_id:%,their_funding_msat:%,max_htlc_value_in_flight_msat:%,htlc_minimum_msat:%,funding_feerate_per_kw:%,commitment_feerate_per_kw:%,feerate_our_max:%,feerate_our_min:%,to_self_delay:%,max_accepted_htlcs:%,channel_flags:%,locktime:%,channel_max_msat:': object does not have member channel_max_msat: {"openchannel2":{"id":"0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518","channel_id":"252d1b0a1e57895e84137f28cf19ab2c35847e284c112fefdecc7afeaa5c1de7","their_funding_msat":16777216000,"dust_limit_msat":546000,"max_htlc_value_in_flight_msat":18446744073709551615,"htlc_minimum_msat":0,"funding_feerate_per_kw":7500,"commitment_feerate_per_kw":7500,"feerate_our_max":150000,"feerate_our_min":1875,"to_self_delay":5,"max_accepted_htlcs":483,"channel_flags":1,"locktime":102}} ``` The offending...
Easiest way to verify that `lightningd` should be able to contact `bitcoind` is by just tring `bitcoin-cli` as the node would itself: 1. If you are running the node as...
Rollback? That should not be possible since there were DB updates inbetween if I'm not mistaken. Are you sure you were running the `bitcoin-cli` with the user that is specified...
Wondering if we can bring this up to date and add it to the merge-train :-)
Awesome, can't wait for your changes to land :rocket:
Rebased on top of `master`, @bitcoin-bot seems to have auto-ACKed it (finally!)
That should be the `blockheight` in the `getinfo` result.
Shellcheck isn't happy: ``` In contrib/startup_regtest.sh line 162: alias bt-cli="$BITCOINCLI -regtest" ^---------^ SC2139: This expands when defined, not when used. Consider escaping. For more information: https://www.shellcheck.net/wiki/SC2139 -- This expands when...