< 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/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....
< 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
< 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();