< bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/70b12af87eb0...8ee572f0940b
< bitcoin-git> bitcoin/master c84ff23 fanquake: build: ignore macOS make deploy artefacts & add them to clean-local
< bitcoin-git> bitcoin/master 8ee572f fanquake: Merge #16371: build: ignore macOS make deploy artefacts & add them to clea...
< bitcoin-git> [bitcoin] fanquake merged pull request #16371: build: ignore macOS make deploy artefacts & add them to clean-local (master...ignore_osx_volname) https://github.com/bitcoin/bitcoin/pull/16371
< aj> BlueMatt: 420x100? blaze it!
< roconnor> Acutally this year I decided to adjust my coding width to 132 characters. I figure if it can fit on a VT100 can display it 132 characters on a line, that's good enough for me, punch card users be damned.
< roconnor> (er, my copyediting of that statment didn't really work out).
< fanquake> Travis initiating a crack-down or what: https://imgur.com/a/kIDI201
< aj> fanquake: their algorithms have realised you're a bot
< luke-jr> fanquake: they tend to do that; if you're runningTravis on your personal repo, get them to add it to the whitelist
< luke-jr> (although I guess they may insist we pay them more to retain the whitelist? :/)
< bitcoin-git> [bitcoin] fanquake opened pull request #16674: refactor: remove obsolete qt algorithm usage (master...remove_obselete_qt_usage) https://github.com/bitcoin/bitcoin/pull/16674
< fanquake> Travis-CI support have helpfully informed me that I'm probably mining cryptocurrency with their CI
< warren> fanquake: replace all strings to random strings, that'll fix it
< bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/8ee572f0940b...01ebaa05a487
< bitcoin-git> bitcoin/master 2dbfb37 Jeremy Rubin: Fix Char as Bool in interfaces
< bitcoin-git> bitcoin/master 01ebaa0 fanquake: Merge #16572: wallet: Fix Char as Bool in Wallet
< bitcoin-git> [bitcoin] fanquake merged pull request #16572: wallet: Fix Char as Bool in Wallet (master...fix-wallet-charbool) https://github.com/bitcoin/bitcoin/pull/16572
< provoostenator> fanquake: that happened to me as well as week ago. The most annoying part is that when Travis stops running on your PRs, Github doesn't mark that as CI failure.
< provoostenator> Emailing their support helped, though it took a day in my case.
< instagibbs> yeah they're pretty fast whitelisting
< instagibbs> took me a few hours to get back in
< bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/01ebaa05a487...6dfa9efa3f55
< bitcoin-git> bitcoin/master 6011c9d Jonas Schnelli: QA: fix rpc_setban.py race
< bitcoin-git> bitcoin/master 6dfa9ef MarcoFalke: Merge #16656: test: fix rpc_setban.py race
< bitcoin-git> [bitcoin] MarcoFalke merged pull request #16656: test: fix rpc_setban.py race (master...2019/08/rpc_setban) https://github.com/bitcoin/bitcoin/pull/16656
< elichai2> People have talked about Github's CI, apperantly I got in to the beta, hope to try it soon and give feedback on how is it compared to Travis/Appveyor :)
< jonasschnelli> Good to know elichai2!
< elichai2> OS wise the docs says they support Windows Server 2019/Windows Server 2016 R2/Ubuntu 18.04/Ubuntu 16.04/macOS X Mojave 10.14
< stevenroose> I'm trying to run Core's functional test suite of the 0.18 branch for Elements (I made the few changes to address the correct binaries and directories etc). I'm getting this error:
< stevenroose> test_framework.test_node.FailedToStartError: [node 0] bitcoind exited with status -11 during initialization
< stevenroose> Which is super strange. -11 is RPC_WALLET_INVALID_LABEL_NAME.
< phantomcircuit> stevenroose, your question is out of scope for this channel
< stevenroose> Which is only invoked when getnewaddress, setlabel, getreceivedbylabel, addmultisigaddress or getaddressesbylabel is called.
< stevenroose> Well, my question was gonna be if the test_framework code ever invokes any of those RPC methods.
< stevenroose> I grep'd only found getnewaddress but never with a label attached.
< stevenroose> phantomcircuit: sorry if this is out of scope.. nvm them. just puzzled how I could get a RPC_WALLET_INVALID_LABEL_NAME by invoking create_cache.py
< jnewbery> stevenroose: RPC_WALLET_INVALID_LABEL_NAME is a JSON error returned by RPC methods. It's not an exit code for the bitcoind binary
< provoostenator> Also note that a lot of non-wallet tests do use a wallet.
< MarcoFalke> [12:05] <stevenroose> test_framework.test_node.FailedToStartError: [node 0] bitcoind exited with status -11 during initialization
< MarcoFalke> This is not an RPC error, but the exit code of bitcoind
< MarcoFalke> Usually a segfault, assertion error, InitError, ...
< MarcoFalke> runtime_error, ...