1 2016-11-02 01:13:11	0|GitHub120|[13bitcoin] 15robmcl4 opened pull request #9060: trivial: fix bloom filter init to isEmpty = true (06master...06fix-bloom-filter-empty-init) 02https://github.com/bitcoin/bitcoin/pull/9060
  2 2016-11-02 01:29:09	0|TD-Linux|dgenr8, time to upgrade to an autostart rom
  3 2016-11-02 03:35:45	0|GitHub31|[13bitcoin] 15rebroad opened pull request #9061: Ignore getheaders prior to passing all checkpoints. (06master...06FixGetheadersResponseWhenSyncing) 02https://github.com/bitcoin/bitcoin/pull/9061
  4 2016-11-02 04:01:54	0|gmaxwell|rebroad: Ignoring getheaders tends to dos attack peers.
  5 2016-11-02 07:48:35	0|midnightmagic|sipa: Tor-only node -- Socks5() connect to seed.bitcoin.sipa.be:8333 failed: host unreachable
  6 2016-11-02 07:58:52	0|jonasschnelli|8333?
  7 2016-11-02 07:59:16	0|jonasschnelli|It's a DNS seeder and not a node IMO
  8 2016-11-02 08:00:06	0|jonasschnelli|But dig A seed.bitcoin.sipa.be returns no IPs...
  9 2016-11-02 08:00:12	0|jonasschnelli|sipa: your seeder down?
 10 2016-11-02 08:00:48	0|jonasschnelli|I recently had downtime as well, but the seeder process was running (and updating the stats). Maybe a bug in the DNS serving code.
 11 2016-11-02 08:03:51	0|sipa|my seeder looks up and running
 12 2016-11-02 08:07:03	0|jonasschnelli|sipa: http://0bin.net/paste/Mi3qS-1E-npb7XZR#XW5vvio2WnVKrQojNA6gwt6qfAYwMYpUoK6NlJ2PLWB
 13 2016-11-02 08:07:29	0|jonasschnelli|same result from a different host
 14 2016-11-02 08:07:39	0|jonasschnelli|I guess your facing the same issue I recently had.
 15 2016-11-02 08:07:39	0|sipa|hmm
 16 2016-11-02 08:07:46	0|sipa|and with x9?
 17 2016-11-02 08:07:58	0|jonasschnelli|empty response
 18 2016-11-02 08:08:06	0|jonasschnelli|I guess it could be a bug in my filter PR
 19 2016-11-02 08:08:14	0|jonasschnelli|something with the cache
 20 2016-11-02 08:08:23	0|sipa|i already fixed a bug in it
 21 2016-11-02 08:08:28	0|sipa|maybe i made it worse :)
 22 2016-11-02 08:08:29	0|jonasschnelli|heh...
 23 2016-11-02 08:08:59	0|jonasschnelli|Do you take a look at it or should I?
 24 2016-11-02 08:12:15	0|sipa|i'm about to fall asleep :)
 25 2016-11-02 08:14:11	0|rabidus_|where are you from? if i may ask
 26 2016-11-02 08:15:55	0|sipa|i'm from belgium originally, but i'm on the us west coast now
 27 2016-11-02 08:16:26	0|jonasschnelli|Yes. Have your rest,.. maybe restart your seeder if you have a chance
 28 2016-11-02 08:16:30	0|jonasschnelli|Will try to track it down
 29 2016-11-02 08:17:27	0|sipa|ok, restarted
 30 2016-11-02 08:40:24	0|jonasschnelli|I have two connected peers, peer A creates a WTX and inv's that to peer B (peer B throws it away [my local change]), I stop both peers [=empty mempools], start again both peers, peer A relays WTX again, but I can't find a inv to peer B (= mempools out of sync, peer A has WTX while peer B don't)
 31 2016-11-02 08:41:30	0|jonasschnelli|I guess the "known inventory" will not be persisted on disk? Why does peer A not inv the WTX again to peer B after restart/sweeping the mempool?
 32 2016-11-02 09:27:56	0|wumpus|transactions are only inved when they get relayed, not at any later time, there is no re-inv for old transactions (except by the wallet)
 33 2016-11-02 09:28:00	0|MarcoFalke|What is the reason for AGPL in #9049
 34 2016-11-02 09:28:01	0|gribble|https://github.com/bitcoin/bitcoin/issues/9049 | Remove duplicatble duplicate-input check from CheckTransaction by TheBlueMatt · Pull Request #9049 · bitcoin/bitcoin · GitHub
 35 2016-11-02 09:28:46	0|MarcoFalke|Has someone accidentally uploaded the MongoDB source code to the blockchain, block 413567?
 36 2016-11-02 09:28:47	0|wumpus|what
 37 2016-11-02 09:29:53	0|wumpus|I think he's trolling, but it can't be accepted in this state
 38 2016-11-02 09:31:01	0|wumpus|let's leave the license drama to other altcoins
 39 2016-11-02 09:33:39	0|jonasschnelli|wumpus: but when I start a node and the wallet re-broadcasts a tx, it should get inved to the connected peers? Or does the connecting happens after the wallet-re-broadcast?
 40 2016-11-02 09:34:21	0|wumpus|jonasschnelli: yes, if the wallet re-broadcasts it should be inved to connected peers
 41 2016-11-02 09:34:44	0|wumpus|(unless it is known that they know of the transaction, but this information is cleared on restart/reconnect)
 42 2016-11-02 09:35:02	0|wumpus|if connecting happens after rebroadcast yea you'd have to wait until the next one
 43 2016-11-02 09:35:15	0|wumpus|(or rebroadcast it manually using sendrawtransaction)
 44 2016-11-02 10:00:50	0|jonasschnelli|wumpus: not sure if i'm deluded, but ReacceptWalletTransactions() does not inv/broadcast it to over the network https://github.com/bitcoin/bitcoin/blob/master/src/wallet/wallet.cpp#L1438
 45 2016-11-02 10:01:23	0|jonasschnelli|the new RelayWalletTransaction seems not to be called in that scenario https://github.com/bitcoin/bitcoin/blob/master/src/wallet/wallet.cpp#L1471
 46 2016-11-02 10:01:37	0|jonasschnelli|Not sure if it's problematic,... just stumbled over this while writing an RPC test
 47 2016-11-02 10:03:27	0|wumpus|jonasschnelli: IIRC that isn't supposed to happen in ReacceptWalletTransactions, that just introduces them into the mempool
 48 2016-11-02 10:04:14	0|wumpus|there's separate logic for the rebroadcast, which doesn't do it immediately at start but periodically, this preserves a little bit of privacy
 49 2016-11-02 10:06:15	0|jonasschnelli|hmm... need to track it down further... just detected that RPC sync_all() does not succeed after re-starting two nodes, the mempool wtx from node A does not get over to node B.
 50 2016-11-02 10:07:14	0|wumpus|it shouldn't: there is no automatic mempool sync on start, the sync is just a wait for current transactions to be relayed, if I recall correctly
 51 2016-11-02 10:08:04	0|wumpus|it indeed doesn't handle the scenario where one of the nodes has shut down, that would need additional support
 52 2016-11-02 10:08:20	0|jonasschnelli|Okay. I see.
 53 2016-11-02 10:09:07	0|wumpus|I don't think there is any logic, either inthe tests or elsewhere, for doing a node-to-node mempool sync
 54 2016-11-02 10:09:40	0|wumpus|although if the mempool is saved to disk now that'd be possible through that route
 55 2016-11-02 10:09:45	0|luke-jr|FYI Knots used to have such logic, but it didn't work well, so I removed it
 56 2016-11-02 10:10:24	0|luke-jr|(I'm pretty sure it delayed the real sync until download of peer mempools completed)
 57 2016-11-02 10:10:53	0|wumpus|yes it at most should be something specifically called in the tests, not used in all circumstances
 58 2016-11-02 10:11:08	0|wumpus|(and certainly not use the P2P mempool command)
 59 2016-11-02 10:11:54	0|wumpus|oh the mempool save to disk isn't merged yet : https://github.com/bitcoin/bitcoin/pull/8448 that'd explain somethime jonasschnelli
 60 2016-11-02 10:12:31	0|wumpus|seems it can be merged
 61 2016-11-02 10:13:30	0|GitHub124|[13bitcoin] 15laanwj pushed 5 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/273bde37d867...101c642bef7f
 62 2016-11-02 10:13:31	0|GitHub124|13bitcoin/06master 14c3efb58 15Pieter Wuille: Add feedelta to TxMempoolInfo
 63 2016-11-02 10:13:31	0|GitHub124|13bitcoin/06master 14ced7c94 15Pieter Wuille: Add AcceptToMemoryPoolWithTime function
 64 2016-11-02 10:13:32	0|GitHub124|13bitcoin/06master 143f78562 15Pieter Wuille: Add DumpMempool and LoadMempool
 65 2016-11-02 10:13:36	0|GitHub32|[13bitcoin] 15laanwj closed pull request #8448: Store mempool and prioritization data to disk (06master...06dumpmempool) 02https://github.com/bitcoin/bitcoin/pull/8448
 66 2016-11-02 10:16:02	0|GitHub161|13bitcoin/06master 146c5cd9d 15Wladimir J. van der Laan: test: Add format-dependent comparison to bctest...
 67 2016-11-02 10:16:02	0|GitHub161|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/101c642bef7f...6a8be7ba999a
 68 2016-11-02 10:16:03	0|GitHub161|13bitcoin/06master 146a8be7b 15Wladimir J. van der Laan: Merge #9032: test: Add format-dependent comparison to bctest...
 69 2016-11-02 10:16:16	0|GitHub160|[13bitcoin] 15laanwj closed pull request #9032: test: Add format-dependent comparison to bctest (06master...062016_10_bctest_smart_compare) 02https://github.com/bitcoin/bitcoin/pull/9032
 70 2016-11-02 10:16:57	0|GitHub108|[13bitcoin] 15laanwj pushed 6 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/6a8be7ba999a...f8723d231812
 71 2016-11-02 10:16:58	0|GitHub108|13bitcoin/06master 14999e4c9 15Wladimir J. van der Laan: wallet: Change CCrypter to use vectors with secure allocator...
 72 2016-11-02 10:16:58	0|GitHub108|13bitcoin/06master 14f4d1fc2 15Wladimir J. van der Laan: wallet: Get rid of LockObject and UnlockObject calls in key.h...
 73 2016-11-02 10:16:59	0|GitHub108|13bitcoin/06master 144536148 15Wladimir J. van der Laan: support: Add LockedPool...
 74 2016-11-02 10:17:05	0|GitHub112|[13bitcoin] 15laanwj closed pull request #8753: Locked memory manager (06master...062016_09_lockedpool) 02https://github.com/bitcoin/bitcoin/pull/8753
 75 2016-11-02 12:56:39	0|GitHub111|[13bitcoin] 15rebroad opened pull request #9062: Add -logtimemillis command line option (06master...06LogTimeMillisOption) 02https://github.com/bitcoin/bitcoin/pull/9062
 76 2016-11-02 13:05:36	0|wumpus|gah, really...
 77 2016-11-02 13:11:26	0|jonasschnelli|A script that truns the milli-timestamps in debug.log to micro-timestamp... meh
 78 2016-11-02 13:11:27	0|jonasschnelli|*turns
 79 2016-11-02 13:12:45	0|wumpus|it's clear that there are not enough time formats for logging, what about number of Planck time units since the big bang
 80 2016-11-02 13:12:55	0|jonasschnelli|heh
 81 2016-11-02 13:15:25	0|wumpus|it'd even fit into an arith_uint256
 82 2016-11-02 13:19:41	0|GitHub123|[13bitcoin] 15paveljanik opened pull request #9063: Do not shadow variable, use deprecated MAP_ANON if MAP_ANONYMOUS is not defined (06master...0620161102_fix_lockedpool) 02https://github.com/bitcoin/bitcoin/pull/9063
 83 2016-11-02 13:41:51	0|BlueMatt|wumpus: sorry, the license there is the FIBRE license, from which i copied that file
 84 2016-11-02 13:41:57	0|BlueMatt|wumpus: just forgot to change it
 85 2016-11-02 13:42:04	0|GitHub68|13bitcoin/06master 144a9f3c5 15Pavel Janík: Do not shadow variable, use deprecated MAP_ANON if MAP_ANONYMOUS is not defined.
 86 2016-11-02 13:42:04	0|GitHub68|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/f8723d231812...f2a6e8243f2a
 87 2016-11-02 13:42:05	0|GitHub68|13bitcoin/06master 14f2a6e82 15Wladimir J. van der Laan: Merge #9063: Do not shadow variable, use deprecated MAP_ANON if MAP_ANONYMOUS is not defined...
 88 2016-11-02 13:42:14	0|GitHub77|[13bitcoin] 15laanwj closed pull request #9063: Do not shadow variable, use deprecated MAP_ANON if MAP_ANONYMOUS is not defined (06master...0620161102_fix_lockedpool) 02https://github.com/bitcoin/bitcoin/pull/9063
 89 2016-11-02 13:42:20	0|wumpus|BlueMatt: it was a good troll :) I'm happy MarcoFalke was awake
 90 2016-11-02 13:46:03	0|BlueMatt|yes, wouldve been hilarious if that ended up in bitcoin
 91 2016-11-02 14:10:09	0|GitHub165|[13bitcoin] 15laanwj closed pull request #9062: (WIP) Add -logtimemillis command line option (06master...06LogTimeMillisOption) 02https://github.com/bitcoin/bitcoin/pull/9062
 92 2016-11-02 14:15:08	0|GitHub70|[13bitcoin] 15laanwj closed pull request #7061: [Wallet] add rescanblockchain <height> RPC command (06master...062015/11/wallet_rescan_rpc) 02https://github.com/bitcoin/bitcoin/pull/7061
 93 2016-11-02 14:16:18	0|GitHub36|[13bitcoin] 15laanwj closed pull request #9011: 0.13.2 backports (060.13...062016_10_backports_conditional_rc3) 02https://github.com/bitcoin/bitcoin/pull/9011
 94 2016-11-02 14:16:19	0|GitHub72|[13bitcoin] 15laanwj pushed 8 new commits to 060.13: 02https://github.com/bitcoin/bitcoin/compare/2e2388a5cbb9...59ce53c13cfc
 95 2016-11-02 14:16:20	0|GitHub72|13bitcoin/060.13 149ef3875 15Matt Corallo: Add missing cs_main lock to ::GETBLOCKTXN processing...
 96 2016-11-02 14:16:20	0|GitHub72|13bitcoin/060.13 14ce0d817 15maiiz: Fix relaypriority calculation error...
 97 2016-11-02 14:16:21	0|GitHub72|13bitcoin/060.13 141d048b9 15jnewbery: Don't return the address of a P2SH of a P2SH....
 98 2016-11-02 14:17:26	0|GitHub101|[13bitcoin] 15laanwj closed pull request #5872: configure: BITCOIN_SUBDIR_TO_INCLUDE: Improve compatibility with paths including space and multiline cpp output (06master...06subdir_incl_compat) 02https://github.com/bitcoin/bitcoin/pull/5872
 99 2016-11-02 14:28:52	0|GitHub158|[13bitcoin] 15laanwj closed pull request #6355: Added test-before-evict discipline in Addrman, feeler connections. (06master...06master) 02https://github.com/bitcoin/bitcoin/pull/6355
100 2016-11-02 14:31:35	0|GitHub64|13bitcoin/06master 14cccf73d 15Robert McLaughlin: trivial: fix bloom filter init to isEmpty = true...
101 2016-11-02 14:31:35	0|GitHub64|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/f2a6e8243f2a...1107653d05a4
102 2016-11-02 14:31:36	0|GitHub64|13bitcoin/06master 141107653 15Wladimir J. van der Laan: Merge #9060: trivial: fix bloom filter init to isEmpty = true...
103 2016-11-02 14:31:45	0|GitHub15|[13bitcoin] 15laanwj closed pull request #9060: trivial: fix bloom filter init to isEmpty = true (06master...06fix-bloom-filter-empty-init) 02https://github.com/bitcoin/bitcoin/pull/9060
104 2016-11-02 14:36:06	0|GitHub86|13bitcoin/06master 14159597a 15isle2983: [devtools] script support for managing source file copyright headers...
105 2016-11-02 14:36:06	0|GitHub86|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/1107653d05a4...bae81b83d63f
106 2016-11-02 14:36:07	0|GitHub86|13bitcoin/06master 14bae81b8 15Wladimir J. van der Laan: Merge #8674: tools for analyzing, updating and adding copyright headers in source files...
107 2016-11-02 14:36:17	0|GitHub54|[13bitcoin] 15laanwj closed pull request #8674: tools for analyzing, updating and adding copyright headers in source files (06master...06copyright-scripts) 02https://github.com/bitcoin/bitcoin/pull/8674
108 2016-11-02 14:38:13	0|GitHub29|13bitcoin/06master 1486029e7 15Patrick Strateman: Move CWalletDB::ReorderTransactions to CWallet
109 2016-11-02 14:38:13	0|GitHub29|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/bae81b83d63f...a4fd8dff6836
110 2016-11-02 14:38:14	0|GitHub29|13bitcoin/06master 14a4fd8df 15Wladimir J. van der Laan: Merge #8828: Move CWalletDB::ReorderTransactions to CWallet...
111 2016-11-02 14:38:23	0|GitHub19|[13bitcoin] 15laanwj closed pull request #8828: Move CWalletDB::ReorderTransactions to CWallet (06master...062016-09-28-cwallet-reordertransactions) 02https://github.com/bitcoin/bitcoin/pull/8828
112 2016-11-02 14:58:11	0|BlueMatt|heh, I hadnt looked at how much better fibre is than the old relay network.... https://imgur.com/a/CpRk8 top one is fibre, note that the top line (all nodes) is equivalent to the graph for rn (bottom), but it never reaches 200ms, whereas the dot on the rn graph is about 200ms
113 2016-11-02 14:58:27	0|BlueMatt|graph is percentile -> time-to-reach-global-coverage
114 2016-11-02 14:58:35	0|BlueMatt|log scale
115 2016-11-02 15:03:45	0|achow101|gmaxwell: I just fired up a 0.12.0 node and I don't see any warning about it being obsolete
116 2016-11-02 15:09:44	0|instagibbs|BlueMatt, impressive
117 2016-11-02 15:16:35	0|GitHub126|[13bitcoin] 15s-matthew-english opened pull request #9064: unify capitalization of "bitcoin address" (06master...06changeCaps) 02https://github.com/bitcoin/bitcoin/pull/9064
118 2016-11-02 15:50:29	0|achow101|gmaxwell: alert time?
119 2016-11-02 16:29:57	0|gmaxwell|achow101: about to send.
120 2016-11-02 16:31:47	0|gmaxwell|achow101: it's sent.
121 2016-11-02 16:47:01	0|jtimon|can I run unittests individually ?
122 2016-11-02 17:01:42	0|BlueMatt|i think so
123 2016-11-02 17:02:27	0|BlueMatt|yes, you want test_bitcoin --run_test=
124 2016-11-02 17:02:37	0|BlueMatt|see-also test_bitcoin --help
125 2016-11-02 17:12:19	0|wumpus|yes, this is documented in src/test/README.md
126 2016-11-02 17:19:15	0|GitHub191|[13bitcoin] 15laanwj opened pull request #9065: Merge `doc/unit-tests.md` into `src/test/README.md` (06master...062016_11_unit_tests_doc) 02https://github.com/bitcoin/bitcoin/pull/9065
127 2016-11-02 18:35:42	0|michagogo|The plan is to send a final-1 alert, wait a while, send a final alert, then post the key, right?
128 2016-11-02 18:35:55	0|achow101|michagogo: yes
129 2016-11-02 18:36:07	0|michagogo|Why not just send the pre-final one, and let the rest sort itself out? :-P
130 2016-11-02 18:36:15	0|achow101|the timeframe is something like over the course of 6 months
131 2016-11-02 18:36:31	0|achow101|the final alert is the max sequence alert which locks out any possible other alert
132 2016-11-02 18:36:38	0|michagogo|achow101: right
133 2016-11-02 18:37:32	0|michagogo|i.e. once the final-1 alert is published, there can't be any other alert but the final one
134 2016-11-02 18:37:39	0|michagogo|Which is hard-coded, right?
135 2016-11-02 18:37:43	0|achow101|right
136 2016-11-02 18:37:54	0|achow101|the final is just to thoroughly kill it off
137 2016-11-02 18:39:03	0|michagogo|Well, it's only *really* necessary to send the pre-final, then publish the key a while later
138 2016-11-02 18:39:50	0|achow101|right
139 2016-11-02 18:40:22	0|michagogo|(And the final one will surely sort itself out :-P )
140 2016-11-02 19:00:02	0|GitHub166|[13bitcoin] 15domob1812 opened pull request #9066: trivial: Remove variable unused after refactoring (06master...06unused-variable) 02https://github.com/bitcoin/bitcoin/pull/9066
141 2016-11-02 19:20:58	0|GitHub152|[13bitcoin] 15UdjinM6 opened pull request #9067: Fix exit codes (06master...06fixExitCodesBitcoin) 02https://github.com/bitcoin/bitcoin/pull/9067
142 2016-11-02 19:53:24	0|GitHub60|13bitcoin/06master 1432c0d6e 15jnewbery: Add logging to bitcoin-util-test.py...
143 2016-11-02 19:53:24	0|GitHub60|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/a4fd8dff6836...774db92d3936
144 2016-11-02 19:53:25	0|GitHub60|13bitcoin/06master 14774db92 15Wladimir J. van der Laan: Merge #9023: Add logging to bitcoin-util-test.py...
145 2016-11-02 19:53:32	0|GitHub131|[13bitcoin] 15laanwj closed pull request #9023: Add logging to bitcoin-util-test.py (06master...06btutiltestlogging) 02https://github.com/bitcoin/bitcoin/pull/9023
146 2016-11-02 19:54:44	0|GitHub4|13bitcoin/06master 14f91afe9 15Daniel Kraft: trivial: Remove variable unused after refactoring...
147 2016-11-02 19:54:44	0|GitHub4|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/774db92d3936...d316cfeb6e29
148 2016-11-02 19:54:45	0|GitHub4|13bitcoin/06master 14d316cfe 15Wladimir J. van der Laan: Merge #9066: tests: Remove variable unused after refactoring...
149 2016-11-02 19:54:56	0|GitHub164|[13bitcoin] 15laanwj closed pull request #9066: tests: Remove variable unused after refactoring (06master...06unused-variable) 02https://github.com/bitcoin/bitcoin/pull/9066
150 2016-11-02 20:04:48	0|GitHub141|13bitcoin/06master 14fa32619 15MarcoFalke: [rpc] ParseHash: Fail when length is not 64
151 2016-11-02 20:04:48	0|GitHub141|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/d316cfeb6e29...bc785d71855f
152 2016-11-02 20:04:49	0|GitHub141|13bitcoin/06master 14bc785d7 15Wladimir J. van der Laan: Merge #9042: [rpc] ParseHash: Fail when length is not 64...
153 2016-11-02 20:05:02	0|GitHub119|[13bitcoin] 15laanwj closed pull request #9042: [rpc] ParseHash: Fail when length is not 64 (06master...06Mf1611-rpcParseHash64) 02https://github.com/bitcoin/bitcoin/pull/9042
154 2016-11-02 20:09:53	0|GitHub97|13bitcoin/06master 14d0b01f3 15Geoffrey Tsui: Explicitly pass const CChainParams& to LoadBlockIndexDB()
155 2016-11-02 20:09:53	0|GitHub97|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/bc785d71855f...c05db8348838
156 2016-11-02 20:09:54	0|GitHub97|13bitcoin/06master 14c05db83 15Wladimir J. van der Laan: Merge #9013: Trivial: Explicitly pass const CChainParams& to LoadBlockIndexDB()...
157 2016-11-02 20:10:04	0|GitHub120|[13bitcoin] 15laanwj closed pull request #9013: Trivial: Explicitly pass const CChainParams& to LoadBlockIndexDB() (06master...06global-params-cleanup) 02https://github.com/bitcoin/bitcoin/pull/9013
158 2016-11-02 20:38:13	0|GitHub123|13bitcoin/06master 14cab1da7 15Jonas Schnelli: [Wallet] Refactor wallet/init interaction (Reaccept wtx, flush thread)
159 2016-11-02 20:38:13	0|GitHub123|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/c05db8348838...6a1343f73bd0
160 2016-11-02 20:38:14	0|GitHub123|13bitcoin/06master 146a1343f 15Wladimir J. van der Laan: Merge #8977: [Wallet] Refactor wallet/init interaction (Reaccept wtx, flush thread)...
161 2016-11-02 20:38:24	0|GitHub18|[13bitcoin] 15laanwj closed pull request #8977: [Wallet] Refactor wallet/init interaction (Reaccept wtx, flush thread) (06master...062016/10/fix_wallet_init) 02https://github.com/bitcoin/bitcoin/pull/8977
162 2016-11-02 22:14:21	0|gmaxwell|BlueMatt: so with no longer disconnecting on invalid compact blocks, we need to reintroduce a mechenism so that we kick peers that are on a invalid-to-us forked chain.
163 2016-11-02 22:14:52	0|BlueMatt|gmaxwell: thats still there - we still dos on AcceptBlockHeader results
164 2016-11-02 22:14:52	0|gmaxwell|BlueMatt: e.g. say we have 8 peers, and all of them are feeding us invalid blocks because they're all accepting a chain which is invalid to us. We need to kick some of them so we find peers that are on a chain we accept.
165 2016-11-02 22:37:04	0|GitHub101|13bitcoin/06master 14eedc461 15Wladimir J. van der Laan: Merge `doc/unit-tests.md` into `src/test/README.md`...
166 2016-11-02 22:37:04	0|GitHub101|[13bitcoin] 15MarcoFalke pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/6a1343f73bd0...c9bdf9a75f9f
167 2016-11-02 22:37:05	0|GitHub101|13bitcoin/06master 14c9bdf9a 15MarcoFalke: Merge #9065: Merge `doc/unit-tests.md` into `src/test/README.md`...
168 2016-11-02 22:37:17	0|GitHub106|[13bitcoin] 15MarcoFalke closed pull request #9065: Merge `doc/unit-tests.md` into `src/test/README.md` (06master...062016_11_unit_tests_doc) 02https://github.com/bitcoin/bitcoin/pull/9065
169 2016-11-02 22:58:54	0|GitHub151|[13bitcoin] 15jnewbery opened pull request #9069: Clean up bctest.py and bitcoin-util-test.py (06master...06btutiltestcleanup) 02https://github.com/bitcoin/bitcoin/pull/9069
170 2016-11-02 23:20:51	0|GitHub10|[13bitcoin] 15kazcw opened pull request #9070: Lockedpool fixes (06master...06lockedpool) 02https://github.com/bitcoin/bitcoin/pull/9070