12015-10-31T00:00:34  <dcousens> explains the locking too
  22015-10-31T00:07:55  *** sipa has quit IRC
  32015-10-31T01:29:02  *** diegoviola has joined #bitcoin-core-dev
  42015-10-31T01:29:07  <diegoviola> heya
  52015-10-31T01:29:20  <diegoviola> will bitcoin core implement SPV like electrum and seeds?
  62015-10-31T01:29:34  <diegoviola> I'd like to use core but I can't afford to download the whole blockchain
  72015-10-31T01:29:36  <diegoviola> my connection sucks
  82015-10-31T01:29:47  <diegoviola> my internet is only 1mb
  92015-10-31T01:29:53  <diegoviola> :-(
 102015-10-31T01:30:26  <belcher> once you have it all downloaded and verified you wont use much bandwidth at all
 112015-10-31T01:30:47  <diegoviola> sure but will take days to download it
 122015-10-31T01:31:01  <belcher> oh damn this channel, didnt realise, ask in #bitcoin
 132015-10-31T01:31:05  <diegoviola> k
 142015-10-31T01:33:03  *** dcousens has quit IRC
 152015-10-31T01:40:42  *** ghtdak has quit IRC
 162015-10-31T01:45:01  *** ghtdak has joined #bitcoin-core-dev
 172015-10-31T02:08:05  *** Arnavion has quit IRC
 182015-10-31T02:09:32  *** Arnavion has joined #bitcoin-core-dev
 192015-10-31T02:43:01  *** diego2 has joined #bitcoin-core-dev
 202015-10-31T02:43:19  *** diego2 has joined #bitcoin-core-dev
 212015-10-31T02:43:21  *** diegoviola is now known as Guest20844
 222015-10-31T02:43:25  *** diego2 is now known as diegoviola
 232015-10-31T02:45:02  *** Guest20844 has quit IRC
 242015-10-31T03:20:09  *** diego2 has joined #bitcoin-core-dev
 252015-10-31T03:20:11  *** diego2 has joined #bitcoin-core-dev
 262015-10-31T03:20:13  *** diegoviola is now known as Guest32811
 272015-10-31T03:20:19  *** diego2 is now known as diegoviola
 282015-10-31T03:21:47  *** Guest32811 has quit IRC
 292015-10-31T03:27:23  *** evoskuil has quit IRC
 302015-10-31T03:28:13  *** diego2 has joined #bitcoin-core-dev
 312015-10-31T03:28:22  *** diegoviola has quit IRC
 322015-10-31T03:28:34  *** diego2 has quit IRC
 332015-10-31T03:28:34  *** diego2 has joined #bitcoin-core-dev
 342015-10-31T03:28:41  *** diego2 is now known as diegoviola
 352015-10-31T03:44:22  *** Ylbam has quit IRC
 362015-10-31T03:45:26  *** diegoviola has quit IRC
 372015-10-31T04:12:58  *** belcher has quit IRC
 382015-10-31T04:19:16  <phantomcircuit> gmaxwell, that's interesting, it looks like if we fail to load a key from the wallet we exit without writing anything to the log
 392015-10-31T04:23:23  <phantomcircuit> oh nvm...
 402015-10-31T05:13:26  *** dcousens has joined #bitcoin-core-dev
 412015-10-31T06:16:23  <dcousens> morcos: still intending to help with those stats, just waiting for a re-index to finish
 422015-10-31T06:52:52  *** evoskuil has joined #bitcoin-core-dev
 432015-10-31T06:56:25  *** ParadoxSpiral has joined #bitcoin-core-dev
 442015-10-31T08:08:11  <GitHub195> [bitcoin] laanwj opened pull request #6919: Backport chainstate obfuscation to 0.11 (0.11...2015_10_backport_chainstate_obfuscation) https://github.com/bitcoin/bitcoin/pull/6919
 452015-10-31T08:09:27  <gmaxwell> wumpus: sorry if I came across as suggesting we should wait on #6917 for any reason; that wasn't my goal. Rather, earlier you mentioned some doubt on which sync operation needed to do what, and maybe the new behavior is too strong, and my thought was if there isn't a performance regression "who cares, don't bother thinking about it."
 462015-10-31T08:15:25  *** dixson3 has quit IRC
 472015-10-31T08:15:33  <wumpus> I think that optimization on windows should be a different issue. It's not like we ever paid attention to that before :-) I agree with sipa that benchmarking before and after would be nice - though I'm not sure exactly how - I have a slow windows laptop, probably bogged down by lots of crap, so I doubt it will yield any resuls within the noise margin :-)
 482015-10-31T08:17:34  <wumpus> (that said, having looked at various syncs of block 0 to block 200000, I didn't notice any noticable difference)
 492015-10-31T08:18:17  *** Arnavion has quit IRC
 502015-10-31T08:18:42  *** Arnavion has joined #bitcoin-core-dev
 512015-10-31T08:20:25  <wumpus> (and benchmarking in wine wouldn't be interesting, as these are exactly the OS specific things...)
 522015-10-31T08:24:29  <wumpus> goal of Flush() seems to be 'flush application and OS buffers to file' and Sync() 'flush buffers to file, then wait for sync to disk to complete'. As far as I see windows' FlushFileBuffers has no way to distinguish between them
 532015-10-31T08:25:10  <wumpus> what the previous implementation did was to leave Flush() empty. But that doesn't feel right at least...
 542015-10-31T08:26:45  *** Arnavion has quit IRC
 552015-10-31T08:27:10  *** Arnavion has joined #bitcoin-core-dev
 562015-10-31T08:36:32  <wumpus> ... it's something that could be done again later if it turns out to be safe
 572015-10-31T08:39:16  <wumpus> (e.g. I think the rationale for that is "by using the OS API directly, anything written is by definition flushed to the OS". The POSIX implementation uses FILE* which has its own bufers)
 582015-10-31T08:40:21  *** Ylbam has joined #bitcoin-core-dev
 592015-10-31T08:42:06  <wumpus> (then uses fflush in Flush(), "forces a write of all user-space buffered data for the given output or update stream via the stream's underlying write function". Yeah we don't need that...)
 602015-10-31T08:50:06  <GitHub48> [bitcoin] Diapolo opened pull request #6920: remove unneded include from rpcserver.cpp and rpcclient.cpp (master...univalue) https://github.com/bitcoin/bitcoin/pull/6920
 612015-10-31T08:51:43  <gmaxwell> Can we ask diapolo to test this leveldb fix?
 622015-10-31T08:58:06  <GitHub69> [bitcoin] Diapolo opened pull request #6921: [Trivial] remove unneeded spaces from init.cpp (master...trivial_typo_space) https://github.com/bitcoin/bitcoin/pull/6921
 632015-10-31T08:59:09  <wumpus> I think so!
 642015-10-31T08:59:56  <gmaxwell> Does github have messaging?
 652015-10-31T09:00:16  <wumpus> nope, all you can do si @ someone
 662015-10-31T09:00:35  *** deepcore has joined #bitcoin-core-dev
 672015-10-31T09:02:24  <wumpus> for those that like living on the edge: https://github.com/laanwj/bitcoin/commit/2fc32341cc6cbede2238151888ddc91ca93c7740
 682015-10-31T09:02:52  <gmaxwell> "The edge of what?" "No one is sure..."
 692015-10-31T09:03:04  <wumpus> yes, that edge ;-)
 702015-10-31T09:03:56  <gmaxwell> Writefile and such isn't buffered like (some) libc functions?
 712015-10-31T09:05:59  <wumpus> it's more like write() - a sytem call
 722015-10-31T09:07:06  <wumpus> using libc and FILE* would be possible on windows too, but I'm not convinced of those in mingw
 732015-10-31T09:08:15  <wumpus> (and the Sync requires an ugly construct to unwrap the file handle then, as we do here https://github.com/bitcoin/bitcoin/blob/master/src/util.cpp#L608 )
 742015-10-31T09:14:48  <GitHub10> [bitcoin] Diapolo opened pull request #6922: minor updates/changes in txmempool.h/.cpp (master...txmempool) https://github.com/bitcoin/bitcoin/pull/6922
 752015-10-31T09:15:19  <wumpus> sigh....
 762015-10-31T09:15:23  * wumpus kicks diapolo
 772015-10-31T09:21:43  <wumpus> way to drown out the super cool work have been doing lately in 'let's fudge two lines areound' kind of pulls...
 782015-10-31T09:21:51  <wumpus> +people
 792015-10-31T09:25:41  <wumpus> "strip: unable to rename 'bitcoin-qt.exe'; reason: File exists"
 802015-10-31T09:32:51  <CodeShark> do node count statistics going back more than two years exist? or at least reasonable estimates?
 812015-10-31T09:33:33  <CodeShark> or if not continuous data at least a few discrete samples
 822015-10-31T09:36:44  <wumpus> I don't think so (you may be better off asking in #bitcoin though, apart from the counting methodology this is not essentially dev related)
 832015-10-31T10:07:48  <GitHub88> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/48b5b84ee511...a6e80e401716
 842015-10-31T10:07:48  <GitHub88> bitcoin/master c939792 Peter Todd: Add BIP65 CHECKLOCKTIMEVERIFY to release notes
 852015-10-31T10:07:49  <GitHub88> bitcoin/master a6e80e4 Wladimir J. van der Laan: Merge pull request #6883...
 862015-10-31T10:07:55  <GitHub104> [bitcoin] laanwj closed pull request #6883: Add BIP65 CHECKLOCKTIMEVERIFY to release notes (master...cltv-release-notes-v0.12.0) https://github.com/bitcoin/bitcoin/pull/6883
 872015-10-31T10:08:16  <gmaxwell> FWIW, I think testnet has activated BIP65.
 882015-10-31T10:08:48  <phantomcircuit> gmaxwell, not clear to me which chain is longer though...
 892015-10-31T10:24:37  <tulip> phantomcircuit: on 0.11.0 I'm seeing the expected "This version is obsolete; upgrade required!".
 902015-10-31T10:27:01  <phantomcircuit> the chains are equal length now...
 912015-10-31T10:31:16  *** paveljanik has joined #bitcoin-core-dev
 922015-10-31T10:35:19  <GitHub125> [bitcoin] laanwj closed pull request #6921: [Trivial] remove unneeded spaces from init.cpp (master...trivial_typo_space) https://github.com/bitcoin/bitcoin/pull/6921
 932015-10-31T10:38:50  <tulip> phantomcircuit: yeah, bouncing between tips.
 942015-10-31T10:39:13  *** jgarzik has joined #bitcoin-core-dev
 952015-10-31T10:45:11  *** jtimon has joined #bitcoin-core-dev
 962015-10-31T11:05:27  <GitHub197> [bitcoin] laanwj closed pull request #6920: remove unneded include from rpcserver.cpp and rpcclient.cpp (master...univalue) https://github.com/bitcoin/bitcoin/pull/6920
 972015-10-31T11:17:00  *** randy-waterhouse has joined #bitcoin-core-dev
 982015-10-31T11:27:39  <GitHub161> [bitcoin] Diapolo closed pull request #6922: minor updates/changes in txmempool.h/.cpp (master...txmempool) https://github.com/bitcoin/bitcoin/pull/6922
 992015-10-31T11:27:54  <GitHub49> [bitcoin] Diapolo closed pull request #6710: [Qt] polish new ban ui from #6315 (master...polish_ban_ui) https://github.com/bitcoin/bitcoin/pull/6710
1002015-10-31T11:27:56  <GitHub100> [bitcoin] Diapolo closed pull request #6371: banlist updates (master...banlist) https://github.com/bitcoin/bitcoin/pull/6371
1012015-10-31T11:28:04  <GitHub180> [bitcoin] Diapolo closed pull request #6309: [Qt] simplify code for third party TX urls handling (master...txurls) https://github.com/bitcoin/bitcoin/pull/6309
1022015-10-31T11:28:16  <GitHub0> [bitcoin] Diapolo closed pull request #5466: [Qt] log cert errors for payment requests and harden test-cases (master...pr_harden_certchecks) https://github.com/bitcoin/bitcoin/pull/5466
1032015-10-31T11:48:49  *** CodeShark has quit IRC
1042015-10-31T11:49:12  *** CodeShark has joined #bitcoin-core-dev
1052015-10-31T11:49:31  *** davec has quit IRC
1062015-10-31T11:50:04  *** davec has joined #bitcoin-core-dev
1072015-10-31T12:00:48  <jonasschnelli> ^^ Diaplolo is closing..
1082015-10-31T12:05:23  *** CodeShark has quit IRC
1092015-10-31T12:05:45  *** CodeShark has joined #bitcoin-core-dev
1102015-10-31T12:23:55  *** tulip has quit IRC
1112015-10-31T12:27:00  *** tulip has joined #bitcoin-core-dev
1122015-10-31T12:34:11  <dcousens> and deleting
1132015-10-31T12:38:00  <dcousens> shouldn't BIP65 be Accepted now?
1142015-10-31T13:06:41  *** moli has joined #bitcoin-core-dev
1152015-10-31T13:09:39  *** molly has quit IRC
1162015-10-31T13:19:40  *** dcousens has quit IRC
1172015-10-31T13:24:16  *** deepcore has quit IRC
1182015-10-31T13:33:43  *** jtimon has quit IRC
1192015-10-31T13:58:01  *** Thireus has quit IRC
1202015-10-31T13:59:56  *** dcousens has joined #bitcoin-core-dev
1212015-10-31T14:01:31  *** dcousens has quit IRC
1222015-10-31T14:28:31  *** Guyver2 has joined #bitcoin-core-dev
1232015-10-31T15:26:25  *** molly has joined #bitcoin-core-dev
1242015-10-31T15:28:19  *** moli has quit IRC
1252015-10-31T15:42:28  *** tulip has quit IRC
1262015-10-31T15:44:37  *** Thireus has joined #bitcoin-core-dev
1272015-10-31T16:33:14  *** deepcore has joined #bitcoin-core-dev
1282015-10-31T16:40:46  *** michagogo has quit IRC
1292015-10-31T16:41:06  *** btcdrak has quit IRC
1302015-10-31T16:44:00  *** btcdrak has joined #bitcoin-core-dev
1312015-10-31T16:47:02  *** michagogo has joined #bitcoin-core-dev
1322015-10-31T16:54:30  *** jtimon has joined #bitcoin-core-dev
1332015-10-31T17:22:12  *** zooko has joined #bitcoin-core-dev
1342015-10-31T17:37:43  *** zooko` has joined #bitcoin-core-dev
1352015-10-31T17:39:16  *** zooko has quit IRC
1362015-10-31T18:44:41  *** zooko` has quit IRC
1372015-10-31T18:45:21  *** zooko has joined #bitcoin-core-dev
1382015-10-31T19:00:05  <gmaxwell> dcousens: no, accepted status changes based on adoption in the network.
1392015-10-31T19:00:16  <gmaxwell> who gives a crap what some random software repository does?
1402015-10-31T19:22:49  *** zooko has quit IRC
1412015-10-31T20:42:32  *** CodeShark_ has joined #bitcoin-core-dev
1422015-10-31T20:58:12  *** randy-waterhouse has quit IRC
1432015-10-31T21:35:13  *** dcousens has joined #bitcoin-core-dev
1442015-10-31T21:40:43  <phantomcircuit> gmaxwell, the chainwork value in getblockchaininfo
1452015-10-31T21:40:49  <phantomcircuit> lower values means more total work right?
1462015-10-31T21:43:40  <phantomcircuit> heh well this certainly shows that a 75% threshold for switch over is a bad idea
1472015-10-31T21:43:52  <phantomcircuit> testnet is now 50/50 split between bip65 and !bip65
1482015-10-31T21:45:18  <CodeShark_> still? lol
1492015-10-31T21:50:41  <phantomcircuit> there's even someone mining version=2 blocks still
1502015-10-31T21:51:27  <phantomcircuit> also no bigger numbers == more work
1512015-10-31T21:56:46  *** ParadoxSpiral_ has joined #bitcoin-core-dev
1522015-10-31T22:00:11  *** ParadoxSpiral has quit IRC
1532015-10-31T22:01:03  *** dcousens has joined #bitcoin-core-dev
1542015-10-31T22:04:02  *** dcousens has quit IRC
1552015-10-31T22:04:17  *** dcousens has joined #bitcoin-core-dev
1562015-10-31T22:04:46  *** dcousens has joined #bitcoin-core-dev
1572015-10-31T22:15:28  <GitHub162> [bitcoin] BTCDDev opened pull request #6925: Added zmq flag for owned transactions (master...master) https://github.com/bitcoin/bitcoin/pull/6925
1582015-10-31T22:21:02  *** Guyver2 has quit IRC
1592015-10-31T22:46:41  *** ParadoxSpiral_ has quit IRC
1602015-10-31T23:02:20  *** zooko has joined #bitcoin-core-dev