< bitcoin-git> [bitcoin] practicalswift opened pull request #10047: [tests] Remove unused and duplicate imports (master...remove-unused-python-imports) https://github.com/bitcoin/bitcoin/pull/10047
< bitcoin-git> [bitcoin] jtimon opened pull request #10048: WIP: Freicoin: Move away from 8 decimals (master...ar-0.13-freicoin-decimals) https://github.com/bitcoin/bitcoin/pull/10048
< bitcoin-git> [bitcoin] practicalswift opened pull request #10049: [tests] Remove unused variables (master...unused-variables) https://github.com/bitcoin/bitcoin/pull/10049
< bitcoin-git> [bitcoin] AllanDoensen opened pull request #10050: I have a working but untested BU implementation on head of core (14).... (0.14...0.14) https://github.com/bitcoin/bitcoin/pull/10050
< bitcoin-git> [bitcoin] AllanDoensen closed pull request #10050: I have a working but untested BU implementation on head of core (14).... (0.14...0.14) https://github.com/bitcoin/bitcoin/pull/10050
< bitcoin-git> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/919aaf650855...90586b68972c
< bitcoin-git> bitcoin/master dbf30ff practicalswift: [trivial] Fix typos in comments
< bitcoin-git> bitcoin/master 90586b6 Jonas Schnelli: Merge #10045: [trivial] Fix typos in comments...
< bitcoin-git> [bitcoin] jonasschnelli closed pull request #10045: [trivial] Fix typos in comments (master...typos-201703) https://github.com/bitcoin/bitcoin/pull/10045
< bitcoin-git> [bitcoin] rubensayshi opened pull request #10051: whitelist outbound connection (master...whitelist-outbound) https://github.com/bitcoin/bitcoin/pull/10051
< bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/90586b68972c...02d64bd929c9
< bitcoin-git> bitcoin/master 61d75f5 John Newbery: Introduce combine_logs.py to combine log files from multiple bitcoinds....
< bitcoin-git> bitcoin/master 8317a45 John Newbery: Python functional tests should log in UTC...
< bitcoin-git> bitcoin/master 02d64bd Wladimir J. van der Laan: Merge #10017: combine_logs.py - aggregates log files from multiple bitcoinds during functional tests....
< bitcoin-git> [bitcoin] laanwj closed pull request #10017: combine_logs.py - aggregates log files from multiple bitcoinds during functional tests. (master...log_aggregator) https://github.com/bitcoin/bitcoin/pull/10017
< bitcoin-git> [bitcoin] jnewbery opened pull request #10052: Run extended tests once daily in Travis (master...traviscronjobs) https://github.com/bitcoin/bitcoin/pull/10052
< bitcoin-git> [bitcoin] jnewbery opened pull request #10053: Allow functional test cases to be skipped (master...skiptests) https://github.com/bitcoin/bitcoin/pull/10053
< bitcoin-git> [bitcoin] practicalswift closed pull request #10049: [tests] Remove unused variables (master...unused-variables) https://github.com/bitcoin/bitcoin/pull/10049
< Chris_Stewart_5> Just to be clear, we don't have any invariants around creating CPubKeys correct? No requirement for it to pass CPubKey::IsValid() or CPubKey::IsFullyValid()?
< Chris_Stewart_5> to construct a CPubKey at least
< Chris_Stewart_5> because doing so would be a HF?
< bitcoin-git> [bitcoin] kallewoof opened pull request #10054: [net] Avoid redefining MSG_DONTHAVE on macos (master...fix-macos-msg-dontwant) https://github.com/bitcoin/bitcoin/pull/10054
< bitcoin-git> [bitcoin] jnewbery opened pull request #10055: [test] [POC] Stop and start bitcoind nodes asynchronously in functional tests (master...stopstartasync) https://github.com/bitcoin/bitcoin/pull/10055
< bitcoin-git> [bitcoin] kallewoof opened pull request #10056: [zmq] Call va_end() on va_start()ed args. (master...fix-zmqpublishnotifier-va-end) https://github.com/bitcoin/bitcoin/pull/10056
< bitcoin-git> [bitcoin] tjps opened pull request #10057: [trivial] Deduplicated sigaction() boilerplate (master...tjps_dedupe_sigaction) https://github.com/bitcoin/bitcoin/pull/10057
< bitcoin-git> [bitcoin] kallewoof closed pull request #10054: [net] Avoid redefining MSG_DONTWAIT on macos (master...fix-macos-msg-dontwant) https://github.com/bitcoin/bitcoin/pull/10054
< bitcoin-git> [bitcoin] tjps opened pull request #10058: [trivial] No need to use OpenSSL malloc/free (master...tjps_ssl_mutex) https://github.com/bitcoin/bitcoin/pull/10058
< sipa> TIL: the c++ operator-> overloading works recursively
< sipa> if you call A->method(), and there is no A::method() but there is a A::operator->() which returns a B*, and there is no B::method() but there is a B::operator->() that returns a C* where a C::method() exists
< sipa> the call is A->operator->()->operator->()->method();
< bitcoin-git> [bitcoin] fanquake closed pull request #9342: Change SIG_NULLFAIL => NULLFAIL. (master...feature/unify_nullfail) https://github.com/bitcoin/bitcoin/pull/9342
< luke-jr> sipa: that's.. scary