--- Day changed Mon Mar 26 2018 00:02 -!- dafunkiz_ [~dafunkizd@174.127.143.202] has quit [Quit: probably someone interrupted me] 00:06 < sipa> Dmitrii__: this channel is about bitcoin core, not bitcore 00:07 < Dmitrii__> sipa: i know, but i cant find any bitcore community... can you help me find it then? :))) 00:08 -!- Lynet [~slem@50.199.34.95.customer.cdi.no] has joined #bitcoin-core-dev 00:10 < kallewoof> Huh... trying to build windows version of bitcoin with --enable-gprof --enable-debug. It fails to compile, with `Fatal error: can't write 86 bytes to section .text of wallet/libbitcoin_wallet_a-wallet.o because: 'File too big'`. That doesn't sound too good. (Without both, it compiles though.) 00:13 < kallewoof> Actually --enable-debug is the problem. -gprof appears to work fine. Guess that's to be expected for a cross compile... 00:16 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 00:20 -!- Lynet [~slem@50.199.34.95.customer.cdi.no] has quit [Ping timeout: 260 seconds] 00:24 < kallewoof> Hum. Running test_bitcoin.exe through wine takes <2m. I wonder if the 30+ mins are in the other tests (secp256k1 / univalue)... 00:24 < kallewoof> (^ is with --enable-gprof, too) 00:27 -!- r251d [~r251d@2600:1700:e350:37f0:51f3:d51a:e636:637a] has quit [Read error: Connection reset by peer] 00:27 -!- r251d [~r251d@2600:1700:e350:37f0:51f3:d51a:e636:637a] has joined #bitcoin-core-dev 00:29 -!- anome [~anome@unaffiliated/anome] has quit [] 00:35 -!- zarez [~Thunderbi@fs-93-93-44-38.fullsave.info] has joined #bitcoin-core-dev 00:35 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 00:41 -!- nanotube [~nanotube@unaffiliated/nanotube] has quit [Ping timeout: 240 seconds] 00:42 -!- aruns [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 00:43 -!- dafunkiz_ [~dafunkizd@174.127.143.202] has joined #bitcoin-core-dev 00:44 -!- aruns__ [~indistylo@119.82.105.106] has quit [Ping timeout: 240 seconds] 00:48 -!- anome [~anome@unaffiliated/anome] has quit [] 00:49 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 00:54 -!- jimmysong [~Jimmy@72-48-253-51.dyn.grandenetworks.net] has joined #bitcoin-core-dev 00:55 -!- jtimon [~quassel@142.29.134.37.dynamic.jazztel.es] has quit [Ping timeout: 240 seconds] 00:55 -!- anome [~anome@unaffiliated/anome] has quit [] 00:56 -!- Tyrel43Rodriguez [~Tyrel43Ro@ns334669.ip-5-196-64.eu] has quit [Remote host closed the connection] 00:57 < Randolf> Dmitrii__: I suspect that you're looking for the Bitcoin community: /join #bitcoin 00:58 < Dmitrii__> Randolf: thx 00:58 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 00:58 -!- anome [~anome@unaffiliated/anome] has quit [Client Quit] 00:59 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 01:02 < wumpus> kallewoof: which gcc version? 01:03 -!- anome [~anome@unaffiliated/anome] has quit [Client Quit] 01:03 < wumpus> kallewoof: shouldn't have anything to do with cross compiling, some versions of mingw-w64 produce corrupted executables under some conditions 01:05 -!- jimmysong [~Jimmy@72-48-253-51.dyn.grandenetworks.net] has quit [Ping timeout: 265 seconds] 01:05 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 01:06 -!- jimmysong [~Jimmy@72-48-253-51.dyn.grandenetworks.net] has joined #bitcoin-core-dev 01:07 < kallewoof> wumpus: gcc (Ubuntu 7.2.0-8ubuntu3) 7.2.0 01:07 < wumpus> ok, you might want to try with a different one 01:07 < kallewoof> I'm trying to reproduce the super long runtime for make check in travis, so I'll see if I can get the one travis is using. Thanks for the hint. 01:07 < wumpus> or even with clang - their windows support is improving every release 01:08 < kallewoof> Nice, okay. 01:08 < wumpus> it isn't simply the secp2565k1 exhaustive tests taking a long time? 01:09 < kallewoof> wumpus: They take < 1 min on my machine (through wine), with --enable-gprof on. 01:10 < kallewoof> 21.8s for tests.exe and 1.1s for exhaustive_tests.exe (that sounds really fast, btw. maybe it's skipping stuff) 01:10 < wumpus> hmm okay 01:10 -!- Dmitrii__ [b2426558@gateway/web/freenode/ip.178.66.101.88] has left #bitcoin-core-dev [] 01:10 < kallewoof> Actually travis has 2 windows jobs, and it's the Win32 one that is failing. I'm gonna try that one. 01:11 < wumpus> if it is test_bitcoin, try enabling the verbose output flag 01:11 < wumpus> it logs time taken per test and test suite 01:11 < kallewoof> Ah ok 01:11 < kallewoof> s/failing/taking more than 30 mins for make check/ 01:12 < wumpus> right - makes sense to do that on the environment (travis) where the problem happens, not locally, if you can't reproduce the problem there. It's very possible that it's a problem with trusty's mingw-w64 which is ancient by now :/ 01:12 < wumpus> but some of the tests do take a long time 01:12 -!- jimmysong [~Jimmy@72-48-253-51.dyn.grandenetworks.net] has quit [Read error: Connection reset by peer] 01:12 -!- jimmysong [~Jimmy@72-48-253-51.dyn.grandenetworks.net] has joined #bitcoin-core-dev 01:13 < bitcoin-git> [bitcoin] practicalswift opened pull request #12784: Fix error in memory usage calculation (unintended integer division) (master...calc-error) https://github.com/bitcoin/bitcoin/pull/12784 01:13 < kallewoof> wumpus: I wonder how hard it would be to do a gprof-enabled travis run by just pushing a PR with the yml file updated. Seems straightforward. 01:14 < kallewoof> wumpus: Gotcha on the mingw. If it seems that's a problem maybe we can use a newer version somehow.. 01:16 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:16 -!- anome [~anome@unaffiliated/anome] has quit [] 01:16 < wumpus> I think we should switch gitian building to 18.04 for 0.17 (https://github.com/bitcoin/bitcoin/issues/12511), would be nice to do the same for travis, but I'm not sure that's possible 01:17 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 01:17 < wumpus> are you sure you need gprof if test_bitcoin can do timings itself? 01:22 < kallewoof> wumpus: I wanted to use it to time stuff, but ultimately it's all been running in < 10 mins so no need so far. And probably no need if the problem is in test_bitcoin 01:22 < kallewoof> wumpus: I am crashing on QT tests though, for some reason. Perhaps because I'm running over an ssh connection with no X forwarding. 01:23 < kallewoof> wumpus: Also not sure how travis fixes 'wine prefix for executables'. I had to edit build-aux/test-driver and manually add 'wine' before "$@" line... 01:24 < wumpus> there's something with linux kernel executable format support that automatically redirects executing .exe's to wine 01:25 < kallewoof> ohh ok 01:25 < wumpus> I dn't know how that is configured, though, I remember it being the default with some ubuntu if wine is installed 01:28 < kallewoof> wumpus: Can't imagine it makes a difference but I'll see if I can find it if I don't see the long runtime. 01:31 < sipa> https://en.wikipedia.org/wiki/Binfmt_misc 01:33 < wumpus> ^ yes, that 01:42 < kallewoof> Thanks! 01:53 < bitcoin-git> [bitcoin] practicalswift opened pull request #12785: wallet: Set m_last_block_processed to nullptr in CWallet::SetNull() (master...m_last_block_processed-setnull) https://github.com/bitcoin/bitcoin/pull/12785 01:56 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 01:59 -!- Lynet [~slem@50.199.34.95.customer.cdi.no] has joined #bitcoin-core-dev 02:05 -!- anome [~anome@unaffiliated/anome] has quit [] 02:07 -!- aruns__ [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 02:09 -!- aruns [~indistylo@119.82.105.106] has quit [Ping timeout: 240 seconds] 02:10 -!- ossifrage_ [~ossifrage@unaffiliated/ossifrage] has joined #bitcoin-core-dev 02:12 -!- dafunkiz_ [~dafunkizd@174.127.143.202] has quit [Quit: probably someone interrupted me] 02:13 -!- ossifrage [~ossifrage@unaffiliated/ossifrage] has quit [Ping timeout: 276 seconds] 02:14 -!- Lynet [~slem@50.199.34.95.customer.cdi.no] has quit [Ping timeout: 256 seconds] 02:18 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 02:18 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 02:19 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 02:23 -!- btcdrak [uid236341@gateway/web/irccloud.com/x-cuevgkyprkgkuktf] has joined #bitcoin-core-dev 02:23 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has quit [Ping timeout: 263 seconds] 02:28 -!- sjums [~nick@hurtig.ninja] has quit [Ping timeout: 260 seconds] 02:32 < bitcoin-git> [bitcoin] practicalswift opened pull request #12787: rpc: Adjust ifdef to avoid unreachable code (master...unreachable-code-ifdef-ENABLE_WALLET) https://github.com/bitcoin/bitcoin/pull/12787 02:33 -!- nanotube [~nanotube@unaffiliated/nanotube] has joined #bitcoin-core-dev 02:36 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 02:40 < bitcoin-git> [bitcoin] kallewoof opened pull request #12788: [build] Tune wildcards for LIBSECP256K1 target (master...build-tune-libsecp256k1-wildcards) https://github.com/bitcoin/bitcoin/pull/12788 02:42 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 02:47 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 02:48 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 02:48 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 03:01 -!- Gwen28Boyle [~Gwen28Boy@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 03:13 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 240 seconds] 03:15 < bitcoin-git> [bitcoin] practicalswift opened pull request #12789: Don't return a CExtPubKey filled with junk when DecodeExt{Pub,}Key is given input not passing DecodeBase58Check(...) (master...CExtKey-junk) https://github.com/bitcoin/bitcoin/pull/12789 03:19 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 03:21 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 03:24 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 03:28 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 03:29 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Ping timeout: 240 seconds] 03:31 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 03:34 -!- sjums [~nick@hurtig.ninja] has joined #bitcoin-core-dev 03:40 -!- aruns__ [~indistylo@119.82.105.106] has quit [Ping timeout: 240 seconds] 03:42 -!- jojeyh [~delphi@2602:306:b8b6:b970:906d:ba8b:8d14:7570] has joined #bitcoin-core-dev 03:42 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 03:42 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 03:43 -!- aruns__ [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 03:44 -!- moneyball [~moneyball@52.sub-174-203-15.myvzw.com] has joined #bitcoin-core-dev 03:44 -!- aruns [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 03:45 -!- aruns [~indistylo@119.82.105.106] has quit [Remote host closed the connection] 03:46 -!- aruns [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 03:47 -!- aruns__ [~indistylo@119.82.105.106] has quit [Ping timeout: 240 seconds] 03:54 -!- sjums [~nick@hurtig.ninja] has quit [Ping timeout: 256 seconds] 03:56 -!- belcher [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 04:08 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 04:13 -!- moneyball [~moneyball@52.sub-174-203-15.myvzw.com] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 04:17 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 04:19 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 04:22 -!- Giszmo [~leo@pc-37-38-86-200.cm.vtr.net] has quit [Ping timeout: 240 seconds] 04:23 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 04:24 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has quit [Ping timeout: 264 seconds] 04:29 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 04:31 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Quit: laurentmt] 04:38 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 264 seconds] 04:39 -!- Giszmo [~leo@pc-37-38-86-200.cm.vtr.net] has joined #bitcoin-core-dev 04:52 < bitcoin-git> [bitcoin] jonasschnelli pushed 13 new commits to master: https://github.com/bitcoin/bitcoin/compare/7466a26cab5d...25cf18f239f0 04:52 < bitcoin-git> bitcoin/master 3dba3c3 Luke Dashjr: Qt: Load all wallets into WalletModels 04:52 < bitcoin-git> bitcoin/master e449f9a Luke Dashjr: Qt: Add a combobox to toolbar to select from multiple wallets 04:52 < bitcoin-git> bitcoin/master 85d5319 Luke Dashjr: Qt: Ensure UI updates only come from the currently selected walletView 04:52 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #12610: Multiwallet for the GUI (master...2018/03/multiwallet) https://github.com/bitcoin/bitcoin/pull/12610 04:53 -!- marcoagner [~user@gateway/tor-sasl/marcoagner] has joined #bitcoin-core-dev 04:56 -!- moneyball [~moneyball@2600:1017:b812:1651:7c34:a0f1:44b5:7d46] has joined #bitcoin-core-dev 04:59 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #11383: Basic Multiwallet GUI support (master...multiwallet_gui) https://github.com/bitcoin/bitcoin/pull/11383 05:09 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 05:10 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 05:13 -!- btcdrak [uid236341@gateway/web/irccloud.com/x-cuevgkyprkgkuktf] has quit [Quit: Connection closed for inactivity] 05:17 -!- anome [~anome@unaffiliated/anome] has quit [] 05:21 -!- Gwen28Boyle [~Gwen28Boy@ns334669.ip-5-196-64.eu] has quit [Remote host closed the connection] 05:24 -!- Mervin57Schowalt [~Mervin57S@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 05:31 -!- anome [~anome@unaffiliated/anome] has joined #bitcoin-core-dev 05:33 -!- aruns__ [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 05:35 -!- aruns [~indistylo@119.82.105.106] has quit [Ping timeout: 246 seconds] 05:38 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 240 seconds] 05:38 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 265 seconds] 05:38 -!- ExtraCrispy [~ExtraCris@jh149.perfectdeals.xyz] has joined #bitcoin-core-dev 05:39 -!- belcher [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 05:47 -!- anome [~anome@unaffiliated/anome] has quit [] 05:49 -!- harding [~harding@mail.dtrt.org] has quit [Quit: leaving] 05:50 -!- rex4539 [~textual@ppp-2-87-183-80.home.otenet.gr] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 06:00 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 06:01 -!- aruns [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 06:02 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has quit [Ping timeout: 264 seconds] 06:03 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 256 seconds] 06:03 -!- aruns__ [~indistylo@119.82.105.106] has quit [Ping timeout: 240 seconds] 06:08 -!- shesek [~shesek@5.102.197.11] has joined #bitcoin-core-dev 06:08 -!- shesek [~shesek@5.102.197.11] has quit [Changing host] 06:08 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 06:11 -!- jamesob_ [~jamesob@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #bitcoin-core-dev 06:13 -!- moneyball [~moneyball@2600:1017:b812:1651:7c34:a0f1:44b5:7d46] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 06:22 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 260 seconds] 06:23 < bitcoin-git> [bitcoin] conscott opened pull request #12790: [Tests] Replace deprecated blockmaxsize with blockmaxweight (master...12768_remove_blockmaxsize) https://github.com/bitcoin/bitcoin/pull/12790 06:23 -!- User__ [~User@133-203.dorm.ncu.edu.tw] has quit [Quit: Leaving] 06:24 -!- ken2812221 [~User@133-203.dorm.ncu.edu.tw] has joined #bitcoin-core-dev 06:31 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/25cf18f239f0...ec7dbaa37c23 06:31 < bitcoin-git> bitcoin/master 4757c04 John Newbery: [config] Remove blockmaxsize option... 06:31 < bitcoin-git> bitcoin/master ec7dbaa Wladimir J. van der Laan: Merge #12756: [config] Remove blockmaxsize option... 06:31 < bitcoin-git> [bitcoin] laanwj closed pull request #12756: [config] Remove blockmaxsize option (master...remove_blockmaxsize) https://github.com/bitcoin/bitcoin/pull/12756 06:33 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 06:40 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [] 06:44 -!- moneyball [~moneyball@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #bitcoin-core-dev 06:47 < ken2812221> How can I add the second wallet with 25cf18f ? I don't see any button to create a new wallet 06:53 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 06:55 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-tqbrjjjvfxfqbixg] has joined #bitcoin-core-dev 06:55 < promag> ken2812221: use -wallet argument 06:55 < promag> it's not yet possible to dynamically load/unload wallets 06:56 < promag> for instance bitcoin-qt -regtest -wallet=w1 -walet=w2 06:57 -!- jimmysong [~Jimmy@72-48-253-51.dyn.grandenetworks.net] has quit [Ping timeout: 256 seconds] 06:57 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has quit [Ping timeout: 256 seconds] 07:00 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-vqoulstqjkxoeqen] has quit [Quit: Connection closed for inactivity] 07:01 < ken2812221> promag: thank you 07:04 -!- belcher [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 07:04 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 07:05 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 07:08 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has quit [Ping timeout: 264 seconds] 07:10 * provoostenator compiling master to enjoy multiwallet feature 07:11 -!- marcoagner [~user@gateway/tor-sasl/marcoagner] has quit [Quit: WeeChat 2.0.1] 07:17 -!- provoostenator [~vwDZ2BYsc@mail.sprovoost.nl] has quit [Ping timeout: 276 seconds] 07:19 -!- Krellan [~Krellan@2601:640:4000:9258:7dbb:1cb5:79ba:9d5a] has joined #bitcoin-core-dev 07:19 -!- unholymachine [~quassel@2601:8c:c003:9f16:b085:6622:45eb:1dd7] has joined #bitcoin-core-dev 07:20 -!- provoostenator [~vwDZ2BYsc@mail.sprovoost.nl] has joined #bitcoin-core-dev 07:25 -!- Krellan_ [~Krellan@2601:640:4000:9258:7dbb:1cb5:79ba:9d5a] has joined #bitcoin-core-dev 07:25 -!- aruns [~indistylo@119.82.105.106] has quit [Ping timeout: 240 seconds] 07:26 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 07:26 -!- Krellan [~Krellan@2601:640:4000:9258:7dbb:1cb5:79ba:9d5a] has quit [Read error: Connection reset by peer] 07:26 -!- harding [quassel@2600:3c03::f03c:91ff:fe7b:78d1] has joined #bitcoin-core-dev 07:29 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 276 seconds] 07:40 -!- indistylo [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 07:51 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 08:01 < instagibbs> #12699 seems ready for merge 08:01 < gribble> https://github.com/bitcoin/bitcoin/issues/12699 | [wallet] Shuffle transaction inputs before signing by instagibbs · Pull Request #12699 · bitcoin/bitcoin · GitHub 08:03 < wumpus> instagibbs: thanks 08:04 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 08:08 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has quit [Ping timeout: 260 seconds] 08:10 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/ec7dbaa37c23...c948dc8f4285 08:10 < bitcoin-git> bitcoin/master 2fb9c1e Gregory Sanders: shuffle selected coins before transaction finalization 08:10 < bitcoin-git> bitcoin/master c948dc8 Wladimir J. van der Laan: Merge #12699: [wallet] Shuffle transaction inputs before signing... 08:11 < bitcoin-git> [bitcoin] laanwj closed pull request #12699: [wallet] Shuffle transaction inputs before signing (master...shuffleinputs) https://github.com/bitcoin/bitcoin/pull/12699 08:17 -!- Samdney [~Samdney@37.58.58.246] has joined #bitcoin-core-dev 08:22 < bitcoin-git> [bitcoin] TheBlueMatt opened pull request #12791: Expose a transaction's weight via RPC (master...2018-03-weight) https://github.com/bitcoin/bitcoin/pull/12791 08:24 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has joined #bitcoin-core-dev 08:25 -!- indistylo [~indistylo@119.82.105.106] has quit [Ping timeout: 256 seconds] 08:27 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 08:27 -!- jtimon [~quassel@142.29.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 08:28 -!- Murch [~murch@96.74.120.81] has joined #bitcoin-core-dev 08:29 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Ping timeout: 256 seconds] 08:33 -!- drnet [~drnett@77.119.128.199.wireless.dyn.drei.com] has joined #bitcoin-core-dev 08:34 < sturles> a/away 08:39 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 08:42 -!- Krellan_ [~Krellan@2601:640:4000:9258:7dbb:1cb5:79ba:9d5a] has quit [Remote host closed the connection] 08:42 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has joined #bitcoin-core-dev 08:45 < instagibbs> is there an existing preprocessor ifdef that is only included when --enable-debug is set 08:46 -!- Samdney [~Samdney@37.58.58.246] has quit [Quit: Verlassend] 08:50 < instagibbs> also, is DEBUG_LOCKCONTENTION still a thing? I don't see it set anywhere during config(im automake noob though) 08:53 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Read error: Connection reset by peer] 08:53 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 08:59 < instagibbs> (i answered my first question I think) 08:59 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Quit: laurentmt] 09:01 -!- Dizzle [~dizzle@108.171.182.16] has joined #bitcoin-core-dev 09:03 -!- Samdney [~Samdney@37.58.58.246] has joined #bitcoin-core-dev 09:10 -!- Samdney [~Samdney@37.58.58.246] has quit [Quit: Verlassend] 09:11 < wumpus> yes, -enable-debug enables lock contention debugging,among other things 09:14 -!- karimofthecrop [~karim@172.56.31.48] has joined #bitcoin-core-dev 09:15 -!- stepa[m] [stepamatri@gateway/shell/matrix.org/x-tnspezkzdjlipjrq] has joined #bitcoin-core-dev 09:17 -!- rusuboca [7431b6ec@gateway/web/freenode/ip.116.49.182.236] has quit [Ping timeout: 260 seconds] 09:18 -!- BCBot [~BCBot@46.101.246.115] has quit [Remote host closed the connection] 09:20 -!- drnet [~drnett@77.119.128.199.wireless.dyn.drei.com] has quit [Ping timeout: 256 seconds] 09:20 -!- karimofthecrop [~karim@172.56.31.48] has quit [Ping timeout: 260 seconds] 09:22 -!- karimofthecrop [~karim@172.58.43.202] has joined #bitcoin-core-dev 09:23 < provoostenator> wumpus: #11962 might be ready to merge (it received two more blessings recently) 09:23 < gribble> https://github.com/bitcoin/bitcoin/issues/11962 | [net] add seed.bitcoin.sprovoost.nl to DNS seeds by Sjors · Pull Request #11962 · bitcoin/bitcoin · GitHub 09:23 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 09:24 -!- indistylo [~indistylo@106.51.28.161] has joined #bitcoin-core-dev 09:24 -!- moneyball [~moneyball@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 09:30 -!- BCBot [~BCBot@46.101.246.115] has joined #bitcoin-core-dev 09:30 < provoostenator> I could also use more blessings or feedback on my IBD prune PR: #12404 09:30 < gribble> https://github.com/bitcoin/bitcoin/issues/12404 | Prune more aggressively during IBD by Sjors · Pull Request #12404 · bitcoin/bitcoin · GitHub 09:31 < provoostenator> That one along with a way to turn pruning on in the GUI, preferably at first launch, would make me more excited about 0.17 :-) 09:32 -!- karimofthecrop [~karim@172.58.43.202] has quit [Ping timeout: 240 seconds] 09:33 -!- drnet [~drnett@178.115.131.108.wireless.dyn.drei.com] has joined #bitcoin-core-dev 09:33 -!- drnet [~drnett@178.115.131.108.wireless.dyn.drei.com] has quit [Remote host closed the connection] 09:34 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 09:39 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 09:41 < stepa[m]> Just read the bitcoin whitepaper, and it is so clear and concise! What are the major changes that happened since the paper was written? I believe the Merkle Tree as described is not used anymore in lieu of a Fast Merkle Tree? Are there any other major differences that make the whitepaper outdated? 09:42 < stepa[m]> Also, is transaction pruning implemented in the full node core client by default? 09:43 < provoostenator> stepa[m]: this is more suited for #bitcoin or bitcoin.stackexchange.com 09:44 < provoostenator> As for your second question: pruning is not on by default. 09:44 < AndyS2> stepa[m]: the paper just explains a few basic concepts (important ones), but the code has always done a lot more. Pruning is only an option for a few participants, because you actually need some people to have the whole blockchain to give it to pruning nodes (who can then later delete it after verifying those blocks) 09:46 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 09:46 < stepa[m]> Thanks! Sorry for off-topic 09:48 -!- tryphe_ [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 09:50 -!- moneyball [~moneyball@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #bitcoin-core-dev 09:51 < AndyS2> Because the paper describes just a few basic things, most of what it actually talks about remained the same. but for example, the (2. transactions) part isn't entirely accurate anymore since we mostly use public key hashes as addresses nowadays, so we (often) don't include the public key of the receiver into our transaction anymore 09:52 < AndyS2> I haven't been around very long and I'm not a dev, though, so what has been around how long is hard to know for me with certainty, stepa[m] 09:53 -!- indistylo [~indistylo@106.51.28.161] has quit [Ping timeout: 240 seconds] 09:54 < stepa[m]> Ah, interesting! 09:54 < AndyS2> I can recommend "Mastering Bitcoin", it's freely available online or as a book. It was written in 2017, though, but it does tell you about a few things that were added later on 09:54 -!- qu4ku [~qu4ku@2a01:110f:f73:1b00:7514:bf94:de50:3546] has joined #bitcoin-core-dev 09:55 < AndyS2> maybe someone can chime in on when bitcoin was changed away from IP-Addresses and other weird things to what we mostly use nowadays. I remember reading something about that a long time ago 09:56 < instagibbs> AndyS2, this is #bitcoin talk, please move it there 09:56 < AndyS2> oh, sorry. will do 09:56 < instagibbs> np 09:57 -!- indistylo [~indistylo@106.51.28.161] has joined #bitcoin-core-dev 10:00 -!- rex4539 [~textual@ppp-2-87-183-80.home.otenet.gr] has joined #bitcoin-core-dev 10:01 -!- echonaut [~echonaut@46.101.192.134] has quit [Remote host closed the connection] 10:06 -!- donaloconnor [~quassel@80.111.255.30] has joined #bitcoin-core-dev 10:09 -!- zarez [~Thunderbi@fs-93-93-44-38.fullsave.info] has quit [Ping timeout: 256 seconds] 10:10 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 10:18 -!- donaloconnor [~quassel@80.111.255.30] has quit [Ping timeout: 265 seconds] 10:18 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 10:19 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 10:26 -!- qu4ku [~qu4ku@2a01:110f:f73:1b00:7514:bf94:de50:3546] has quit [Ping timeout: 246 seconds] 10:27 -!- karimofthecrop [~karim@172.58.24.0] has joined #bitcoin-core-dev 10:27 -!- echonaut [~echonaut@46.101.192.134] has joined #bitcoin-core-dev 10:31 -!- karimofthecrop [~karim@172.58.24.0] has quit [Ping timeout: 240 seconds] 10:46 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 256 seconds] 10:48 -!- moneyball [~moneyball@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 10:53 -!- moneyball [~moneyball@67.251.193.154] has joined #bitcoin-core-dev 11:01 -!- freedomcode is now known as reardencode 11:01 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 11:03 -!- dafunkiz_ [~dafunkizd@174.127.143.202] has joined #bitcoin-core-dev 11:03 < bitcoin-git> [bitcoin] skeees opened pull request #12792: Add -disablewalletupdates: resolves #12632 (master...wallet-updates) https://github.com/bitcoin/bitcoin/pull/12792 11:09 -!- mrannanay [uid222022@gateway/web/irccloud.com/x-jniwuhquutjlkzhl] has joined #bitcoin-core-dev 11:10 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 11:17 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 11:19 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 11:20 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 11:20 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 11:23 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 246 seconds] 11:31 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/c948dc8f4285...0a018431c447 11:31 < bitcoin-git> bitcoin/master ffcc687 Sjors Provoost: [net] add seed.bitcoin.sprovoost.nl to DNS seeds 11:31 < bitcoin-git> bitcoin/master 0a01843 Wladimir J. van der Laan: Merge #11962: [net] add seed.bitcoin.sprovoost.nl to DNS seeds... 11:31 < bitcoin-git> [bitcoin] laanwj closed pull request #11962: [net] add seed.bitcoin.sprovoost.nl to DNS seeds (master...dns-seed-sjors) https://github.com/bitcoin/bitcoin/pull/11962 11:37 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 11:41 -!- Dizzle [~dizzle@108.171.182.16] has quit [Quit: Leaving...] 11:42 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 264 seconds] 11:44 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-tqbrjjjvfxfqbixg] has quit [Quit: Connection closed for inactivity] 11:50 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [] 11:50 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 11:51 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 11:52 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 11:52 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 276 seconds] 11:55 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 11:59 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 11:59 < instagibbs> is there a magic incantation I need to do to use multiwallet gui debug console? 12:01 -!- ExtraCrispy [~ExtraCris@jh149.perfectdeals.xyz] has quit [Quit: ExtraCrispy] 12:10 -!- Chris_Stewart_5 [chris@gateway/vpn/privateinternetaccess/chrisstewart5/x-62865615] has quit [Quit: WeeChat 1.4] 12:15 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #12793: qt: Avoid reseting on resetguisettigs=0 (master...Mf1803-qtReset0) https://github.com/bitcoin/bitcoin/pull/12793 12:16 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has quit [Ping timeout: 240 seconds] 12:17 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has joined #bitcoin-core-dev 12:25 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 12:27 < bitcoin-git> [bitcoin] instagibbs opened pull request #12795: do not truncate .dat extension for wallets in gui (master...nowalletprune) https://github.com/bitcoin/bitcoin/pull/12795 12:28 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 256 seconds] 12:33 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-plpkxloxqkcrszzr] has joined #bitcoin-core-dev 12:37 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 12:38 -!- moneyball [~moneyball@67.251.193.154] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 12:39 -!- ossifrage_ is now known as ossifrage 12:41 -!- indistylo [~indistylo@106.51.28.161] has quit [Ping timeout: 240 seconds] 12:42 -!- moneyball [~moneyball@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #bitcoin-core-dev 12:42 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 248 seconds] 12:46 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 12:50 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 12:54 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 12:54 -!- dafunkiz_ [~dafunkizd@174.127.143.202] has quit [Quit: probably someone interrupted me] 12:59 -!- rls [~rls@74.120.222.234] has joined #bitcoin-core-dev 13:00 -!- adiabat [~adiabat@45.63.20.152] has quit [Ping timeout: 240 seconds] 13:02 -!- Aliencorpse [~Aliencorp@2605:a601:b024:600:3d10:4d0e:b5c:b5c4] has quit [Ping timeout: 276 seconds] 13:03 -!- dafunkiz_ [~dafunkizd@174.127.143.202] has joined #bitcoin-core-dev 13:03 -!- ProfMac is now known as ProfMac_ 13:03 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 13:05 -!- adiabat [~adiabat@45.63.20.152] has joined #bitcoin-core-dev 13:05 -!- Aliencorpse [~Aliencorp@2605:a601:b024:600:3d10:4d0e:b5c:b5c4] has joined #bitcoin-core-dev 13:07 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 13:27 -!- jb551 [~jb55@S010660e327dca171.vc.shawcable.net] has joined #bitcoin-core-dev 13:27 < jnewbery> wumpus: is contrib/testgen/gen_base58_testvectors.py still used? I can't see where the output files base58_keys_valid.json are used anywhere 13:28 -!- jb551 [~jb55@S010660e327dca171.vc.shawcable.net] has quit [Client Quit] 13:29 < jnewbery> ah, they were renamed in 92f1f8b3197c2ba3cf65556070509838098975a4 . Question remains: is gen_base58_testvectors.py required? 13:34 < wumpus> I can't find any gen_base58_testvectors.py, is it supposed to be in the main repo? 13:34 < wumpus> (ah, ./contrib/testgen/gen_base58_test_vectors.py) 13:35 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 13:35 < wumpus> it was used to generate the json file for the tests, I think it's useful in case the format needs to change for some reason, or tests are to be added/removed 13:35 < wumpus> in that regard it's similar to the generation for the script and transaction tests 13:36 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 13:36 < wumpus> to be able to regenerate if e.g. if a new kind of base58-encoded data is added, the version byte is changed, etc 13:36 < wumpus> it doesn't hurt to keep it around 13:36 -!- dafunkiz_ [~dafunkizd@174.127.143.202] has quit [Quit: probably someone interrupted me] 13:39 < jnewbery> ok, it's python2 only. I was going to include it in #11881, but it doesn't seem worth updating 13:39 < gribble> https://github.com/bitcoin/bitcoin/issues/11881 | [contrib] Remove Python2 support by jnewbery · Pull Request #11881 · bitcoin/bitcoin · GitHub 13:40 < wumpus> right, if you don't feel like updating it, then don't 13:41 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 248 seconds] 13:43 -!- donaloconnor [~quassel@80.111.255.30] has joined #bitcoin-core-dev 13:45 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 13:46 -!- jamesob__ [~jamesob@static-100-38-11-146.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 13:48 -!- jamesob_ [~jamesob@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Ping timeout: 240 seconds] 13:50 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 240 seconds] 13:51 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 13:57 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 13:59 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has joined #bitcoin-core-dev 13:59 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 14:01 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 14:07 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #12797: init: Fix help message for checkblockindex (master...Mf1803-initHelpCheckBlockIndex) https://github.com/bitcoin/bitcoin/pull/12797 14:12 -!- ProfMac_ is now known as ProfMac 14:12 -!- qu4ku [~qu4ku@2a01:110f:f73:1b00:3cd3:4179:df7d:4827] has joined #bitcoin-core-dev 14:16 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 14:18 -!- qu4ku_ [~qu4ku@2a01:110f:f73:1b00:bc42:117e:5f28:4bad] has joined #bitcoin-core-dev 14:19 -!- qu4ku [~qu4ku@2a01:110f:f73:1b00:3cd3:4179:df7d:4827] has quit [Ping timeout: 246 seconds] 14:20 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 14:22 -!- qu4ku_ [~qu4ku@2a01:110f:f73:1b00:bc42:117e:5f28:4bad] has quit [Ping timeout: 246 seconds] 14:28 -!- mrannanay [uid222022@gateway/web/irccloud.com/x-jniwuhquutjlkzhl] has quit [Quit: Connection closed for inactivity] 14:31 -!- Dizzle [~dizzle@108.171.182.16] has joined #bitcoin-core-dev 14:33 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #12798: doc: Refer to witness reserved value as spec. in the BIP (master...Mf1803-docWitnessReservedValue) https://github.com/bitcoin/bitcoin/pull/12798 14:37 < promag> Regarding #12632 14:38 < gribble> https://github.com/bitcoin/bitcoin/issues/12632 | Add a way to skip rescanning on startup · Issue #12632 · bitcoin/bitcoin · GitHub 14:38 < promag> what prevents calling `dumpwallet`? 14:39 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has quit [Ping timeout: 240 seconds] 14:39 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has quit [Quit: probably someone interrupted me] 14:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 14:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 14:47 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has joined #bitcoin-core-dev 14:47 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-zcdotzctlmdmvpht] has joined #bitcoin-core-dev 15:05 -!- Murch [~murch@96.74.120.81] has quit [Quit: Snoozing.] 15:10 -!- donaloconnor [~quassel@80.111.255.30] has quit [Ping timeout: 240 seconds] 15:11 -!- rls [~rls@74.120.222.234] has quit [Ping timeout: 240 seconds] 15:11 -!- shesek [~shesek@bzq-84-110-232-249.cablep.bezeqint.net] has joined #bitcoin-core-dev 15:11 -!- shesek [~shesek@bzq-84-110-232-249.cablep.bezeqint.net] has quit [Changing host] 15:11 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 15:14 -!- moneyball [~moneyball@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 15:16 -!- suldev [~suldev@pool-108-52-119-134.phlapa.fios.verizon.net] has joined #bitcoin-core-dev 15:31 -!- TheV01d [thev01d@btc.mining.ga] has quit [Ping timeout: 265 seconds] 15:32 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Excess Flood] 15:33 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #bitcoin-core-dev 15:33 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has quit [Quit: probably someone interrupted me] 15:43 -!- jamesob__ [~jamesob@static-100-38-11-146.nycmny.fios.verizon.net] has quit [Ping timeout: 256 seconds] 15:48 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has joined #bitcoin-core-dev 15:50 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has joined #bitcoin-core-dev 15:54 -!- rex4539 [~textual@ppp-2-87-183-80.home.otenet.gr] has quit [Quit: Textual IRC Client: www.textualapp.com] 15:56 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has quit [Quit: probably someone interrupted me] 16:00 -!- rex4539 [~textual@ppp-2-87-183-80.home.otenet.gr] has joined #bitcoin-core-dev 16:00 -!- rex4539 [~textual@ppp-2-87-183-80.home.otenet.gr] has quit [Client Quit] 16:02 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Quit: laurentmt] 16:05 -!- booyah [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 16:05 -!- booyah [~bb@193.25.1.157] has joined #bitcoin-core-dev 16:08 -!- Dizzle [~dizzle@108.171.182.16] has quit [Ping timeout: 256 seconds] 16:09 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has joined #bitcoin-core-dev 16:10 -!- booyah [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 16:10 -!- booyah [~bb@193.25.1.157] has joined #bitcoin-core-dev 16:14 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has quit [Quit: probably someone interrupted me] 16:14 -!- booyah [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 16:15 -!- booyah [~bb@193.25.1.157] has joined #bitcoin-core-dev 16:17 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has joined #bitcoin-core-dev 16:18 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 260 seconds] 16:24 -!- dafunkiz_ [~dafunkizd@209.63.143.172] has quit [Quit: probably someone interrupted me] 16:39 -!- Murch [~murch@64-71-8-130.static.wiline.com] has joined #bitcoin-core-dev 16:39 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 16:43 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 16:44 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 16:48 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 248 seconds] 16:50 -!- mryandao [~mryandao@unaffiliated/mryandao] has joined #bitcoin-core-dev 16:50 -!- Murch [~murch@64-71-8-130.static.wiline.com] has quit [Quit: Snoozing.] 16:55 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has quit [Quit: drexl] 16:56 -!- moneyball [~moneyball@rrcs-208-105-57-183.nyc.biz.rr.com] has joined #bitcoin-core-dev 16:59 -!- Murch [~murch@64-71-8-130.static.wiline.com] has joined #bitcoin-core-dev 17:00 -!- weez17 [~isaac@unaffiliated/weez17] has quit [Read error: Connection reset by peer] 17:00 -!- weez17 [~isaac@unaffiliated/weez17] has joined #bitcoin-core-dev 17:05 -!- karimofthecrop [~karim@172.56.40.141] has joined #bitcoin-core-dev 17:10 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-zcdotzctlmdmvpht] has quit [] 17:10 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-aigvimwrorjcdkks] has joined #bitcoin-core-dev 17:12 < meshcollider> promag: perhaps nothing since #11281 ? 17:12 < gribble> https://github.com/bitcoin/bitcoin/issues/11281 | Avoid permanent cs_main/cs_wallet lock during RescanFromTime by jonasschnelli · Pull Request #11281 · bitcoin/bitcoin · GitHub 17:12 < meshcollider> haven't tested though 17:25 -!- Murch [~murch@64-71-8-130.static.wiline.com] has quit [Quit: Snoozing.] 17:41 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 17:44 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 17:46 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 17:47 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 264 seconds] 18:06 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 18:07 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Client Quit] 18:07 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 18:08 -!- harrymm [~harrymm@104.207.83.30] has quit [Ping timeout: 256 seconds] 18:10 -!- moneyball [~moneyball@rrcs-208-105-57-183.nyc.biz.rr.com] has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…] 18:10 -!- belcher [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 18:21 -!- harrymm [~harrymm@104.207.83.2] has joined #bitcoin-core-dev 18:41 -!- cluelessperson [~cluelessp@unaffiliated/cluelessperson] has quit [Quit: Laters] 18:46 -!- vicenteH [~user@35.233.15.37.dynamic.jazztel.es] has quit [Read error: Connection reset by peer] 18:46 -!- karimofthecrop [~karim@172.56.40.141] has quit [Ping timeout: 260 seconds] 19:07 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has quit [Remote host closed the connection] 19:12 -!- instagibbs [~instagibb@pool-100-15-128-78.washdc.fios.verizon.net] has quit [Ping timeout: 246 seconds] 19:37 -!- cryptojanitor [uid278088@gateway/web/irccloud.com/x-aigvimwrorjcdkks] has quit [Quit: Connection closed for inactivity] 19:50 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 20:18 -!- tryphe_ is now known as tryphe 20:32 < jtimon> should we log blocks that are consensus invalid but still have valid proof of work in a special way? (ie with admiration marks and with the full hex so that is not so easily forgotten) 20:33 < jtimon> is there an archive of invalid blocks that have valid pow ? (new bhardfork wave aside, perhaps) 20:40 < jtimon> disclaimer (perhaps offtopic): this comes to mind because in the case of signed blocks in elements, the result shouldn't be a some mining pool be mocked if it's one or people getting worried about an attack on spv nodes if there are many in a row, your node should simply stop to see what's up with the signers 20:41 < jtimon> s/stop to see/stop. To see/ 21:00 < jtimon> last offtopic comment, the code is here for elements-0.14 https://github.com/ElementsProject/elements/pull/324 but perhaps I could do the logging thing for bitcoin if there's interest 21:03 < aj> jtimon: getchaintips gives you a log of invalid blocks with plausible proof of work, doesn't it? 21:03 < jtimon> aj: I don't know, I will look into that, thanks 21:03 < aj> jtimon: i see 00000000000000000014c1ee89b61a84e3e30dd9b2c78c9916d323a2775bc613 00000000000000000027894f0969c2f79a6cdb1231750e048effbd17c88da431 and 000000000000000000571c2b98a090c15774cb7400bd4a50b160d488d14055d0 as fairly recent blocks marked invalid... 21:05 < jtimon> and do they pass validation:CheckBlockHeader() ? 21:06 < jtimon> let me rephrase, what do you mean by "plausible" proof of work? isn't that rule a boolean like any other? you pass it or not? 21:07 < jtimon> anyway, thanks again 21:07 < aj> jtimon: "plausible" == "i'm not sure what's going on" :) you're probably right 21:08 < jtimon> either way I thank you for making me grep getchaintips, I didn't know that existed :) 21:08 < aj> hmm, maybe leaving debug=mempool on was a mistake 21:11 < aj> okay, that first block came through via a compactblock, got reconstructed successfully, but was then considered invalid due to CheckTxInputs, inputs missing/spent 21:11 < jtimon> I feel ashamed of not knowing getchaintips 21:12 < aj> jtimon: i feel glad i could tell you something new, though :) 21:17 < jtimon> aj: I mean, the shame passes fast, now I'm happy I learned something new potentially useful for an explorer 21:18 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 21:19 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has quit [Client Quit] 21:19 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 21:20 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 276 seconds] 21:23 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-plpkxloxqkcrszzr] has quit [Quit: Connection closed for inactivity] 21:32 -!- indistylo [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 21:39 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 21:41 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 21:43 -!- rex4539 [~textual@2a02:587:3514:8600:c552:be68:df5c:182c] has joined #bitcoin-core-dev 21:45 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 21:46 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has quit [Ping timeout: 276 seconds] 21:59 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 22:08 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has quit [Ping timeout: 264 seconds] 22:09 -!- karimofthecrop [~karim@rrcs-76-80-21-234.west.biz.rr.com] has joined #bitcoin-core-dev 22:24 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 22:26 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 22:29 -!- dafunkiz_ [~dafunkizd@172.92.143.143] has joined #bitcoin-core-dev 22:31 -!- suldev [~suldev@pool-108-52-119-134.phlapa.fios.verizon.net] has quit [Ping timeout: 260 seconds] 22:38 -!- aruns [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 22:41 -!- indistylo [~indistylo@119.82.105.106] has quit [Ping timeout: 276 seconds] 22:49 < bitcoin-git> [bitcoin] practicalswift closed pull request #12781: Don't test size_t variables for negative values (master...–size_t) https://github.com/bitcoin/bitcoin/pull/12781 22:49 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 240 seconds] 22:55 -!- aruns__ [~indistylo@119.82.105.106] has joined #bitcoin-core-dev 22:57 -!- aruns [~indistylo@119.82.105.106] has quit [Ping timeout: 240 seconds] 23:03 < jojeyh> for segwit txs, when the client list transactions should there be a field for "wtxid" ? 23:04 < jojeyh> like when i enter 'bitcoin-cli listtransactions' 23:10 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/0a018431c447...f4353daa61f4 23:10 < bitcoin-git> bitcoin/master 3a0f8d7 practicalswift: Qt: Remove unused method setupAmountWidget(...) 23:10 < bitcoin-git> bitcoin/master f4353da Wladimir J. van der Laan: Merge #12779: Qt: Remove unused method setupAmountWidget(...)... 23:11 < bitcoin-git> [bitcoin] laanwj closed pull request #12779: Qt: Remove unused method setupAmountWidget(...) (master...remove-unused-function-setupAmountWidget) https://github.com/bitcoin/bitcoin/pull/12779 23:14 -!- booyah [~bb@193.25.1.157] has quit [Ping timeout: 260 seconds] 23:24 < bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/f4353daa61f4...17b246f4b3f5 23:24 < bitcoin-git> bitcoin/master 342fb80 MarcoFalke: qt: Avoid resetting on resetguisettigs=0 23:24 < bitcoin-git> bitcoin/master 17b246f Wladimir J. van der Laan: Merge #12793: qt: Avoid reseting on resetguisettigs=0... 23:25 -!- grafcaps [~haroldbr@50.90.83.229] has joined #bitcoin-core-dev 23:25 < bitcoin-git> [bitcoin] laanwj closed pull request #12793: qt: Avoid reseting on resetguisettigs=0 (master...Mf1803-qtReset0) https://github.com/bitcoin/bitcoin/pull/12793 23:29 -!- dafunkiz_ [~dafunkizd@172.92.143.143] has quit [Quit: probably someone interrupted me] 23:30 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 265 seconds] 23:38 -!- Mervin57Schowalt [~Mervin57S@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 264 seconds]