12018-11-12T00:11:20  *** Victorsueca has quit IRC
  22018-11-12T00:12:59  *** Victorsueca has joined #bitcoin-core-dev
  32018-11-12T00:17:04  *** deaunapaul has quit IRC
  42018-11-12T00:19:29  *** deaunapaul has joined #bitcoin-core-dev
  52018-11-12T00:25:03  *** deaunapaul has quit IRC
  62018-11-12T00:27:59  <gmaxwell> https://bitcoin.stackexchange.com/questions/80926/update-to-0-17-0-broke-several-rpc-api-calls-that-worked-under-0-16-3-how-to-mi
  72018-11-12T00:31:30  <sipa> i think one of those is a known issue
  82018-11-12T00:31:37  <sipa> for which a PR exists to fix it
  92018-11-12T00:31:39  *** deaunapaul has joined #bitcoin-core-dev
 102018-11-12T00:31:50  <meshcollider> this one #14602 ?
 112018-11-12T00:31:52  <gribble> https://github.com/bitcoin/bitcoin/issues/14602 | Bugfix: Correctly calculate balances when min_conf is used, and for getbalance("*") by luke-jr · Pull Request #14602 · bitcoin/bitcoin · GitHub
 122018-11-12T00:34:49  <meshcollider> it should probably be backported then right
 132018-11-12T00:36:10  *** Krellan has joined #bitcoin-core-dev
 142018-11-12T00:36:19  <sipa> meshcollider: yes
 152018-11-12T00:37:26  <gmaxwell> yep, I thought I saw that one.  The other one is less clear to me... "invalid amount"  makes me wonder what php is doing with 0.00005.
 162018-11-12T00:37:50  <gmaxwell> meshcollider: yes, that a pretty serious behavior change.
 172018-11-12T00:39:52  *** tryphe has quit IRC
 182018-11-12T00:46:40  *** tryphe has joined #bitcoin-core-dev
 192018-11-12T00:49:01  *** Toby has joined #bitcoin-core-dev
 202018-11-12T00:49:21  <Toby> Hello there.
 212018-11-12T00:49:24  *** Toby is now known as Guest9346
 222018-11-12T00:49:48  <Guest9346> Is anybody there?
 232018-11-12T00:50:13  <Guest9346> How can I contribute to bitcoin development
 242018-11-12T00:54:39  *** Guest9346 has quit IRC
 252018-11-12T00:55:32  *** Krellan has quit IRC
 262018-11-12T00:59:55  *** Krellan has joined #bitcoin-core-dev
 272018-11-12T01:14:12  <meshcollider> Yeah the listunspent one is weird, I don't think theres been any changes to how it works in 0.17? And I can't replicate the issue using the command line, I suspect you're right about it being a weird PHP thing
 282018-11-12T01:44:02  <gmaxwell> meshcollider: a while back (not in 0.17.0) we changes from accepting .00005 to only accepting 0.00005 who knows how it stringifies that value...
 292018-11-12T02:02:45  *** shesek has joined #bitcoin-core-dev
 302018-11-12T02:13:02  *** grafcaps has joined #bitcoin-core-dev
 312018-11-12T02:17:19  *** grafcaps has quit IRC
 322018-11-12T02:17:42  *** luke-jr has joined #bitcoin-core-dev
 332018-11-12T02:20:49  *** bitcoin-git has joined #bitcoin-core-dev
 342018-11-12T02:20:49  <bitcoin-git> [bitcoin] andrewtoth opened pull request #14707: [RPC] Add include_coinbase option to receiveby RPCs (master...receivedby-coinbase) https://github.com/bitcoin/bitcoin/pull/14707
 352018-11-12T02:20:49  *** bitcoin-git has left #bitcoin-core-dev
 362018-11-12T02:23:09  *** ken2812221 has quit IRC
 372018-11-12T03:13:49  *** bitconner has quit IRC
 382018-11-12T03:14:55  *** Aaronvan_ has joined #bitcoin-core-dev
 392018-11-12T03:16:19  <phantomcircuit> gmaxwell, almost certainly bad things
 402018-11-12T03:17:58  *** AaronvanW has quit IRC
 412018-11-12T03:18:20  *** CubicEarth has quit IRC
 422018-11-12T03:20:15  *** CubicEarth has joined #bitcoin-core-dev
 432018-11-12T03:24:25  *** Aaronvan_ has quit IRC
 442018-11-12T03:29:49  *** _cryptosignal_me has joined #bitcoin-core-dev
 452018-11-12T03:35:46  *** leishman has quit IRC
 462018-11-12T03:36:23  *** leishman has joined #bitcoin-core-dev
 472018-11-12T03:40:55  *** leishman has quit IRC
 482018-11-12T03:53:52  *** instagibbs has quit IRC
 492018-11-12T03:59:41  *** sanket1729 has joined #bitcoin-core-dev
 502018-11-12T04:03:45  *** _cryptosignal_me has quit IRC
 512018-11-12T04:04:06  <sanket1729> What do you think about the following? Prior to RBF, nodes discarded all the transactions after the first transaction thereby guarding CPU validation resources by not validating other transactions. After RBF, nodes need to validate all subsequent transactions with higher sequence number if they pay higher fee.
 522018-11-12T04:04:10  <sanket1729> In peak fees times, fees have been around 1000sat/byte(Jan 2018) whereas rbf only requires fees be more than minTxRelay fees(currently 1say/byte in bitcoin core) than the previous transaction. An attacker could start with 1 sat/byte fees and send 1000 RBF transactions with increasing fees 1sat/byte, 2 .... and so on. Thereby wasting node CPU validation resources 1000 times. This is not a big problem since fees are around
 532018-11-12T04:04:57  <sanket1729> Or maybe this is the expected behavior?
 542018-11-12T04:06:42  <gmaxwell> sanket1729: they could do the same thing without replacement at all, simply by chaining low fee transactions.
 552018-11-12T04:07:16  <gmaxwell> the whole design of the RBF rules was to limit resource expendature to be approximately equal to the worst case you could achieve without using replacement.
 562018-11-12T04:08:16  <sanket1729> Yes, but I read somewhere that mempool increases the minimum fees to tx to enter into mempool incase there is spam. But this is not spam since we are replacing things from mempool. So, it is kindof different
 572018-11-12T04:10:27  <sanket1729> From pwuille from bitcoin stackexchange: Nodes on the network maintain unconfirmed transactions in their mempool, and when the mempool grows too big, they will raise the minimum fee necessary to enter the mempool
 582018-11-12T04:10:55  <gmaxwell> sanket1729: the minimum relay fee goes up when your nodes local mempool is full (e.g. 300MB of txdata), that value has never gone much over 10s/b IIRC FWIW.
 592018-11-12T04:12:50  <phantomcircuit> gmaxwell, isn't the replacement increase also based on the mempool inclusion?
 602018-11-12T04:15:04  <gmaxwell> phantomcircuit: yes well kinda. The replcement must meet the new minimum and must be greater than the replaced by the incremental feerate. They used to be one in the same, but I believe they were split because it made predicting the incremental minimum too hard.
 612018-11-12T04:15:47  <esotericnonsense> gmaxwell: isn't it the case that without replacement there's a limit to chaining
 622018-11-12T04:15:55  <esotericnonsense> (it could well be the case that the limit is newer than RBF)
 632018-11-12T04:16:38  <gmaxwell> esotericnonsense: kinda. but if you fan out pessimally (to hit the worst case) it's enormous, so not a praticial limit on your ability to make many transactions.
 642018-11-12T04:17:04  <gmaxwell> that limit is just there to avoid computational blow up in things like CPFP.
 652018-11-12T04:17:08  <sipa> the incremental feerate for replacement doesn't go up when the mempool gets full
 662018-11-12T04:17:16  <sipa> only the minimum relay feerate
 672018-11-12T04:17:29  <sipa> sanket1729: hi, pieter here
 682018-11-12T04:18:51  <esotericnonsense> ah yes i suppose that's right.
 692018-11-12T04:18:55  <esotericnonsense> hadn't thought about fanning. lol.
 702018-11-12T04:18:58  <gmaxwell> sipa: which is technically a violation of BIP125.
 712018-11-12T04:19:11  <esotericnonsense> anyway I pasted this just now in -forks but thought someone here might care as it's core dev.
 722018-11-12T04:19:24  <esotericnonsense> https://bitcoin.electronrelocation.com/ force refresh if you've seen it before cos I have some issues with caching.
 732018-11-12T04:19:49  <esotericnonsense> prettified. i have receiving working but not sending cause I sit and think properly about authentication.
 742018-11-12T04:19:54  <esotericnonsense> I need to*
 752018-11-12T04:20:47  <esotericnonsense> (i have no bloody idea why my port forwarding has stopped working and need to investigate).
 762018-11-12T04:21:10  <gmaxwell> (that was changed in PR#9615 FWIW, though it doesn't really make much difference in any case)
 772018-11-12T04:21:12  <gribble> https://github.com/bitcoin/bitcoin/issues/9615 | Wallet incremental fee by morcos · Pull Request #9615 · bitcoin/bitcoin · GitHub
 782018-11-12T04:23:14  <gmaxwell> esotericnonsense: nice! (your link)
 792018-11-12T04:23:53  <esotericnonsense> gmaxwell: thank you :)
 802018-11-12T04:24:08  <gmaxwell> esotericnonsense: block template view could show some stats like total weight, and total fees + subsidy.
 812018-11-12T04:24:37  <esotericnonsense> yeah. i think it can actually be the same as the mempool table or roughly the same anyway
 822018-11-12T04:26:19  <gmaxwell> esotericnonsense: on the peers table, take care to avoid displaying the random port number on one side of the connection (looks like you don't right now), it's basically of zero use but knowing it makes TCP RST attacks much easier.
 832018-11-12T04:27:30  <gmaxwell> esotericnonsense: chaintips might be an interesting thing to show. and maybe some limited 'block explorer' like stuff.
 842018-11-12T04:27:54  <esotericnonsense> i think everything that's in bitcoind-ncurses can go in there
 852018-11-12T04:29:15  <esotericnonsense> it's not that simple to reason about not DoSing my own node though on the public version, if it were auth gated it would be a lot easier :p
 862018-11-12T04:29:30  *** instagibbs has joined #bitcoin-core-dev
 872018-11-12T04:29:41  <esotericnonsense> e.g. caching responses works if you have a limited subset of responses, if someone can arbitrarily query a txid I need to actually think about things :P
 882018-11-12T04:31:10  <gmaxwell> well you could just apply some rate limiter, perhaps with some per-IP bucketing so a DOSer doesn't block all webaccess.
 892018-11-12T04:31:44  <esotericnonsense> yeah, it just has to be thought about per query I think because it simplifies the design to not care about rate limiting in the general case (e.g. only certain paths are vulnerable)
 902018-11-12T04:32:17  <esotericnonsense> (I mean, _really_ rate limiting like 1-5/s as opposed to 'no-one needs to hit me at 100/s go away'
 912018-11-12T04:33:08  <esotericnonsense> i think i'm going to build it in to the whitelist on the backend
 922018-11-12T04:34:10  *** instagibbs has quit IRC
 932018-11-12T04:39:49  *** StopAndDecrypt has quit IRC
 942018-11-12T04:44:07  *** promag has joined #bitcoin-core-dev
 952018-11-12T04:56:38  *** bitcoin-git has joined #bitcoin-core-dev
 962018-11-12T04:56:38  <bitcoin-git> [bitcoin] kallewoof closed pull request #12508: IsAllFromMe (master...feature-isallfromme) https://github.com/bitcoin/bitcoin/pull/12508
 972018-11-12T04:56:38  *** bitcoin-git has left #bitcoin-core-dev
 982018-11-12T04:58:07  *** Giszmo has quit IRC
 992018-11-12T05:21:58  *** tryphe_ has joined #bitcoin-core-dev
1002018-11-12T05:24:32  *** Giszmo has joined #bitcoin-core-dev
1012018-11-12T05:25:04  *** tryphe has quit IRC
1022018-11-12T05:28:17  *** atomicthumbs_ has joined #bitcoin-core-dev
1032018-11-12T05:29:04  *** instagibbs has joined #bitcoin-core-dev
1042018-11-12T05:47:09  *** bitconner has joined #bitcoin-core-dev
1052018-11-12T05:49:07  *** Giszmo has quit IRC
1062018-11-12T05:51:34  *** spinza has quit IRC
1072018-11-12T06:00:46  *** spinza has joined #bitcoin-core-dev
1082018-11-12T06:08:39  *** Giszmo has joined #bitcoin-core-dev
1092018-11-12T06:12:40  *** tryphe_ has quit IRC
1102018-11-12T06:13:06  *** tryphe_ has joined #bitcoin-core-dev
1112018-11-12T06:14:06  *** hebasto has joined #bitcoin-core-dev
1122018-11-12T06:18:02  *** rh0nj has quit IRC
1132018-11-12T06:19:07  *** rh0nj has joined #bitcoin-core-dev
1142018-11-12T06:19:54  *** bitcoin-git has joined #bitcoin-core-dev
1152018-11-12T06:19:54  <bitcoin-git> [bitcoin] AkioNak opened pull request #14708: Warn unrecognised sections in the config file (master...warn_unrecognized_section) https://github.com/bitcoin/bitcoin/pull/14708
1162018-11-12T06:19:54  *** bitcoin-git has left #bitcoin-core-dev
1172018-11-12T06:23:20  *** murrayn has quit IRC
1182018-11-12T06:24:04  *** bitconner has quit IRC
1192018-11-12T06:24:57  *** bitconner has joined #bitcoin-core-dev
1202018-11-12T06:29:13  *** bitconner has quit IRC
1212018-11-12T06:29:37  *** Ga1aCt1Cz00__ has joined #bitcoin-core-dev
1222018-11-12T06:32:48  *** Ga1aCt1Cz00_ has quit IRC
1232018-11-12T06:34:43  *** martinus has joined #bitcoin-core-dev
1242018-11-12T07:01:02  *** grafcaps has joined #bitcoin-core-dev
1252018-11-12T07:01:36  *** a5m0_ has quit IRC
1262018-11-12T07:07:05  *** a5m0 has joined #bitcoin-core-dev
1272018-11-12T07:08:07  *** grafcaps has quit IRC
1282018-11-12T07:10:51  *** ghost43 has quit IRC
1292018-11-12T07:12:42  *** ghost43 has joined #bitcoin-core-dev
1302018-11-12T07:22:22  *** deaunapaul has quit IRC
1312018-11-12T07:22:41  *** deaunapaul has joined #bitcoin-core-dev
1322018-11-12T07:57:02  *** kalle has quit IRC
1332018-11-12T08:03:40  *** Victorsueca has quit IRC
1342018-11-12T08:04:47  *** Victorsueca has joined #bitcoin-core-dev
1352018-11-12T08:20:03  *** sanket1729 has quit IRC
1362018-11-12T08:21:21  *** djdv21 has joined #bitcoin-core-dev
1372018-11-12T08:23:49  *** JackH has quit IRC
1382018-11-12T08:27:12  *** jungly has joined #bitcoin-core-dev
1392018-11-12T08:30:46  *** Krellan has quit IRC
1402018-11-12T09:01:28  *** tryphe_000 has joined #bitcoin-core-dev
1412018-11-12T09:01:34  *** tryphe_000 is now known as tryphe
1422018-11-12T09:04:23  *** tryphe_ has quit IRC
1432018-11-12T09:05:51  *** grafcaps has joined #bitcoin-core-dev
1442018-11-12T09:09:40  *** JackH has joined #bitcoin-core-dev
1452018-11-12T09:10:24  *** Zenton has joined #bitcoin-core-dev
1462018-11-12T09:10:37  *** grafcaps has quit IRC
1472018-11-12T09:13:38  *** setpill has joined #bitcoin-core-dev
1482018-11-12T09:37:57  *** timothy has joined #bitcoin-core-dev
1492018-11-12T09:55:53  *** _cryptosignal_me has joined #bitcoin-core-dev
1502018-11-12T10:01:42  *** spinza has quit IRC
1512018-11-12T10:05:13  *** hebasto has quit IRC
1522018-11-12T10:20:01  *** rh0nj has quit IRC
1532018-11-12T10:21:51  *** spinza has joined #bitcoin-core-dev
1542018-11-12T10:23:07  *** rh0nj has joined #bitcoin-core-dev
1552018-11-12T10:51:28  *** spinza has quit IRC
1562018-11-12T10:58:26  *** mistergold has joined #bitcoin-core-dev
1572018-11-12T10:58:59  *** josephnicholas has joined #bitcoin-core-dev
1582018-11-12T11:18:04  *** josephnicholas has quit IRC
1592018-11-12T11:18:38  *** josephnicholas has joined #bitcoin-core-dev
1602018-11-12T11:21:47  *** josephnicholas has quit IRC
1612018-11-12T11:22:18  *** josephnicholas has joined #bitcoin-core-dev
1622018-11-12T11:27:20  *** AaronvanW has joined #bitcoin-core-dev
1632018-11-12T11:35:15  *** spinza has joined #bitcoin-core-dev
1642018-11-12T11:45:03  *** josephnicholas has quit IRC
1652018-11-12T11:54:50  *** josephnicholas has joined #bitcoin-core-dev
1662018-11-12T12:04:13  *** shesek has quit IRC
1672018-11-12T12:11:00  *** deaunapaul has quit IRC
1682018-11-12T12:11:34  *** deaunapaul has joined #bitcoin-core-dev
1692018-11-12T12:17:55  *** deaunapaul has quit IRC
1702018-11-12T12:24:51  *** josephnicholas has quit IRC
1712018-11-12T12:34:27  *** josephnicholas has joined #bitcoin-core-dev
1722018-11-12T12:44:37  *** bitcoin-git has joined #bitcoin-core-dev
1732018-11-12T12:44:38  <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/edc715240cb6...ae32806ea202
1742018-11-12T12:44:38  <bitcoin-git> bitcoin/master 76e13b5 Lenny Maiorani: warnings: Compiler warning on memset usage for non-trivial type...
1752018-11-12T12:44:39  <bitcoin-git> bitcoin/master ae32806 Wladimir J. van der Laan: Merge #14651: Refactor: Fix compiler warning in prevector.h...
1762018-11-12T12:44:39  *** bitcoin-git has left #bitcoin-core-dev
1772018-11-12T12:45:41  *** bitcoin-git has joined #bitcoin-core-dev
1782018-11-12T12:45:41  <bitcoin-git> [bitcoin] laanwj closed pull request #14651: Refactor: Fix compiler warning in prevector.h (master...warnings) https://github.com/bitcoin/bitcoin/pull/14651
1792018-11-12T12:45:41  *** bitcoin-git has left #bitcoin-core-dev
1802018-11-12T12:48:46  *** Aaronvan_ has joined #bitcoin-core-dev
1812018-11-12T12:51:40  *** AaronvanW has quit IRC
1822018-11-12T12:52:33  *** ken2812221 has joined #bitcoin-core-dev
1832018-11-12T13:05:04  *** josephnicholas has quit IRC
1842018-11-12T13:08:15  *** irc_viewer_test has joined #bitcoin-core-dev
1852018-11-12T13:11:44  *** josephnicholas has joined #bitcoin-core-dev
1862018-11-12T13:13:38  *** shesek has joined #bitcoin-core-dev
1872018-11-12T13:15:53  *** _cryptosignal_me has quit IRC
1882018-11-12T13:22:11  *** josephnicholas has quit IRC
1892018-11-12T13:26:32  <promag> jonasschnelli: wumpus: ready to merge #14123?
1902018-11-12T13:26:36  <gribble> https://github.com/bitcoin/bitcoin/issues/14123 | gui: Add GUIUtil::bringToFront by promag · Pull Request #14123 · bitcoin/bitcoin · GitHub
1912018-11-12T13:27:08  *** _cryptosignal_me has joined #bitcoin-core-dev
1922018-11-12T13:30:27  *** murchandamus has joined #bitcoin-core-dev
1932018-11-12T13:31:15  *** face has quit IRC
1942018-11-12T13:52:43  *** Guyver2 has joined #bitcoin-core-dev
1952018-11-12T13:53:14  *** bitcoin-git has joined #bitcoin-core-dev
1962018-11-12T13:53:14  <bitcoin-git> [bitcoin] laanwj pushed 7 new commits to master: https://github.com/bitcoin/bitcoin/compare/ae32806ea202...48223256cf6c
1972018-11-12T13:53:15  <bitcoin-git> bitcoin/master 53bb6be Hennadii Stepanov: Remove obj_c for macOS Dock icon setting...
1982018-11-12T13:53:15  <bitcoin-git> bitcoin/master 2464925 Hennadii Stepanov: Use Qt signal for macOS Dock icon click event...
1992018-11-12T13:53:16  <bitcoin-git> bitcoin/master 6b1d297 Hennadii Stepanov: Remove obj_c for macOS Dock icon menu...
2002018-11-12T13:53:16  *** bitcoin-git has left #bitcoin-core-dev
2012018-11-12T13:54:00  *** bitcoin-git has joined #bitcoin-core-dev
2022018-11-12T13:54:00  <bitcoin-git> [bitcoin] laanwj closed pull request #14123: gui: Add GUIUtil::bringToFront (master...2018-08-bringtofront) https://github.com/bitcoin/bitcoin/pull/14123
2032018-11-12T13:54:00  *** bitcoin-git has left #bitcoin-core-dev
2042018-11-12T13:54:19  *** bitcoin-git has joined #bitcoin-core-dev
2052018-11-12T13:54:20  <bitcoin-git> [bitcoin] laanwj closed pull request #14597: qt: Cleanup MacDockIconHandler class (master...20181028-macos-dock-overhaul) https://github.com/bitcoin/bitcoin/pull/14597
2062018-11-12T13:54:20  *** bitcoin-git has left #bitcoin-core-dev
2072018-11-12T14:03:00  *** bitcoin-git has joined #bitcoin-core-dev
2082018-11-12T14:03:01  <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/48223256cf6c...af3c8a7e9f09
2092018-11-12T14:03:01  <bitcoin-git> bitcoin/master fa9ed38 MarcoFalke: test_node: get_mem_rss fixups
2102018-11-12T14:03:01  <bitcoin-git> bitcoin/master af3c8a7 Wladimir J. van der Laan: Merge #14693: test_node: get_mem_rss fixups...
2112018-11-12T14:03:02  *** bitcoin-git has left #bitcoin-core-dev
2122018-11-12T14:04:03  *** bitcoin-git has joined #bitcoin-core-dev
2132018-11-12T14:04:03  <bitcoin-git> [bitcoin] laanwj closed pull request #14693: test_node: get_mem_rss fixups (master...Mf1811-qaTestNodeFixups) https://github.com/bitcoin/bitcoin/pull/14693
2142018-11-12T14:04:03  *** bitcoin-git has left #bitcoin-core-dev
2152018-11-12T14:08:30  *** bitcoin-git has joined #bitcoin-core-dev
2162018-11-12T14:08:31  <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/af3c8a7e9f09...5cdfd72b179d
2172018-11-12T14:08:31  <bitcoin-git> bitcoin/master ec1201a Hennadii Stepanov: Don't use systray icon on inappropriate systems...
2182018-11-12T14:08:32  <bitcoin-git> bitcoin/master 5cdfd72 Wladimir J. van der Laan: Merge #14228: Qt: Enable system tray icon by default if available...
2192018-11-12T14:08:32  *** bitcoin-git has left #bitcoin-core-dev
2202018-11-12T14:09:17  *** bitcoin-git has joined #bitcoin-core-dev
2212018-11-12T14:09:17  <bitcoin-git> [bitcoin] laanwj closed pull request #14228: Qt: Enable system tray icon by default if available (master...unavailable-systray) https://github.com/bitcoin/bitcoin/pull/14228
2222018-11-12T14:09:17  *** bitcoin-git has left #bitcoin-core-dev
2232018-11-12T14:18:03  <wumpus> can't wait to remove the concept of 'tray icon' completely...
2242018-11-12T14:18:39  <wumpus> I think 'minimize to tray' caused more whoops, I've lost my UI issues than any other functionality
2252018-11-12T14:19:50  <promag> :)
2262018-11-12T14:21:14  <wumpus> (the other problematic functionality there is remembering the window position between runs, but that gets merely second place...)
2272018-11-12T14:23:04  *** promag has quit IRC
2282018-11-12T14:23:31  *** millerti has joined #bitcoin-core-dev
2292018-11-12T14:24:04  *** bitcoin-git has joined #bitcoin-core-dev
2302018-11-12T14:24:05  <bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/5cdfd72b179d...90c0b6aca2da
2312018-11-12T14:24:06  <bitcoin-git> bitcoin/master 13fe258 MeshCollider: Error if rpcpassword in conf contains a hash character
2322018-11-12T14:24:06  <bitcoin-git> bitcoin/master 0385109 MeshCollider: Add test for rpcpassword hash error
2332018-11-12T14:24:06  <bitcoin-git> bitcoin/master 90c0b6a Wladimir J. van der Laan: Merge #14494: Error if # is used in rpcpassword in conf...
2342018-11-12T14:24:07  *** bitcoin-git has left #bitcoin-core-dev
2352018-11-12T14:24:51  <meshcollider> promag: do you have time to rebase #13339 and address the comments there
2362018-11-12T14:24:53  <gribble> https://github.com/bitcoin/bitcoin/issues/13339 | wallet: Replace %w by wallet name in -walletnotify script by promag · Pull Request #13339 · bitcoin/bitcoin · GitHub
2372018-11-12T14:25:01  *** bitcoin-git has joined #bitcoin-core-dev
2382018-11-12T14:25:01  <bitcoin-git> [bitcoin] laanwj closed pull request #14494: Error if # is used in rpcpassword in conf (master...201810_hash_in_rpcpassword_error) https://github.com/bitcoin/bitcoin/pull/14494
2392018-11-12T14:25:01  *** bitcoin-git has left #bitcoin-core-dev
2402018-11-12T14:26:53  <millerti> I just built the latest bitcoin from github, and immediately on start, I get a std::bad_alloc exception.  I googled this, and I don't think any of the problems people talk about.  This is a completely fresh install.  No wallets or anything.  It's a 64-bit build.  I have penty of physical and virtual RAM.  Any ideas where to start?  I'll try a debugger to get a stack trace....
2412018-11-12T14:27:54  <millerti> Ah, here's the problem.  A bad number being passed to operator new:  operator new (sz=115948856372249)
2422018-11-12T14:29:29  <wumpus> millerti: ouch! can you get a traceback from where that allocation is called?
2432018-11-12T14:29:40  <millerti> Yeah.
2442018-11-12T14:29:48  <millerti> What is your preferred paste site?
2452018-11-12T14:30:20  <wumpus> 0bin.net
2462018-11-12T14:31:54  <millerti> Hmmm... I clicked the short URL link, and it just sits there saying that it's loading a short URL.  Can I use pastebin?
2472018-11-12T14:32:01  <millerti> https://pastebin.com/qBWedFjx
2482018-11-12T14:32:03  <wumpus> sure
2492018-11-12T14:32:41  <wumpus> that one is more private (the owners of the pastebin site itself cannot see the paste contents) but this is likely no sensitive information
2502018-11-12T14:32:48  <millerti> Indeed.
2512018-11-12T14:33:26  <millerti> wumpus ... I've seen your name elsewhere ... ##programming ?
2522018-11-12T14:35:10  <wumpus> the crash happens in a very strange place, while computing the standard data directory based on the home directory (~/.bitcoin)
2532018-11-12T14:35:26  <millerti> #16 GetDefaultDataDir () at util/system.cpp:726
2542018-11-12T14:35:28  <wumpus> deep inside std::string, I'm kind of confused about this
2552018-11-12T14:35:28  <gribble> https://github.com/bitcoin/bitcoin/issues/16 | Mac UI issues · Issue #16 · bitcoin/bitcoin · GitHub
2562018-11-12T14:35:31  <millerti> 726         return pathRet / ".bitcoin";
2572018-11-12T14:35:42  <millerti> $1 = {static separator = 47 '/', static preferred_separator = 47 '/', static dot = 46 '.', m_pathname = "/home/millerti"}
2582018-11-12T14:36:42  <wumpus> I'm only in a few channels these days, but used to be in more, not ##programming though; #etnaviv maybe, #radare or one of the gcw channels?
2592018-11-12T14:37:02  <wumpus> yes that all looks okay !
2602018-11-12T14:37:03  *** wxss has joined #bitcoin-core-dev
2612018-11-12T14:37:31  <phantomcircuit> millerti, is your HOME env variable sane?
2622018-11-12T14:37:48  <wumpus> the only thing I can think of could be something obscure like a version conflict between boost headers and library
2632018-11-12T14:37:49  <phantomcircuit> (it probably is but worth a look)
2642018-11-12T14:38:09  <millerti> HOME=/home/millerti
2652018-11-12T14:38:28  <wumpus> or c++ ABIs, is ABI conflict between c++11 and other languages still a thing?
2662018-11-12T14:38:52  <meshcollider> wumpus: since promag isn't online, perhaps you can explain to me why there are extra quotes around the escaped quote in the boost::replace_all statements in https://github.com/bitcoin/bitcoin/pull/13339/commits/cef0327afd220950142ec9d4d051bb94f5210be1
2672018-11-12T14:38:53  <millerti> Well, I had to disable the test suite to get around some ABI compatibility problems--unresolved symbols.
2682018-11-12T14:38:58  <meshcollider> boost::replace_all(name, "'", "'\''");
2692018-11-12T14:39:16  <meshcollider> why are there single quotes as well as double quotes
2702018-11-12T14:39:23  <phantomcircuit> millerti, make clean and try again
2712018-11-12T14:39:24  <wumpus> millerti: looks like there is a hidden one now
2722018-11-12T14:39:24  <millerti> So... let's see if there's a newer boost....
2732018-11-12T14:39:34  *** promag has joined #bitcoin-core-dev
2742018-11-12T14:39:36  <wumpus> (e.g. not visible to the linker)
2752018-11-12T14:39:46  <millerti> This is is fundamentally a clean build.  I'll see if I can get some updates on boost.
2762018-11-12T14:40:48  *** intcat has quit IRC
2772018-11-12T14:41:28  <wumpus> meshcollider: the double quotes are C++'s string quotes, the single quotes are shell quotes; '\'' closes the current '-string, adds a single escaped ', then reopens the '-string
2782018-11-12T14:42:06  <wumpus> meshcollider: try: echo 'this has a quote '\'' in between'
2792018-11-12T14:42:34  <meshcollider> ooh right
2802018-11-12T14:42:37  <meshcollider> thanks
2812018-11-12T14:42:59  *** nickler has quit IRC
2822018-11-12T14:43:46  *** nickler has joined #bitcoin-core-dev
2832018-11-12T14:44:17  <promag> what do you think of #14573 (added screenshot)?
2842018-11-12T14:44:19  <gribble> https://github.com/bitcoin/bitcoin/issues/14573 | qt: Add Window menu by promag · Pull Request #14573 · bitcoin/bitcoin · GitHub
2852018-11-12T14:44:28  *** intcat has joined #bitcoin-core-dev
2862018-11-12T14:45:35  *** ag1 has joined #bitcoin-core-dev
2872018-11-12T14:46:37  <meshcollider> promag: isn't such a menu typically called "View" not "Window"?
2882018-11-12T14:46:45  <meshcollider> I like the idea though
2892018-11-12T14:46:53  <wumpus> promag: FWIW, I like it
2902018-11-12T14:47:10  *** instagibbs has quit IRC
2912018-11-12T14:47:30  <promag> meshcollider: at least on macos it's "Window"
2922018-11-12T14:48:08  *** owowo has quit IRC
2932018-11-12T14:48:16  <promag> Finder, Preview, Chrome, iTerm, QtCreator all use Window
2942018-11-12T14:48:29  <wumpus> although I"m not sure what the address book has to do with "Window"
2952018-11-12T14:48:41  <wumpus> it's a wallet function
2962018-11-12T14:48:49  <meshcollider> I'm just basing it off the three common programs i had open right now on my windows laptop haha, word, firefox and atom all say View on windows. Thats ok though!
2972018-11-12T14:48:52  <wumpus> that's why it was under "file"
2982018-11-12T14:49:01  <meshcollider> maybe its just a windows vs mac convention thing
2992018-11-12T14:49:12  <meshcollider> although yeah the address book would make more sense if it was called View
3002018-11-12T14:50:03  *** Giszmo has quit IRC
3012018-11-12T14:50:07  *** owowo has joined #bitcoin-core-dev
3022018-11-12T14:51:03  <promag> wumpus: I understand but I don't think that's how menus should be organised. For instance, Settings->Change Passphrase is also a wallet function
3032018-11-12T14:51:43  <promag> otherwise we should have a "Wallet" menu
3042018-11-12T14:58:10  *** Victorsueca has quit IRC
3052018-11-12T14:58:36  *** Victorsueca has joined #bitcoin-core-dev
3062018-11-12T15:01:24  *** drizztbsd has joined #bitcoin-core-dev
3072018-11-12T15:02:08  <wumpus> maybe we should have a Wallet menu?
3082018-11-12T15:02:27  *** timothy has quit IRC
3092018-11-12T15:02:29  <wumpus> I'm fairly sure users will be confused with the address book in the "Window" menu
3102018-11-12T15:02:42  <wumpus> buut who am I, I"m not a GUI expert...
3112018-11-12T15:03:42  <millerti> Ok, dumb question.  What does bitcoind do when you first fire it up?  I want to do solo mining using a hacked version of bfgminer, which is why I installed bitcoind.  So I started it with no options, and it's doing a LOT of stuff.  UpdateTip:  new best, and stuff like that.
3122018-11-12T15:03:58  <wumpus> promag: ohh I think I understand the rationale now, 'window' menu would have checkboxes for optional windows?
3132018-11-12T15:04:34  <millerti> Hmmm... is it caching known successful hashes?
3142018-11-12T15:05:41  <wumpus> it downloads and validates the bitcoin block chain
3152018-11-12T15:06:09  <millerti> The WHOLE blockchain?  All 17 million?
3162018-11-12T15:07:19  <promag> wumpus: checkbox?
3172018-11-12T15:07:57  <wumpus> there is a pruning option to keep only the last N blocks, but it needs to download and validate everything. I'm not sure what 17 million you're referring to. there are 549806 blocks atthe moment.
3182018-11-12T15:08:32  <wumpus> btw; please ask further usage quesions in #bitcoin, this channel is for development
3192018-11-12T15:08:38  <wumpus> promag: yes, to toggle visibility
3202018-11-12T15:08:54  <promag> wumpus: ah yes
3212018-11-12T15:09:00  <wumpus> I remember that concept from some graphics tools, I'm just pattern-matching though
3222018-11-12T15:09:04  <promag> wumpus: it's like Window->Downloads in Chrome
3232018-11-12T15:09:40  *** ag1 is now known as agnjunio
3242018-11-12T15:12:23  <promag> wumpus: and when you click on a transaction is opens a window with "Details for ...", that should go to Window menu too
3252018-11-12T15:13:17  <millerti> Right, right.  There is a limit if 21 million bitcoins, 17 million of which have been mined so far.  But that's coins, not blocks.
3262018-11-12T15:14:32  *** shesek has quit IRC
3272018-11-12T15:14:44  <millerti> Is this cache being saved to disk?  Sorry if I'm asking noob questions.  I've spent all my time studying the hashing algorithm and not paid much attention to the protocol and network.
3282018-11-12T15:16:38  <wumpus> promag: by that reasoning, wouldn't the 'debug window' belong in the window menu too?
3292018-11-12T15:16:53  <wumpus> promag: I think what confused me was that this is only done for the address book but not others
3302018-11-12T15:16:58  <promag> wumpus: it's already there
3312018-11-12T15:16:59  *** Giszmo has joined #bitcoin-core-dev
3322018-11-12T15:17:02  <wumpus> oh, sorry.
3332018-11-12T15:17:36  <promag> wumpus: but I'd split it later, instead of "Debug window" it would have "Debug -> Console" etc
3342018-11-12T15:18:00  <wumpus> I... wouldn't make those separate windows
3352018-11-12T15:18:10  <wumpus> or do you mean that it goes to that tab?
3362018-11-12T15:18:10  <promag> no, just direct access
3372018-11-12T15:18:13  <wumpus> right
3382018-11-12T15:18:57  <wumpus> millerti: yes, this is saved to disk
3392018-11-12T15:19:17  <millerti> Cool.  :)
3402018-11-12T15:20:09  <wumpus> the initial sync can take from 3 hours on a fast machine to weeks on RPi-class hardware, it's not something you want to do often
3412018-11-12T15:20:16  <wumpus> but agian, please move usage questions to #bitcoin
3422018-11-12T15:20:50  <millerti> Right, sorry.
3432018-11-12T15:22:17  *** phwalkr has joined #bitcoin-core-dev
3442018-11-12T15:22:55  *** bitcoin-git has joined #bitcoin-core-dev
3452018-11-12T15:22:56  <bitcoin-git> [bitcoin] practicalswift closed pull request #14706: Fix icc (Intel C++ compiler) warnings (master...icc) https://github.com/bitcoin/bitcoin/pull/14706
3462018-11-12T15:22:56  *** bitcoin-git has left #bitcoin-core-dev
3472018-11-12T15:28:27  *** instagibbs has joined #bitcoin-core-dev
3482018-11-12T15:32:23  *** drizztbsd has quit IRC
3492018-11-12T15:32:45  *** drizztbsd has joined #bitcoin-core-dev
3502018-11-12T15:32:57  *** drizztbsd is now known as timothy
3512018-11-12T15:35:55  *** Giszmo has quit IRC
3522018-11-12T15:36:30  <phantomcircuit> sipa, indeed SocketEvents is kind of slow
3532018-11-12T15:41:29  *** michaelsdunn1 has joined #bitcoin-core-dev
3542018-11-12T15:56:49  *** phwalkr has quit IRC
3552018-11-12T15:57:10  *** Giszmo has joined #bitcoin-core-dev
3562018-11-12T15:57:25  *** phwalkr has joined #bitcoin-core-dev
3572018-11-12T16:01:54  *** phwalkr has quit IRC
3582018-11-12T16:07:10  *** phwalkr has joined #bitcoin-core-dev
3592018-11-12T16:08:36  *** bitcoin-git has joined #bitcoin-core-dev
3602018-11-12T16:08:36  <bitcoin-git> [bitcoin] practicalswift closed pull request #11652: Add missing locks: validation.cpp + related (master...init-and-validation-locks) https://github.com/bitcoin/bitcoin/pull/11652
3612018-11-12T16:08:36  *** bitcoin-git has left #bitcoin-core-dev
3622018-11-12T16:10:59  *** leishman has joined #bitcoin-core-dev
3632018-11-12T16:11:31  *** phwalkr has quit IRC
3642018-11-12T16:11:44  *** bitcoin-git has joined #bitcoin-core-dev
3652018-11-12T16:11:44  <bitcoin-git> [bitcoin] practicalswift closed pull request #14224: Document intentional and unintentional unsigned integer overflows (wraparounds) using annotations (master...no_sanitize-unsigned-integer-overflow) https://github.com/bitcoin/bitcoin/pull/14224
3662018-11-12T16:11:44  *** bitcoin-git has left #bitcoin-core-dev
3672018-11-12T16:12:03  *** bitcoin-git has joined #bitcoin-core-dev
3682018-11-12T16:12:03  <bitcoin-git> [bitcoin] practicalswift closed pull request #14194: Annotate unused parameters with [[maybe_unused]] (master...annotate-intentionally-unused-parameters) https://github.com/bitcoin/bitcoin/pull/14194
3692018-11-12T16:12:03  *** bitcoin-git has left #bitcoin-core-dev
3702018-11-12T16:12:03  *** Victorsueca has quit IRC
3712018-11-12T16:12:28  *** ExtraCrispy has joined #bitcoin-core-dev
3722018-11-12T16:13:14  *** Victorsueca has joined #bitcoin-core-dev
3732018-11-12T16:15:18  *** Victorsueca has quit IRC
3742018-11-12T16:16:30  *** Victorsueca has joined #bitcoin-core-dev
3752018-11-12T16:19:45  *** bitcoin-git has joined #bitcoin-core-dev
3762018-11-12T16:19:46  <bitcoin-git> [bitcoin] practicalswift closed pull request #11535: Avoid unintentional unsigned integer wraparounds (master...unsigned-integer-wraparounds) https://github.com/bitcoin/bitcoin/pull/11535
3772018-11-12T16:19:46  *** bitcoin-git has left #bitcoin-core-dev
3782018-11-12T16:24:48  *** jarthur has joined #bitcoin-core-dev
3792018-11-12T16:26:39  *** ken2812221 has quit IRC
3802018-11-12T16:28:34  *** rex4539 has quit IRC
3812018-11-12T16:37:43  *** hebasto has joined #bitcoin-core-dev
3822018-11-12T16:44:37  *** _cryptosignal_me has quit IRC
3832018-11-12T16:44:46  *** _cryptosignal_me has joined #bitcoin-core-dev
3842018-11-12T16:54:21  *** promag has quit IRC
3852018-11-12T16:55:39  *** phwalkr has joined #bitcoin-core-dev
3862018-11-12T16:56:04  *** setpill has quit IRC
3872018-11-12T16:57:27  *** leishman has quit IRC
3882018-11-12T17:00:40  *** phwalkr has quit IRC
3892018-11-12T17:04:48  *** arubi has quit IRC
3902018-11-12T17:05:13  *** arubi has joined #bitcoin-core-dev
3912018-11-12T17:05:28  *** owowo has quit IRC
3922018-11-12T17:13:24  *** JackH has quit IRC
3932018-11-12T17:33:18  *** _cryptosignal_me has quit IRC
3942018-11-12T17:45:50  *** rex4539 has joined #bitcoin-core-dev
3952018-11-12T17:47:39  *** cryptapus has quit IRC
3962018-11-12T17:49:50  *** cryptapus has joined #bitcoin-core-dev
3972018-11-12T17:49:50  *** cryptapus has quit IRC
3982018-11-12T17:49:50  *** cryptapus has joined #bitcoin-core-dev
3992018-11-12T17:53:37  *** grubles has quit IRC
4002018-11-12T18:00:15  *** timothy has quit IRC
4012018-11-12T18:00:27  <phantomcircuit> sipa, actually it just seems we run SocketEvents way too much
4022018-11-12T18:00:44  <phantomcircuit> the kernel time for sock_poll is about the same as the time in SocketEvents
4032018-11-12T18:00:58  *** phwalkr has joined #bitcoin-core-dev
4042018-11-12T18:05:21  *** phwalkr has quit IRC
4052018-11-12T18:07:08  *** JackH has joined #bitcoin-core-dev
4062018-11-12T18:07:11  *** phwalkr has joined #bitcoin-core-dev
4072018-11-12T18:07:59  <instagibbs> 14356 ready for merge?
4082018-11-12T18:14:55  *** bitcoin-git has joined #bitcoin-core-dev
4092018-11-12T18:14:56  <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/90c0b6aca2da...47ed24cf8aa7
4102018-11-12T18:14:56  <bitcoin-git> bitcoin/master 88a79cb Gregory Sanders: fix converttopsbt permitsigdata arg, add basic test
4112018-11-12T18:14:57  <bitcoin-git> bitcoin/master 47ed24c Wladimir J. van der Laan: Merge #14356: fix converttopsbt permitsigdata arg, add basic test...
4122018-11-12T18:14:57  *** bitcoin-git has left #bitcoin-core-dev
4132018-11-12T18:15:48  *** bitcoin-git has joined #bitcoin-core-dev
4142018-11-12T18:15:49  <bitcoin-git> [bitcoin] laanwj closed pull request #14356: fix converttopsbt permitsigdata arg, add basic test (master...converttopsbt_strip) https://github.com/bitcoin/bitcoin/pull/14356
4152018-11-12T18:15:49  *** bitcoin-git has left #bitcoin-core-dev
4162018-11-12T18:19:13  *** grafcaps has joined #bitcoin-core-dev
4172018-11-12T18:20:12  *** luke-jr has quit IRC
4182018-11-12T18:23:07  *** Zenton has quit IRC
4192018-11-12T18:24:33  <phantomcircuit> #14356
4202018-11-12T18:24:35  <gribble> https://github.com/bitcoin/bitcoin/issues/14356 | fix converttopsbt permitsigdata arg, add basic test by instagibbs · Pull Request #14356 · bitcoin/bitcoin · GitHub
4212018-11-12T18:26:43  *** michaelsdunn1 has quit IRC
4222018-11-12T18:27:19  *** michaelsdunn1 has joined #bitcoin-core-dev
4232018-11-12T18:27:19  *** michaelsdunn1 has quit IRC
4242018-11-12T18:27:19  *** michaelsdunn1 has joined #bitcoin-core-dev
4252018-11-12T18:33:34  *** Krellan has joined #bitcoin-core-dev
4262018-11-12T18:33:34  *** cryptapus has quit IRC
4272018-11-12T18:33:50  *** luke-jr has joined #bitcoin-core-dev
4282018-11-12T18:34:56  *** cryptapus has joined #bitcoin-core-dev
4292018-11-12T18:34:56  *** cryptapus has quit IRC
4302018-11-12T18:34:56  *** cryptapus has joined #bitcoin-core-dev
4312018-11-12T18:41:30  *** ap4lmtree has quit IRC
4322018-11-12T18:41:46  *** ap4lmtree has joined #bitcoin-core-dev
4332018-11-12T18:45:05  <millerti> bitcoind crashed when I ran out of disk space.  So I freed up PLENTY of space, but now it still complains that there's no space left on the device when I try to start it up.
4342018-11-12T18:45:17  <millerti> Is this a usage question?
4352018-11-12T18:46:09  <millerti> Never mind.
4362018-11-12T18:46:27  <booyah> millerti: realy crash or just exited?
4372018-11-12T18:46:46  <booyah> if it is sigsegv, then millerti can you run it in gdb, as  "gdb --args bitcoind ...." and open issue on github
4382018-11-12T18:46:50  <millerti> Well... it looked like a semi-clean shutdown.  I added "-reindex" and it's doing something.
4392018-11-12T18:47:44  <millerti> But apparently it didn't leave the database in the BEST of states, so we'll see.  Is there a way to validate the block chain locally so I can be sure I'm not missing something?  Or is that automatic?
4402018-11-12T18:50:47  <sipa> millerti: well with -reindex it throws away the database and recreates it from scratch
4412018-11-12T18:50:49  *** jungly has quit IRC
4422018-11-12T19:00:32  <luke-jr> fyi, apparently Qt has decided to break backward compatibility some time between 5.9 and 5.11 :|
4432018-11-12T19:00:49  <luke-jr> not sure if this affects our binaries
4442018-11-12T19:03:01  <hebasto> luke-jr: could you elaborate?
4452018-11-12T19:04:46  <luke-jr> hebasto: I updated Qt and my Qt apps won't start anymore
4462018-11-12T19:08:13  <luke-jr> relocation error: /usr/lib64/libQt5Gui.so.5: symbol _ZNK11QLocaleData13validateCharsERK7QStringNS_10NumberModeEP10QByteArrayi6QFlagsIN7QLocale12NumberOptionEE, version Qt_5 not defined in file libQt5Core.so.5 with link time reference
4472018-11-12T19:08:22  <luke-jr> don't really have time to investigate further right this minute
4482018-11-12T19:14:23  *** owowo has joined #bitcoin-core-dev
4492018-11-12T19:18:19  *** Hippolippo has joined #bitcoin-core-dev
4502018-11-12T19:35:55  *** bitcoin-git has joined #bitcoin-core-dev
4512018-11-12T19:35:56  <bitcoin-git> [bitcoin] ryanofsky opened pull request #14711: Remove uses of chainActive and mapBlockIndex in wallet code (master...pr/wchain2) https://github.com/bitcoin/bitcoin/pull/14711
4522018-11-12T19:35:56  *** bitcoin-git has left #bitcoin-core-dev
4532018-11-12T19:38:41  *** grubles has joined #bitcoin-core-dev
4542018-11-12T19:42:56  *** tryphe_ has joined #bitcoin-core-dev
4552018-11-12T19:46:18  *** tryphe has quit IRC
4562018-11-12T19:48:44  *** Krellan has quit IRC
4572018-11-12T19:50:08  *** Ohelig has joined #bitcoin-core-dev
4582018-11-12T19:51:28  *** promag has joined #bitcoin-core-dev
4592018-11-12T19:53:04  *** promag has quit IRC
4602018-11-12T19:54:38  *** promag has joined #bitcoin-core-dev
4612018-11-12T19:55:44  *** Ohelig has quit IRC
4622018-11-12T19:56:30  *** promag has quit IRC
4632018-11-12T19:59:01  *** phwalkr has quit IRC
4642018-11-12T19:59:34  *** phwalkr has joined #bitcoin-core-dev
4652018-11-12T20:00:11  *** laurentmt has joined #bitcoin-core-dev
4662018-11-12T20:01:59  *** hirish_ has joined #bitcoin-core-dev
4672018-11-12T20:02:57  *** jarthur has quit IRC
4682018-11-12T20:03:13  *** hirish has quit IRC
4692018-11-12T20:03:55  *** phwalkr has quit IRC
4702018-11-12T20:06:06  *** laurentmt has quit IRC
4712018-11-12T20:08:01  *** laurentmt has joined #bitcoin-core-dev
4722018-11-12T20:09:52  *** laurentmt has quit IRC
4732018-11-12T20:12:03  *** hirish_ has quit IRC
4742018-11-12T20:12:18  *** hirish has joined #bitcoin-core-dev
4752018-11-12T20:12:41  *** hirish is now known as Guest75229
4762018-11-12T20:14:14  *** phwalkr has joined #bitcoin-core-dev
4772018-11-12T20:15:28  *** Guest75229 has quit IRC
4782018-11-12T20:15:42  *** hirish has joined #bitcoin-core-dev
4792018-11-12T20:17:44  *** promag has joined #bitcoin-core-dev
4802018-11-12T20:18:11  *** hirish has quit IRC
4812018-11-12T20:18:38  *** phwalkr has quit IRC
4822018-11-12T20:23:36  *** hirish has joined #bitcoin-core-dev
4832018-11-12T20:23:59  *** hirish is now known as Guest45144
4842018-11-12T20:26:12  *** hirish has joined #bitcoin-core-dev
4852018-11-12T20:26:35  *** hirish is now known as Guest76747
4862018-11-12T20:26:41  *** Zenton has joined #bitcoin-core-dev
4872018-11-12T20:28:34  *** Guest76747 has quit IRC
4882018-11-12T20:29:54  *** hirish has joined #bitcoin-core-dev
4892018-11-12T20:30:29  *** hirish is now known as Guest36764
4902018-11-12T20:34:21  *** promag has quit IRC
4912018-11-12T20:35:25  *** marcellop71 has joined #bitcoin-core-dev
4922018-11-12T20:36:12  *** marcellop71 has left #bitcoin-core-dev
4932018-11-12T20:42:13  *** jarthur has joined #bitcoin-core-dev
4942018-11-12T20:54:01  *** Guyver2 has quit IRC
4952018-11-12T21:01:03  *** mistergold has quit IRC
4962018-11-12T21:05:23  *** Krellan has joined #bitcoin-core-dev
4972018-11-12T21:21:38  *** phwalkr has joined #bitcoin-core-dev
4982018-11-12T21:23:07  *** sdaftuar has quit IRC
4992018-11-12T21:25:48  *** phwalkr has quit IRC
5002018-11-12T21:27:25  *** sdaftuar has joined #bitcoin-core-dev
5012018-11-12T21:33:02  *** davec has quit IRC
5022018-11-12T21:36:53  *** Aaronvan_ is now known as AaronvanW
5032018-11-12T21:50:39  *** davec has joined #bitcoin-core-dev
5042018-11-12T21:52:48  *** Guest83806 has quit IRC
5052018-11-12T21:53:21  *** iphelix has joined #bitcoin-core-dev
5062018-11-12T21:53:44  *** iphelix is now known as Guest64655
5072018-11-12T21:56:48  *** davec has joined #bitcoin-core-dev
5082018-11-12T22:01:36  *** hebasto has quit IRC
5092018-11-12T22:03:28  *** bitcoin-git has joined #bitcoin-core-dev
5102018-11-12T22:03:28  <bitcoin-git> [bitcoin] MarcoFalke opened pull request #14712: wallet: Fix crash when rescanning wallet from future (master...Mf1811-walletCrashScan) https://github.com/bitcoin/bitcoin/pull/14712
5112018-11-12T22:03:28  *** bitcoin-git has left #bitcoin-core-dev
5122018-11-12T22:07:10  *** jarthur has quit IRC
5132018-11-12T22:13:54  *** spinza has quit IRC
5142018-11-12T22:17:17  *** spinza has joined #bitcoin-core-dev
5152018-11-12T22:23:36  <sipa> oh, we crossed 90 bits of chainwork
5162018-11-12T22:24:09  <sipa> around 29 hours ago
5172018-11-12T22:29:09  *** spinza has quit IRC
5182018-11-12T22:32:17  *** spinza has joined #bitcoin-core-dev
5192018-11-12T22:32:18  *** wxss has quit IRC
5202018-11-12T22:34:01  *** rh0nj has quit IRC
5212018-11-12T22:35:08  *** rh0nj has joined #bitcoin-core-dev
5222018-11-12T22:38:06  <achow101> apparently github is killing the "github services" thing in jan which means that we will lose the irc notifications for prs as that is a github service
5232018-11-12T22:39:55  <achow101> and it seems there is no replacement for it other than setting up a server that receives webhook notifications and then posts to irc
5242018-11-12T22:42:01  <luke-jr> sigh
5252018-11-12T22:43:21  <sipa> that doesn't sound hard
5262018-11-12T22:58:41  *** phwalkr has joined #bitcoin-core-dev
5272018-11-12T23:01:07  *** phwalkr has quit IRC
5282018-11-12T23:01:41  *** phwalkr has joined #bitcoin-core-dev
5292018-11-12T23:06:23  *** phwalkr has quit IRC
5302018-11-12T23:07:08  <midnightmagic> No that part sounds pretty easy..
5312018-11-12T23:09:10  <drexl> sounds like a use case for serverless/lambda
5322018-11-12T23:09:15  <drexl> no need to set up a server
5332018-11-12T23:09:30  *** promag has joined #bitcoin-core-dev
5342018-11-12T23:11:47  *** dviola has joined #bitcoin-core-dev
5352018-11-12T23:16:32  *** agnjunio has quit IRC
5362018-11-12T23:19:01  <phantomcircuit> drexl, the irc part
5372018-11-12T23:23:06  *** ken2812221 has joined #bitcoin-core-dev
5382018-11-12T23:25:28  *** Murch has joined #bitcoin-core-dev
5392018-11-12T23:35:29  *** Krellan has quit IRC