1 2017-03-22 00:38:11	0|bitcoin-git|[13bitcoin] 15practicalswift opened pull request #10047: [tests] Remove unused and duplicate imports (06master...06remove-unused-python-imports) 02https://github.com/bitcoin/bitcoin/pull/10047
 2 2017-03-22 02:56:45	0|bitcoin-git|[13bitcoin] 15jtimon opened pull request #10048: WIP: Freicoin: Move away from 8 decimals (06master...06ar-0.13-freicoin-decimals) 02https://github.com/bitcoin/bitcoin/pull/10048
 3 2017-03-22 05:41:45	0|bitcoin-git|[13bitcoin] 15practicalswift opened pull request #10049: [tests] Remove unused variables (06master...06unused-variables) 02https://github.com/bitcoin/bitcoin/pull/10049
 4 2017-03-22 05:48:50	0|bitcoin-git|[13bitcoin] 15AllanDoensen opened pull request #10050: I have a working but untested BU implementation on head of core (14)....  (060.14...060.14) 02https://github.com/bitcoin/bitcoin/pull/10050
 5 2017-03-22 06:01:32	0|bitcoin-git|[13bitcoin] 15AllanDoensen closed pull request #10050: I have a working but untested BU implementation on head of core (14)....  (060.14...060.14) 02https://github.com/bitcoin/bitcoin/pull/10050
 6 2017-03-22 07:39:11	0|bitcoin-git|13bitcoin/06master 14dbf30ff 15practicalswift: [trivial] Fix typos in comments
 7 2017-03-22 07:39:11	0|bitcoin-git|[13bitcoin] 15jonasschnelli pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/919aaf650855...90586b68972c
 8 2017-03-22 07:39:12	0|bitcoin-git|13bitcoin/06master 1490586b6 15Jonas Schnelli: Merge #10045: [trivial] Fix typos in comments...
 9 2017-03-22 07:39:52	0|bitcoin-git|[13bitcoin] 15jonasschnelli closed pull request #10045: [trivial] Fix typos in comments (06master...06typos-201703) 02https://github.com/bitcoin/bitcoin/pull/10045
10 2017-03-22 08:56:00	0|bitcoin-git|[13bitcoin] 15rubensayshi opened pull request #10051: whitelist outbound connection (06master...06whitelist-outbound) 02https://github.com/bitcoin/bitcoin/pull/10051
11 2017-03-22 12:04:02	0|bitcoin-git|[13bitcoin] 15laanwj pushed 3 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/90586b68972c...02d64bd929c9
12 2017-03-22 12:04:03	0|bitcoin-git|13bitcoin/06master 1461d75f5 15John Newbery: Introduce combine_logs.py to combine log files from multiple bitcoinds....
13 2017-03-22 12:04:04	0|bitcoin-git|13bitcoin/06master 1402d64bd 15Wladimir J. van der Laan: Merge #10017: combine_logs.py - aggregates log files from multiple bitcoinds during functional tests....
14 2017-03-22 12:04:04	0|bitcoin-git|13bitcoin/06master 148317a45 15John Newbery: Python functional tests should log in UTC...
15 2017-03-22 12:04:24	0|bitcoin-git|[13bitcoin] 15laanwj closed pull request #10017: combine_logs.py - aggregates log files from multiple bitcoinds during functional tests. (06master...06log_aggregator) 02https://github.com/bitcoin/bitcoin/pull/10017
16 2017-03-22 15:11:29	0|bitcoin-git|[13bitcoin] 15jnewbery opened pull request #10052: Run extended tests once daily in Travis (06master...06traviscronjobs) 02https://github.com/bitcoin/bitcoin/pull/10052
17 2017-03-22 15:14:03	0|bitcoin-git|[13bitcoin] 15jnewbery opened pull request #10053: Allow functional test cases to be skipped (06master...06skiptests) 02https://github.com/bitcoin/bitcoin/pull/10053
18 2017-03-22 16:51:28	0|bitcoin-git|[13bitcoin] 15practicalswift closed pull request #10049: [tests] Remove unused variables (06master...06unused-variables) 02https://github.com/bitcoin/bitcoin/pull/10049
19 2017-03-22 17:48:00	0|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()?
20 2017-03-22 17:48:09	0|Chris_Stewart_5|to construct a CPubKey at least
21 2017-03-22 17:51:13	0|Chris_Stewart_5|because doing so would be a HF?
22 2017-03-22 19:07:50	0|bitcoin-git|[13bitcoin] 15kallewoof opened pull request #10054: [net] Avoid redefining MSG_DONTHAVE on macos (06master...06fix-macos-msg-dontwant) 02https://github.com/bitcoin/bitcoin/pull/10054
23 2017-03-22 20:03:21	0|bitcoin-git|[13bitcoin] 15jnewbery opened pull request #10055: [test] [POC] Stop and start bitcoind nodes asynchronously in functional tests (06master...06stopstartasync) 02https://github.com/bitcoin/bitcoin/pull/10055
24 2017-03-22 20:15:06	0|bitcoin-git|[13bitcoin] 15kallewoof opened pull request #10056: [zmq] Call va_end() on va_start()ed args. (06master...06fix-zmqpublishnotifier-va-end) 02https://github.com/bitcoin/bitcoin/pull/10056
25 2017-03-22 20:32:08	0|bitcoin-git|[13bitcoin] 15tjps opened pull request #10057: [trivial] Deduplicated sigaction() boilerplate (06master...06tjps_dedupe_sigaction) 02https://github.com/bitcoin/bitcoin/pull/10057
26 2017-03-22 20:43:00	0|bitcoin-git|[13bitcoin] 15kallewoof closed pull request #10054: [net] Avoid redefining MSG_DONTWAIT on macos (06master...06fix-macos-msg-dontwant) 02https://github.com/bitcoin/bitcoin/pull/10054
27 2017-03-22 22:49:34	0|bitcoin-git|[13bitcoin] 15tjps opened pull request #10058: [trivial] No need to use OpenSSL malloc/free (06master...06tjps_ssl_mutex) 02https://github.com/bitcoin/bitcoin/pull/10058
28 2017-03-22 23:03:39	0|sipa|TIL: the c++ operator-> overloading works recursively
29 2017-03-22 23:05:13	0|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
30 2017-03-22 23:05:27	0|sipa|the call is A->operator->()->operator->()->method();
31 2017-03-22 23:11:14	0|bitcoin-git|[13bitcoin] 15fanquake closed pull request #9342: Change SIG_NULLFAIL => NULLFAIL. (06master...06feature/unify_nullfail) 02https://github.com/bitcoin/bitcoin/pull/9342
32 2017-03-22 23:26:32	0|luke-jr|sipa: that's.. scary