--- Log opened Mon Feb 08 00:00:23 2021 00:03 -!- da39a3ee5e6b4b0d [~da39a3ee5@2403:6200:8876:8dc5:2885:a349:760f:ef8c] has joined #bitcoin-core-dev 00:06 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Remote host closed the connection] 00:06 -!- vasild [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 00:18 < shesek> what would you estimate to be a 'reasonable' upper bound for the time it should take bitcoind to shutdown cleanly? 00:18 < shesek> say, with a large dbcache and lots of flushing to do; or on something without much memory/ram like a raspberry 00:19 < sipa> i wouldn't be surprised if can find pathological situations (huge dbcache, slow spinning disk connected over USB2) where it takes an hour 00:21 < sipa> that's a very rough guess though, haven't really soon anything like that; several minutes i've seen 00:21 < shesek> I've personally seen 15-20 minutes, when I shutdown right after finishing IBD 00:22 < shesek> I'm configuring an init system to forcibly kill bitcoind if exiting takes too long, was thinking to give it like 30 minutes but an hour works too 00:23 < sipa> probably better to actually try rather than rely on my vague guess :) 00:24 < shesek> its a (yet another) easy node setup thing, I can't tell what specs users are going to run this on so kinda hard to have a good estimate for this 00:25 < shesek> its also a really edge-casey thing, I might never run into a long shutdown when I try 00:25 < sipa> "look man, i'm really offended that you discriminate against full nodes running on fridges" 00:27 < shesek> :) 00:27 * fanquake can't wait for bitcoind on a toaster 00:27 < shesek> what about startup? how long would you give `bitcoin-cli -rpcwait` to try before realizing its not going to happen? 00:28 < shesek> would be useful if bitcoin-cli had a timeout argument btw. I'm using the `timeout` program as a workaround 00:28 < sipa> if on the same kind of system, you crash during a very slow flush right after IBD, i think it may take even longer 00:28 < sipa> -rpcclienttimeout ? 00:29 < shesek> oh, I didn't realize this worked with -rpcwait 00:29 < shesek> isn't this the timeout for HTTP requests, while -rpcwait will be waiting without doing an http request while bitcoind is warming up? 00:29 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 00:30 < sipa> i don't know 00:30 < shesek> what does rpcwait do exactly? waits for the cookie file to appear? 00:33 < fanquake> it tries to construct a request, and if an exception is thrown, it waits 00:49 < shesek> what is the worse that can happen if I use someone else's datadir (a la prunednode.today)? 00:49 < shesek> obviously I can be led to follow an invalid chain and accept non-existing coins. but will bitcoind be internally consistent? could I inspect its state via the RPC and have any assurances of what I see? say, if I check that the hash of the tip and the utxo set matches a trusted source, should this give me confidence that the datadir is valid? 00:49 < shesek> I guess there's also some potential for things like buffer overflows that might escalate into code execution, but probably not very likely? 00:51 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 00:51 < sipa> shesek: if the data is entirely untrusted, i wouldn't vouch for lack of buffer overflows etc 00:53 -!- asdlkfjwerpoicvx [~flack@p200300d46f24de00f79152924510b967.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 00:54 < shesek> and other than things like buffer overflow? 00:55 < shesek> to what extend do the sanity checks that bitcoind performs on startup give me assurance against inconsistent state? 00:58 < sipa> you really shouldn't work with untrusted local storage 00:59 < shesek> well, I don't use these things myself, but some people do. btcpay has a fastsync-by-copying-the-datadir option, and prunednode.today is also gaining popularity, I think typically alongside specter 00:59 < shesek> I'm trying to better understand the risk model this has 01:00 < sipa> :( 01:00 < sipa> tell them to not do that :( 01:01 < sipa> i mean... if you're getting the software bundled from a particular source, then it doesn't matter that the rest of the data also comes from that source of course 01:02 < shesek> not quite the same though, software is auditable by humans, a binary blob isn't 01:02 < sipa> but it'd be a lot nicer if people would help out with getting assumeutxo to move forward instead of workarounds that introduce central points of trust 01:07 -!- jungnam [~jungnam@s91904426.blix.com] has quit [Remote host closed the connection] 01:08 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:08 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/8636288db130...e51f6c4dee3d 01:08 < bitcoin-git> bitcoin/master 32cbb06 Dan Benjamin: build: build fuzz tests by default. 01:08 < bitcoin-git> bitcoin/master e51f6c4 MarcoFalke: Merge #20936: build: build fuzz tests by default 01:08 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:09 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:09 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #20936: build: build fuzz tests by default (master...build-fuzz-tests-by-default) https://github.com/bitcoin/bitcoin/pull/20936 01:09 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:13 < shesek> I agree, but these are not necessarily the same people... the btcpay devs are doing what they can within constraints to make full nodes more accessible 01:13 < shesek> its a tricky thing though. introducing more accessible middlegrounds - be it SPV validation, assumevalid, assumeutxo, client-side block filtering, datadir snapshot fastsync, whatever - can win you some people that would otherwise use worse entirely centralized solutions, but on the flip side can also encourage people who would otherwise have a fully-verified full node to be lazy and go for the easier middleground 01:13 < shesek> its really hard to say if introducing a middleground option is going to do more good or more harm 01:18 -!- jaubarvi [43daf5e9@67.218.245.233] has joined #bitcoin-core-dev 01:22 -!- narodism [narodnik@gateway/vpn/privateinternetaccess/narodism] has quit [Ping timeout: 256 seconds] 01:32 < wumpus> luke-jr: anything wrong with https://github.com/bitcoinknots/gitian.sigs/pull/15 ? 01:40 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:40 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/e51f6c4dee3d...c969ab43c388 01:40 < bitcoin-git> bitcoin/master 0d39b58 Bruno Garcia: test: fix timeout decrease in feature_assumevalid 01:40 < bitcoin-git> bitcoin/master c969ab4 MarcoFalke: Merge #21084: test: fix timeout decrease in feature_assumevalid 01:40 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:40 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:40 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #21084: test: fix timeout decrease in feature_assumevalid (master...fix-timeout-assumevalid) https://github.com/bitcoin/bitcoin/pull/21084 01:40 -!- sr_gi [~sr_gi@static-125-62-230-77.ipcom.comunitel.net] has quit [Read error: Connection reset by peer] 01:40 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:41 -!- sr_gi [~sr_gi@static-125-62-230-77.ipcom.comunitel.net] has joined #bitcoin-core-dev 01:43 < shesek> I'm contemplating whether I should support datadir-snapshot-based fastsync in my easy node setup thing (a bundle of bitcoind, bwt electrum server and a few other programs). I'm fairly certain that it would get more people to use it, people that would otherwise be using public electrum servers. a node initiated from someone else's datadir would be a step up for them, as unideal as it is >.< 01:45 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:46 < bitcoin-git> [bitcoin] MarcoFalke pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/c969ab43c388...ca85449f22cb 01:46 < bitcoin-git> bitcoin/master 5baff2b fanquake: build: use focal in gitian descriptors 01:46 < bitcoin-git> bitcoin/master 2ecaf21 fanquake: gitian: remove execstack workaround for ricv64 & powerpc64le 01:46 < bitcoin-git> bitcoin/master ca85449 MarcoFalke: Merge #21036: gitian: Bump descriptors to Focal for 22.0 01:46 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:46 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:46 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #21036: gitian: Bump descriptors to Focal for 22.0 (master...gitian_bump_22_0) https://github.com/bitcoin/bitcoin/pull/21036 01:46 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:46 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:46 < bitcoin-git> [bitcoin] fanquake opened pull request #21110: util: remove Boost posix_time usage from GetTime* (master...no_boost_gettime) https://github.com/bitcoin/bitcoin/pull/21110 01:47 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:47 < wumpus> MarcoFalke: #21036 wasn't deterministic yet 01:47 < gribble> https://github.com/bitcoin/bitcoin/issues/21036 | gitian: Bump descriptors to Focal for 22.0 by fanquake · Pull Request #21036 · bitcoin/bitcoin · GitHub 01:48 < wumpus> not sure if that needs to be a requirement for merge but i guess it's important to doing releases 01:48 < fanquake> wumpus: I'll be following up 01:48 < wumpus> shesek: technically, copying someone elses's data directory is much more efficient, the whole, social, difficulty is chosing the 'someone else' is this case 01:51 < wumpus> shesek: these kind of proposals are as old as bitcoin itself but i don't think anyone ever solved the 'who to trust' issue, how can you have infrastructure that gives you a reasonable confidence in that a certain validation is correct, like you can probably just copy a friend's node and trust them but yo udefinitely don't want to YOLO it off the internet 01:53 < wumpus> in any case jamesob 's "assumevalid" work provides the technical infrastructure to handle this case better 01:55 < wumpus> fanquake: thanks, does it still make sense for me to upload the differing binaries? 01:55 < fanquake> wumpus: sure, if it's not too hard. I'll do some comparisons 01:57 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has joined #bitcoin-core-dev 01:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:58 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/ca85449f22cb...b401b093556f 01:58 < bitcoin-git> bitcoin/master 9913419 fanquake: test: remove type: comments in favour of actual annotations 01:58 < bitcoin-git> bitcoin/master b401b09 MarcoFalke: Merge #21107: test: remove type: comments in favour of actual annotations 01:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 01:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 01:58 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #21107: test: remove type: comments in favour of actual annotations (master...just_use_typing_directly) https://github.com/bitcoin/bitcoin/pull/21107 01:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 02:01 -!- narodism [~narodnik@37.223.80.136] has joined #bitcoin-core-dev 02:06 -!- narodism [~narodnik@37.223.80.136] has quit [Ping timeout: 240 seconds] 02:08 -!- narodism [~narodnik@37.223.80.136] has joined #bitcoin-core-dev 02:13 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Read error: Connection reset by peer] 02:15 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 02:21 < wumpus> fanquake: it's trivial (just need to re-do some runs because the result has been overwritten, well anyway a good test for local determinsism) but was distracted by FOSDEM this weekend 02:22 < sipa> how was it? 02:22 < sipa> (fosdem) 02:26 -!- jonatack_ [~jon@37.166.114.84] has joined #bitcoin-core-dev 02:27 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Disconnected by services] 02:27 -!- vasild_ [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 02:27 -!- vasild_ is now known as vasild 02:29 < wumpus> interesting! highlights for me were RISC-V/secure architectures (CheriBSD was interesting, a POSIX veriant using pointer capabilities for memory safety throughout), overlay networks and P2P (point of note for me was "yggdrasil" which is inspired by CJDNS but does some things differently), open source CAD tools, and update about openwifi (open software/hardware wifi) 02:32 < wumpus> also something about standards, proposed architectures for libre Trusted Execution Environments / key storage modules, anyhow i live-tooted a few things on my mastodon https://x0f.org/@orionwl might be a few interesting links 02:35 < sipa> wumpus: did you ever attend fosdem in person? 02:36 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 02:36 < bitcoin-git> [bitcoin] parazyd opened pull request #21111: Improve OpenRC initscript (master...openrc-init-improve) https://github.com/bitcoin/bitcoin/pull/21111 02:36 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 02:37 < wumpus> sipa: no haven't 02:37 < wumpus> plenty of times i intended to go but didn't or couldn't for reasons i guess it's off the table now 02:38 -!- jaubarvi [43daf5e9@67.218.245.233] has quit [Quit: Ping timeout (120 seconds)] 02:39 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 02:39 < bitcoin-git> [bitcoin] fanquake opened pull request #21112: ci: use Focal for macOS and Win cross builds (master...actually_use_focal_in_cirrus_ci) https://github.com/bitcoin/bitcoin/pull/21112 02:39 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 02:42 < sipa> wumpus: i did, but it's been a long time 02:42 < sipa> 2005 mayve 02:43 < sipa> it's kind of underwhelming, but exactly what you expect from a free (as in beer) event organized by foss people :) 02:45 -!- jonatack_ [~jon@37.166.114.84] has quit [Read error: Connection reset by peer] 02:49 -!- gleb [~gleb@178.150.137.228] has joined #bitcoin-core-dev 02:49 < emzy> Will there be recordigs from FOSDEM? I missed most of Sunday. 02:53 < wumpus> sipa: heh, that's also the idea i get from it, but i kind of like the ad-hoc ness, really aimed at fostering discussion and cooperation instead of 'here, this is my work, bye' that was mostly my impression from academic conferences 02:53 < wumpus> emzy: yes the videos will be posted soon(TM) 02:54 < wumpus> emzy: will be https://video.fosdem.org/2021/ 02:54 < emzy> wumpus: cool, tnx. 02:57 -!- jaubarvi [43daf5e9@67.218.245.233] has joined #bitcoin-core-dev 03:09 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Remote host closed the connection] 03:10 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has joined #bitcoin-core-dev 03:10 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has quit [Read error: Connection reset by peer] 03:11 -!- Randolf [~randolf@184.70.10.188] has quit [Quit: Leaving] 03:14 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has joined #bitcoin-core-dev 03:15 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has quit [Remote host closed the connection] 03:16 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has joined #bitcoin-core-dev 03:18 -!- Eugenia53Cumming [~Eugenia53@static.57.1.216.95.clients.your-server.de] has joined #bitcoin-core-dev 03:18 -!- ishaqm_ [~ishaqm@host-92-26-27-102.as13285.net] has joined #bitcoin-core-dev 03:19 -!- Guyver2_ [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 03:20 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has quit [Ping timeout: 240 seconds] 03:22 -!- Guyver2 [Guyver@guyver2.xs4all.nl] has quit [Ping timeout: 276 seconds] 03:24 -!- openoms [~quassel@91.132.136.76] has quit [Read error: Connection reset by peer] 03:24 -!- openoms [~quassel@91.132.136.76] has joined #bitcoin-core-dev 03:26 -!- promag [~promag@188.250.84.129] has quit [Remote host closed the connection] 03:27 -!- ishaqm_ [~ishaqm@host-92-26-27-102.as13285.net] has quit [Remote host closed the connection] 03:27 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has joined #bitcoin-core-dev 03:31 -!- ishaqm_ [~ishaqm@host-92-26-27-102.as13285.net] has joined #bitcoin-core-dev 03:32 -!- Eugenia53Cumming [~Eugenia53@static.57.1.216.95.clients.your-server.de] has quit [Ping timeout: 240 seconds] 03:32 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has quit [Ping timeout: 240 seconds] 03:33 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 03:36 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Ping timeout: 268 seconds] 03:37 -!- ishaqm_ [~ishaqm@host-92-26-27-102.as13285.net] has quit [Ping timeout: 246 seconds] 03:37 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has joined #bitcoin-core-dev 03:38 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has joined #bitcoin-core-dev 03:41 -!- jonatack_ [~jon@37.166.147.52] has joined #bitcoin-core-dev 04:01 -!- ishaqm_ [~ishaqm@host-92-18-90-93.as13285.net] has joined #bitcoin-core-dev 04:03 -!- ishaqm [~ishaqm@host-92-26-27-102.as13285.net] has quit [Ping timeout: 240 seconds] 04:08 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 04:08 < bitcoin-git> [bitcoin] domob1812 opened pull request #21114: Deduplicate some block-to-JSON code (master...getblock-dedup) https://github.com/bitcoin/bitcoin/pull/21114 04:08 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 04:28 -!- jonatack_ [~jon@37.166.147.52] has quit [Read error: Connection reset by peer] 04:28 -!- jonatack_ [~jon@37.166.147.52] has joined #bitcoin-core-dev 04:45 -!- Guyver2__ [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 04:46 -!- jonatack_ [~jon@37.166.147.52] has quit [Read error: Connection reset by peer] 04:47 -!- jonatack_ [~jon@37.166.114.84] has joined #bitcoin-core-dev 04:47 -!- jonatack_ [~jon@37.166.114.84] has quit [Read error: Connection reset by peer] 04:47 -!- jonatack_ [~jon@37.166.147.52] has joined #bitcoin-core-dev 04:47 -!- Guyver2_ [Guyver@guyver2.xs4all.nl] has quit [Ping timeout: 264 seconds] 04:48 -!- jonatack_ [~jon@37.166.147.52] has quit [Read error: Connection reset by peer] 04:48 -!- jonatack_ [~jon@37.166.114.84] has joined #bitcoin-core-dev 04:50 -!- jonatack_ [~jon@37.166.114.84] has quit [Read error: Connection reset by peer] 04:51 -!- jonatack_ [~jon@37.166.147.52] has joined #bitcoin-core-dev 04:52 -!- jonatack_ [~jon@37.166.147.52] has quit [Read error: Connection reset by peer] 04:52 -!- jonatack_ [~jon@37.166.114.84] has joined #bitcoin-core-dev 04:53 -!- jonatack_ [~jon@37.166.114.84] has quit [Client Quit] 04:54 -!- jonatack [~jon@37.166.147.52] has joined #bitcoin-core-dev 04:57 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-core-dev 04:59 -!- Emcy_ [~Emcy@unaffiliated/emcy] has quit [Ping timeout: 265 seconds] 05:07 -!- narodism [~narodnik@37.223.80.136] has quit [Ping timeout: 256 seconds] 05:07 -!- narodism [narodnik@gateway/vpn/privateinternetaccess/narodism] has joined #bitcoin-core-dev 05:12 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 05:12 < bitcoin-git> [bitcoin] hebasto opened pull request #21115: test: Fix Windows cross build (master...210208-win) https://github.com/bitcoin/bitcoin/pull/21115 05:12 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 05:14 -!- jaubarvi [43daf5e9@67.218.245.233] has quit [Quit: Connection closed] 05:22 -!- belcher_ is now known as belcher 05:25 -!- da39a3ee5e6b4b0d [~da39a3ee5@2403:6200:8876:8dc5:2885:a349:760f:ef8c] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 05:26 -!- Jackielove4u [uid43977@gateway/web/irccloud.com/x-fbrpvvksdhpwfpai] has quit [Read error: Connection reset by peer] 05:26 -!- nejon [sid38993@gateway/web/irccloud.com/x-qfvqhbthsevgepbp] has quit [Ping timeout: 240 seconds] 05:27 -!- ajonas [sid385278@gateway/web/irccloud.com/x-ywrjihwxueudgghe] has quit [Read error: Connection reset by peer] 05:27 -!- wangchun [sid444603@gateway/web/irccloud.com/x-jhisperlklrsryzq] has quit [Ping timeout: 258 seconds] 05:27 -!- jamesob [sid180710@gateway/web/irccloud.com/x-hvdlyabjxjlicyob] has quit [Ping timeout: 265 seconds] 05:27 -!- fanquake [sid369002@gateway/web/irccloud.com/x-fabjqugvqpcyhsnz] has quit [Read error: Connection reset by peer] 05:27 -!- fjahr [sid374480@gateway/web/irccloud.com/x-dqspzugbuztizvad] has quit [Ping timeout: 272 seconds] 05:27 -!- eragmus [sid136308@gateway/web/irccloud.com/x-xuojjdcncxvkqvme] has quit [Read error: Connection reset by peer] 05:27 -!- felixweis [sid154231@gateway/web/irccloud.com/x-sqzrqmsjedkmcfno] has quit [Read error: Connection reset by peer] 05:27 -!- robot-dreams_ [sid463268@gateway/web/irccloud.com/x-asrfzqdbmhatkwab] has quit [Read error: Connection reset by peer] 05:27 -!- hsmiths [uid95325@gateway/web/irccloud.com/x-xmwdjmunyuyvdzmc] has quit [Read error: No route to host] 05:27 -!- prusnak [sid403625@gateway/web/irccloud.com/x-mzyynxklwhxatlbs] has quit [Read error: Connection reset by peer] 05:27 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-ecnevpgerhrrvsyo] has quit [Read error: Connection reset by peer] 05:27 -!- michagogo_ [sid14316@wikia/Michagogo] has quit [Read error: Connection reset by peer] 05:27 -!- endogenic [sid145991@gateway/web/irccloud.com/x-ffeeckwhymrxveqd] has quit [Read error: Connection reset by peer] 05:27 -!- mariorz [sid490@gateway/web/irccloud.com/x-lpjfxtjuyltkgexi] has quit [Write error: Connection reset by peer] 05:27 -!- bosma [sid103570@gateway/web/irccloud.com/x-nmjverzikeizgucz] has quit [Read error: Connection reset by peer] 05:27 -!- wangchun_ [uid444603@gateway/web/irccloud.com/x-clwiemgrswhavjfu] has quit [Read error: Connection reset by peer] 05:27 -!- hebasto [sid449604@gateway/web/irccloud.com/x-eahswtbwpdytwihi] has quit [Read error: Connection reset by peer] 05:27 -!- tylerchambers [sid477594@gateway/web/irccloud.com/x-iogugyyhdwocrxfa] has quit [Read error: Connection reset by peer] 05:27 -!- jakesyl [sid56879@gateway/web/irccloud.com/x-cdljmnidcybkxqei] has quit [Read error: Connection reset by peer] 05:27 -!- wallet42____ [sid154231@gateway/web/irccloud.com/x-lqwrexozzfjzdwgt] has quit [Read error: Connection reset by peer] 05:27 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-djjbiuznzxhrxocp] has quit [Read error: Connection reset by peer] 05:28 -!- ajonas [sid385278@gateway/web/irccloud.com/x-zxbobnrhkibmulxa] has joined #bitcoin-core-dev 05:28 -!- eragmus [sid136308@gateway/web/irccloud.com/x-latpknadhcvabfqn] has joined #bitcoin-core-dev 05:28 -!- fanquake [sid369002@gateway/web/irccloud.com/x-uofsmevexvbhbxdr] has joined #bitcoin-core-dev 05:28 -!- robot-dreams_ [sid463268@gateway/web/irccloud.com/x-wcfvxiaewidpqcbv] has joined #bitcoin-core-dev 05:29 -!- michagogo_ [sid14316@wikia/Michagogo] has joined #bitcoin-core-dev 05:29 -!- Jackielove4u [uid43977@gateway/web/irccloud.com/x-rrmlobyjwtavxihc] has joined #bitcoin-core-dev 05:29 -!- ccook [sid271969@gateway/web/irccloud.com/x-ponglskxpndcweot] has quit [Ping timeout: 272 seconds] 05:29 -!- hsmiths [uid95325@gateway/web/irccloud.com/x-qmttogbhhcsknwsc] has joined #bitcoin-core-dev 05:30 -!- prusnak [sid403625@gateway/web/irccloud.com/x-etmwllgrdxlhyjsd] has joined #bitcoin-core-dev 05:30 -!- mariorz [sid490@gateway/web/irccloud.com/x-qznymsrfkhylague] has joined #bitcoin-core-dev 05:30 -!- hebasto [sid449604@gateway/web/irccloud.com/x-ednzgyvppabghumi] has joined #bitcoin-core-dev 05:30 -!- endogenic [sid145991@gateway/web/irccloud.com/x-bcvlxwfsgjetzfka] has joined #bitcoin-core-dev 05:30 -!- wallet42____ [sid154231@gateway/web/irccloud.com/x-nrnjyscfuzfhfxil] has joined #bitcoin-core-dev 05:31 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 246 seconds] 05:31 -!- wangchun [sid444603@gateway/web/irccloud.com/x-xssvmqciqcpzvcfy] has joined #bitcoin-core-dev 05:31 -!- fjahr [sid374480@gateway/web/irccloud.com/x-lxjvkrdnytnjaigi] has joined #bitcoin-core-dev 05:31 -!- bosma [sid103570@gateway/web/irccloud.com/x-fyuqpcciohtkjxpv] has joined #bitcoin-core-dev 05:31 -!- tylerchambers [sid477594@gateway/web/irccloud.com/x-azrvixincmqtcbuq] has joined #bitcoin-core-dev 05:31 -!- jakesyl [sid56879@gateway/web/irccloud.com/x-iztdehhgiceanbhh] has joined #bitcoin-core-dev 05:32 -!- ovovo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 264 seconds] 05:33 -!- jamesob [sid180710@gateway/web/irccloud.com/x-zrkgoizuznjfbmdh] has joined #bitcoin-core-dev 05:41 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 05:41 < bitcoin-git> [bitcoin] hebasto opened pull request #21116: build: Disable --disable-fuzz-binary for gitian builds (master...210208-fuzz) https://github.com/bitcoin/bitcoin/pull/21116 05:41 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 05:43 -!- ccook [sid271969@gateway/web/irccloud.com/x-djmmrlrifomnprmc] has joined #bitcoin-core-dev 05:43 -!- ccook [sid271969@gateway/web/irccloud.com/x-djmmrlrifomnprmc] has quit [Excess Flood] 05:44 -!- ccook [sid271969@gateway/web/irccloud.com/x-vmivolkftxftxiqc] has joined #bitcoin-core-dev 05:44 -!- ccook [sid271969@gateway/web/irccloud.com/x-vmivolkftxftxiqc] has quit [Excess Flood] 05:44 -!- ccook [sid271969@gateway/web/irccloud.com/x-qurzdeaksysikzyz] has joined #bitcoin-core-dev 05:44 -!- ccook [sid271969@gateway/web/irccloud.com/x-qurzdeaksysikzyz] has quit [Excess Flood] 05:45 -!- felixweis [sid154231@gateway/web/irccloud.com/x-evkfvssyvkykzrpv] has joined #bitcoin-core-dev 05:45 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-uotvgzdhuchqqgwc] has joined #bitcoin-core-dev 05:45 -!- wangchun_ [sid444603@gateway/web/irccloud.com/x-seigqpzrhrszdvau] has joined #bitcoin-core-dev 05:45 -!- ccook [sid271969@gateway/web/irccloud.com/x-ehnxitoccbnytczf] has joined #bitcoin-core-dev 05:45 -!- ccook [sid271969@gateway/web/irccloud.com/x-ehnxitoccbnytczf] has quit [Excess Flood] 05:46 -!- ccook [sid271969@gateway/web/irccloud.com/x-ioyvblcvqtretviz] has joined #bitcoin-core-dev 05:46 -!- ccook [sid271969@gateway/web/irccloud.com/x-ioyvblcvqtretviz] has quit [Excess Flood] 05:50 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-aruejvzcgvfhvmtw] has joined #bitcoin-core-dev 05:50 -!- mol_ [~mol@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 05:50 -!- nejon [sid38993@gateway/web/irccloud.com/x-ljmgzbwigipganlq] has joined #bitcoin-core-dev 05:56 -!- da39a3ee5e6b4b0d [~da39a3ee5@2403:6200:8876:8dc5:2885:a349:760f:ef8c] has joined #bitcoin-core-dev 06:03 -!- Emcy [~Emcy@unaffiliated/emcy] has joined #bitcoin-core-dev 06:09 < MarcoFalke> wumpus: #21036 was deterministic 06:09 < gribble> https://github.com/bitcoin/bitcoin/issues/21036 | gitian: Bump descriptors to Focal for 22.0 by fanquake · Pull Request #21036 · bitcoin/bitcoin · GitHub 06:10 < MarcoFalke> I checked that your hashes matched the ones of drahtbot 06:10 < MarcoFalke> and fanquake's matched the ones of hebasto 06:11 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 06:24 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 06:28 -!- ishaqm_ [~ishaqm@host-92-18-90-93.as13285.net] has quit [Ping timeout: 240 seconds] 06:29 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 264 seconds] 06:30 -!- ys0seri0us [75f2dcd4@117.242.220.212] has joined #bitcoin-core-dev 06:32 -!- freakofmimsy [~freakofmi@185.204.1.185] has joined #bitcoin-core-dev 06:38 -!- jonatack_ [~jon@37.168.69.30] has joined #bitcoin-core-dev 06:38 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 06:38 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #21117: test: remove assert_blockchain_height (master...2102-testNoTimeout) https://github.com/bitcoin/bitcoin/pull/21117 06:38 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 06:41 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has quit [] 06:41 -!- jonatack [~jon@37.166.147.52] has quit [Ping timeout: 264 seconds] 06:45 -!- jonatack_ [~jon@37.168.69.30] has quit [Ping timeout: 256 seconds] 06:50 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 06:51 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has joined #bitcoin-core-dev 06:58 -!- jonatack [~jon@37.168.69.30] has joined #bitcoin-core-dev 07:00 -!- promag_ [~promag@188.250.84.129] has joined #bitcoin-core-dev 07:00 -!- promag [~promag@188.250.84.129] has quit [Read error: Connection reset by peer] 07:01 -!- ys0seri0us [75f2dcd4@117.242.220.212] has quit [Ping timeout: 240 seconds] 07:01 -!- promag_ [~promag@188.250.84.129] has quit [Read error: Connection reset by peer] 07:01 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 07:02 -!- promag_ [~promag@188.250.84.129] has joined #bitcoin-core-dev 07:02 -!- promag [~promag@188.250.84.129] has quit [Read error: Connection reset by peer] 07:14 -!- tralfaz [~davterra@gateway/tor-sasl/tralfaz] has joined #bitcoin-core-dev 07:15 -!- davterra [~davterra@gateway/tor-sasl/tralfaz] has quit [Remote host closed the connection] 07:16 -!- promag_ [~promag@188.250.84.129] has quit [Ping timeout: 246 seconds] 07:37 -!- rpite [~rpite@47.187.219.52] has joined #bitcoin-core-dev 07:44 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has quit [Remote host closed the connection] 07:44 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has joined #bitcoin-core-dev 07:47 < luke-jr> wumpus: for some reason GitHub didn't tell me about it, merged thanks 07:51 -!- promag_ [~promag@188.250.84.129] has joined #bitcoin-core-dev 07:54 < MarcoFalke> Oh, it is the GitHub 500 time again 07:56 -!- da39a3ee5e6b4b0d [~da39a3ee5@2403:6200:8876:8dc5:2885:a349:760f:ef8c] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 07:58 < wumpus> MarcoFalke: strange! I thought I saw mismatches (as noted in my post), but must have looked wrong then 07:59 < MarcoFalke> wumpus: Oh, maybe you are right. I didn't check *all* hashes, only a few 08:02 < MarcoFalke> wumpus: Is this an issue with the bump or a pre-exisiting one? 08:06 -!- ishaqm_ [~ishaqm@host-92-18-90-93.as13285.net] has joined #bitcoin-core-dev 08:06 -!- narodism [narodnik@gateway/vpn/privateinternetaccess/narodism] has quit [Ping timeout: 272 seconds] 08:08 -!- narodism [~narodnik@37.223.80.136] has joined #bitcoin-core-dev 08:12 < wumpus> MarcoFalke: I have never noticed it before 08:14 < wumpus> lol i was about to upload my results somewhere but have just wiped my gitian VM again because it seemed unnecessary now that they were deterministic 08:21 < wumpus> *starts another build* 08:21 < wumpus> no cache either this time 08:28 < MarcoFalke> It seems intermittently non-deterministic. I wonder if it is also non-deterministic on the same machine 08:33 < wumpus> the strangest thing for me was that some of the files matched but others didn't (even for the same OS), my impression was that especially tars were affected not zips, but that might be a by-effect 08:43 < dongcarl> Haven't been following, but is there a non-determinism problem? 08:45 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 08:45 -!- drbrule [sid395654@gateway/web/irccloud.com/x-nctvgorjcdulbvzr] has quit [Quit: Connection closed for inactivity] 08:47 < MarcoFalke> dongcarl: Yeah, at least starting with #21036 08:47 < gribble> https://github.com/bitcoin/bitcoin/issues/21036 | gitian: Bump descriptors to Focal for 22.0 by fanquake · Pull Request #21036 · bitcoin/bitcoin · GitHub 08:48 < MarcoFalke> (currently unclear if this happened earlier) 08:48 < MarcoFalke> diffoscope might tell 08:57 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has quit [Remote host closed the connection] 08:57 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has joined #bitcoin-core-dev 09:03 -!- asdlkfjwerpoicvx [~flack@p200300d46f24de00f79152924510b967.dip0.t-ipconnect.de] has quit [Quit: Konversation terminated!] 09:11 -!- jonatack [~jon@37.168.69.30] has quit [Read error: Connection reset by peer] 09:11 -!- jonatack_ [~jon@37.168.69.30] has joined #bitcoin-core-dev 09:16 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has quit [Remote host closed the connection] 09:16 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has joined #bitcoin-core-dev 09:22 -!- proofofkeags [~proofofke@24.8.218.42] has joined #bitcoin-core-dev 09:31 -!- jonatack_ [~jon@37.168.69.30] has quit [Read error: Connection reset by peer] 09:31 -!- jonatack_ [~jon@37.168.69.30] has joined #bitcoin-core-dev 09:34 -!- jonatack_ [~jon@37.168.69.30] has quit [Client Quit] 09:34 -!- jonatack [~jon@37.168.69.30] has joined #bitcoin-core-dev 09:37 -!- millerti [~millerti@2603-7081-5c02-f029-d4ff-3cac-8f90-d705.res6.spectrum.com] has joined #bitcoin-core-dev 09:50 -!- promag_ [~promag@188.250.84.129] has quit [Remote host closed the connection] 09:54 -!- narodism [~narodnik@37.223.80.136] has quit [Ping timeout: 246 seconds] 09:56 -!- narodism [~narodnik@37.223.80.136] has joined #bitcoin-core-dev 09:58 -!- Talkless [~Talkless@mail.dargis.net] has joined #bitcoin-core-dev 10:03 -!- queip [~queip@unaffiliated/rezurus] has quit [Read error: Connection reset by peer] 10:07 -!- satwo [~textual@2603-6080-ce02-ac00-6964-7ea5-c7ad-6885.res6.spectrum.com] has joined #bitcoin-core-dev 10:07 -!- narodism [~narodnik@37.223.80.136] has quit [Ping timeout: 264 seconds] 10:09 -!- narodism [narodnik@gateway/vpn/privateinternetaccess/narodism] has joined #bitcoin-core-dev 10:12 -!- queip [~queip@unaffiliated/rezurus] has joined #bitcoin-core-dev 10:13 -!- setpill [~setpill@unaffiliated/setpill] has quit [Quit: o/] 10:25 -!- felixweis [sid154231@gateway/web/irccloud.com/x-evkfvssyvkykzrpv] has quit [Read error: Connection reset by peer] 10:25 -!- felixweis [sid154231@gateway/web/irccloud.com/x-iectyqzaxbqwafke] has joined #bitcoin-core-dev 10:25 -!- wangchun_ [sid444603@gateway/web/irccloud.com/x-seigqpzrhrszdvau] has quit [Read error: Connection reset by peer] 10:25 -!- wallet42____ [sid154231@gateway/web/irccloud.com/x-nrnjyscfuzfhfxil] has quit [Read error: Connection reset by peer] 10:25 -!- wangchun [sid444603@gateway/web/irccloud.com/x-xssvmqciqcpzvcfy] has quit [Read error: Connection reset by peer] 10:26 -!- wangchun_ [sid444603@gateway/web/irccloud.com/x-dptybnmlvukqyxcq] has joined #bitcoin-core-dev 10:26 -!- wangchun [sid444603@gateway/web/irccloud.com/x-qlyclsiedqxoyaox] has joined #bitcoin-core-dev 10:26 -!- wallet42____ [sid154231@gateway/web/irccloud.com/x-jujxerrvfrbgtepo] has joined #bitcoin-core-dev 10:27 -!- chrisguida[m]1 [chrisgui_1@gateway/shell/matrix.org/x-xeqievyimgvrssqr] has joined #bitcoin-core-dev 10:28 -!- mol [~mol@unaffiliated/molly] has joined #bitcoin-core-dev 10:29 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 10:34 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 264 seconds] 10:34 -!- az0re [~az0re@gateway/tor-sasl/az0re] has joined #bitcoin-core-dev 10:35 -!- jungly [~jungly@host-80-117-253-52.pool80117.interbusiness.it] has quit [Ping timeout: 265 seconds] 10:39 -!- millerti [~millerti@2603-7081-5c02-f029-d4ff-3cac-8f90-d705.res6.spectrum.com] has quit [Ping timeout: 260 seconds] 10:53 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 10:53 < bitcoin-git> [bitcoin] amitiuttarwar opened pull request #21121: [test] Small unit test improvements, including helper to make mempool transaction (master...2021-01-unit-test-valid-tx) https://github.com/bitcoin/bitcoin/pull/21121 10:53 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 11:17 -!- Guyver2_ [Guyver@guyver2.xs4all.nl] has joined #bitcoin-core-dev 11:20 -!- Guyver2__ [Guyver@guyver2.xs4all.nl] has quit [Ping timeout: 276 seconds] 11:24 -!- kabaum [~kabaum@h-13-35.A163.priv.bahnhof.se] has quit [Ping timeout: 265 seconds] 11:33 -!- chrisguida[m]1 [chrisgui_1@gateway/shell/matrix.org/x-xeqievyimgvrssqr] has left #bitcoin-core-dev [] 11:38 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 11:38 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/b401b093556f...b09ad737eef6 11:38 < bitcoin-git> bitcoin/master fa36206 MarcoFalke: rpc: Return total fee in mempool 11:38 < bitcoin-git> bitcoin/master b09ad73 MarcoFalke: Merge #20944: rpc: Return total fee in getmempoolinfo 11:38 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 11:59 -!- satwo [~textual@2603-6080-ce02-ac00-6964-7ea5-c7ad-6885.res6.spectrum.com] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 12:31 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 12:32 -!- az0re [~az0re@gateway/tor-sasl/az0re] has quit [Remote host closed the connection] 12:35 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 256 seconds] 12:41 < sipa> j 12:43 -!- jungly [~jungly@host-80-117-253-52.retail.telecomitalia.it] has joined #bitcoin-core-dev 12:44 -!- satwo [~textual@2603-6080-ce02-ac00-05b2-d39d-5a4f-d0e3.res6.spectrum.com] has joined #bitcoin-core-dev 12:45 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has quit [Remote host closed the connection] 12:46 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has joined #bitcoin-core-dev 12:47 -!- Talkless [~Talkless@mail.dargis.net] has quit [Quit: Konversation terminated!] 12:49 -!- freakofmimsy [~freakofmi@185.204.1.185] has quit [Remote host closed the connection] 12:50 -!- proofofkeags [~proofofke@24.8.218.42] has quit [Ping timeout: 272 seconds] 12:54 -!- satwo [~textual@2603-6080-ce02-ac00-05b2-d39d-5a4f-d0e3.res6.spectrum.com] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 12:54 -!- vanaltj1 [~vanaltj@185.163.110.108] has joined #bitcoin-core-dev 12:54 -!- jonatack [~jon@37.168.69.30] has quit [Ping timeout: 240 seconds] 12:57 -!- ishaqm_ [~ishaqm@host-92-18-90-93.as13285.net] has quit [Remote host closed the connection] 12:58 -!- ishaqm [~ishaqm@host-92-18-90-93.as13285.net] has joined #bitcoin-core-dev 13:04 -!- jonatack [~jon@37.168.69.30] has joined #bitcoin-core-dev 13:12 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 13:13 -!- dviola [~diego@unaffiliated/dviola] has quit [Quit: WeeChat 3.0] 13:13 -!- johnbendi [~mindbende@154.118.63.205] has joined #bitcoin-core-dev 13:15 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 13:15 -!- proofofkeags [~proofofke@24.8.218.42] has joined #bitcoin-core-dev 13:16 -!- dviola [~diego@unaffiliated/dviola] has joined #bitcoin-core-dev 13:17 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 272 seconds] 13:20 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 13:24 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 246 seconds] 13:28 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 13:37 -!- landakram [~mark@2601:643:8002:3f20:ec98:f123:f04f:dc0b] has joined #bitcoin-core-dev 13:44 -!- johnbendi [~mindbende@154.118.63.205] has quit [Ping timeout: 240 seconds] 13:55 -!- ishaqm [~ishaqm@host-92-18-90-93.as13285.net] has quit [Remote host closed the connection] 14:03 -!- rex4539_ [~rex4539@gateway/tor-sasl/rex4539] has joined #bitcoin-core-dev 14:04 < wumpus> looks like i can at least fully reproduce the hashes here: https://github.com/bitcoin/bitcoin/pull/21036#issuecomment-774522683 so it seems deterministic locally 14:06 -!- rex4539 [~rex4539@gateway/tor-sasl/rex4539] has quit [Ping timeout: 268 seconds] 14:12 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Remote host closed the connection] 14:12 -!- sr_gi [~sr_gi@static-125-62-230-77.ipcom.comunitel.net] has quit [Read error: Connection reset by peer] 14:12 -!- sr_gi [~sr_gi@static-125-62-230-77.ipcom.comunitel.net] has joined #bitcoin-core-dev 14:13 < wumpus> uploaded the four mismatching files here: https://download.visucore.com/tmp/mismatch-3ec37a517285.tar.gz (@fanquake) 14:13 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 14:13 -!- N0somebody [~sl@13.71.191.154] has joined #bitcoin-core-dev 14:14 -!- N0somebody [~sl@13.71.191.154] has left #bitcoin-core-dev [] 14:17 -!- promag [~promag@188.250.84.129] has quit [Remote host closed the connection] 14:17 -!- dermoth [~dermoth@unaffiliated/dermoth] has quit [Quit: Leaving] 14:18 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 14:27 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Disconnected by services] 14:27 -!- vasild_ [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 14:27 -!- vasild_ is now known as vasild 14:28 -!- vasild [~vd@gateway/tor-sasl/vasild] has quit [Remote host closed the connection] 14:31 -!- satwo [~textual@2603-6080-ce02-ac00-542b-9eda-9f6f-f53c.res6.spectrum.com] has joined #bitcoin-core-dev 14:31 -!- satwo [~textual@2603-6080-ce02-ac00-542b-9eda-9f6f-f53c.res6.spectrum.com] has quit [Client Quit] 14:32 -!- vasild [~vd@gateway/tor-sasl/vasild] has joined #bitcoin-core-dev 14:34 -!- landakram [~mark@2601:643:8002:3f20:ec98:f123:f04f:dc0b] has quit [Ping timeout: 264 seconds] 14:48 -!- promag [~promag@188.250.84.129] has quit [Remote host closed the connection] 14:52 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 14:53 -!- rpite [~rpite@47.187.219.52] has quit [Ping timeout: 272 seconds] 15:00 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has quit [Ping timeout: 268 seconds] 15:03 -!- promag [~promag@188.250.84.129] has quit [Remote host closed the connection] 15:04 -!- owowo [~ovovo@2a02:29b8:dc01:597::1e] has joined #bitcoin-core-dev 15:04 -!- owowo [~ovovo@2a02:29b8:dc01:597::1e] has quit [Changing host] 15:04 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 15:04 -!- yanmaani [~yanmaani@gateway/tor-sasl/yanmaani] has joined #bitcoin-core-dev 15:04 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-uotvgzdhuchqqgwc] has quit [Read error: Connection reset by peer] 15:04 -!- ajonas [sid385278@gateway/web/irccloud.com/x-zxbobnrhkibmulxa] has quit [Read error: Connection reset by peer] 15:04 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-vacykevlcltjliir] has joined #bitcoin-core-dev 15:04 -!- ajonas [sid385278@gateway/web/irccloud.com/x-yiparpyccxiagngc] has joined #bitcoin-core-dev 15:10 -!- Guyver2_ [Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 15:14 -!- sturles [~sturles@unaffiliated/sturles] has quit [Ping timeout: 264 seconds] 15:15 -!- miketwenty1 [~miketwent@136.55.84.49] has joined #bitcoin-core-dev 15:17 -!- az0re [~az0re@gateway/tor-sasl/az0re] has joined #bitcoin-core-dev 15:20 -!- miketwenty1 [~miketwent@136.55.84.49] has quit [Remote host closed the connection] 15:23 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 15:29 -!- jungly [~jungly@host-80-117-253-52.retail.telecomitalia.it] has quit [Ping timeout: 240 seconds] 15:38 -!- sturles [~sturles@sauron.uio.no] has joined #bitcoin-core-dev 15:38 -!- sturles [~sturles@sauron.uio.no] has quit [Changing host] 15:38 -!- sturles [~sturles@unaffiliated/sturles] has joined #bitcoin-core-dev 15:40 -!- dermoth [~dermoth@unaffiliated/dermoth] has joined #bitcoin-core-dev 16:02 -!- promag [~promag@188.250.84.129] has quit [Remote host closed the connection] 16:03 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 16:04 < fanquake> wumpus: thanks 16:19 -!- lovess [4729e234@rrcs-71-41-226-52.sw.biz.rr.com] has joined #bitcoin-core-dev 16:20 -!- promag [~promag@188.250.84.129] has quit [Remote host closed the connection] 16:20 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 16:24 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 240 seconds] 16:26 -!- da39a3ee5e6b4b0d [~da39a3ee5@2403:6200:8876:8dc5:2885:a349:760f:ef8c] has joined #bitcoin-core-dev 16:30 -!- lovess [4729e234@rrcs-71-41-226-52.sw.biz.rr.com] has quit [Quit: Connection closed] 16:37 -!- miketwenty1 [~miketwent@136.55.84.49] has joined #bitcoin-core-dev 16:47 -!- proofofkeags [~proofofke@24.8.218.42] has quit [Ping timeout: 265 seconds] 17:03 -!- da39a3ee5e6b4b0d [~da39a3ee5@2403:6200:8876:8dc5:2885:a349:760f:ef8c] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 17:04 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 17:06 -!- miketwenty1 [~miketwent@136.55.84.49] has quit [Remote host closed the connection] 17:08 -!- miketwenty1 [~miketwent@136.55.84.49] has joined #bitcoin-core-dev 17:14 -!- da39a3ee5e6b4b0d [~da39a3ee5@49.228.238.55] has joined #bitcoin-core-dev 17:35 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 17:40 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 265 seconds] 17:48 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 17:49 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 268 seconds] 17:52 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Ping timeout: 268 seconds] 17:53 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 17:57 -!- jonatack [~jon@37.168.69.30] has quit [Read error: Connection reset by peer] 17:57 -!- jonatack [~jon@37.168.69.30] has joined #bitcoin-core-dev 17:58 < kallewoof> can someone with bitcoin-core rights enable cirrus CI for btcdeb repo? i can't find the option so I assume I'm not allowed 17:58 -!- belcher_ [~belcher@unaffiliated/belcher] has joined #bitcoin-core-dev 18:00 < sipa> kallewoof: done 18:00 -!- jonatack [~jon@37.168.69.30] has quit [Read error: Connection reset by peer] 18:00 < kallewoof> sipa: thanks! 18:00 < sipa> yw 18:01 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 265 seconds] 18:02 -!- contrapumpkin [~copumpkin@unaffiliated/copumpkin] has joined #bitcoin-core-dev 18:05 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Killed (rothfuss.freenode.net (Nickname regained by services))] 18:05 -!- contrapumpkin is now known as copumpkin 18:25 -!- belcher_ is now known as belcher 18:48 -!- bioverse [~bio@45.86.203.105] has joined #bitcoin-core-dev 18:49 -!- proofofkeags [~proofofke@97-118-232-73.hlrn.qwest.net] has joined #bitcoin-core-dev 18:51 < bioverse> I have a nano ledger s with some bitcoin. I have the 24 words and wallet in a safe place. I went to https://iancoleman.io/bip39/ using a Ubuntu live from USB. I put the 24 mnemonic words and could not find any bitcoin address ever used. I freaked. I thought. Oh my god! I ordered a second brand new nano ledger s. Put the 24 words, using ledger live in a brand new laptop and my coins were there in the brand new ledger nano s. I am safe. But I have 18:51 < bioverse> no idea why the 24 words at that offline airgapped site don't generate any used key-pairs. Maybe is SegWit address problem. I have no idea. The fisrt 20 key-pair addresses given have never been used.... 18:52 < sipa> this channel is for development; you may get better help on https://bitcoin.stackexchange.com (but search for relevant questions first) 18:52 < bioverse> I know Pieter Willie 18:54 < bioverse> but any help would be greatly appreciated 18:56 < bioverse> Sent an email to the ledger manufactor two weeks ago and got not a reply with an answer 18:57 < bioverse> Anyway, do you think bitcoin can be used in the future for time-lock encryption? 19:03 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 19:04 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Remote host closed the connection] 19:04 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-core-dev 19:06 < sipa> bioverse: no 19:08 -!- promag [~promag@188.250.84.129] has quit [Remote host closed the connection] 19:09 < bioverse> do you mean "no, I don't think that is possible" ? 19:10 < fanquake> he probably means "no, that's not at all on topic for this channel" 19:26 -!- nejon [sid38993@gateway/web/irccloud.com/x-ljmgzbwigipganlq] has quit [Read error: Connection reset by peer] 19:26 -!- wangchun_ [sid444603@gateway/web/irccloud.com/x-dptybnmlvukqyxcq] has quit [Ping timeout: 258 seconds] 19:27 -!- felixweis [sid154231@gateway/web/irccloud.com/x-iectyqzaxbqwafke] has quit [Read error: Connection reset by peer] 19:27 -!- wangchun [sid444603@gateway/web/irccloud.com/x-qlyclsiedqxoyaox] has quit [Read error: Connection reset by peer] 19:27 -!- wallet42____ [sid154231@gateway/web/irccloud.com/x-jujxerrvfrbgtepo] has quit [Read error: Connection reset by peer] 19:27 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-vacykevlcltjliir] has quit [Read error: Connection reset by peer] 19:27 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-aruejvzcgvfhvmtw] has quit [Read error: Connection reset by peer] 19:27 -!- ajonas [sid385278@gateway/web/irccloud.com/x-yiparpyccxiagngc] has quit [Read error: Connection reset by peer] 19:28 -!- wangchun_ [sid444603@gateway/web/irccloud.com/x-xznnrtbggxdjkjro] has joined #bitcoin-core-dev 19:28 -!- felixweis [sid154231@gateway/web/irccloud.com/x-ntdyaxjwaufomstj] has joined #bitcoin-core-dev 19:28 -!- wallet42____ [sid154231@gateway/web/irccloud.com/x-ihozpqrvbxpcilcr] has joined #bitcoin-core-dev 19:29 -!- elichai2 [sid212594@gateway/web/irccloud.com/x-fnnnbfkbileowsih] has joined #bitcoin-core-dev 19:30 -!- ajonas [sid385278@gateway/web/irccloud.com/x-euttqffzujmqylox] has joined #bitcoin-core-dev 19:30 -!- rpite [~rpite@47.187.219.52] has joined #bitcoin-core-dev 19:31 -!- wangchun [sid444603@gateway/web/irccloud.com/x-ibjieswojpkkbzqo] has joined #bitcoin-core-dev 19:33 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-fivmykcoehvwjrdb] has joined #bitcoin-core-dev 19:41 -!- miketwenty1 [~miketwent@136.55.84.49] has quit [Remote host closed the connection] 19:46 -!- promag [~promag@188.250.84.129] has joined #bitcoin-core-dev 19:51 -!- promag [~promag@188.250.84.129] has quit [Ping timeout: 272 seconds] 20:02 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 20:04 -!- ogo [~ogo@gateway/tor-sasl/ogo] has quit [Remote host closed the connection] 20:04 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 265 seconds] 20:05 -!- da39a3ee5e6b4b0d [~da39a3ee5@49.228.238.55] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 20:09 -!- bioverse [~bio@45.86.203.105] has quit [Remote host closed the connection] 20:11 -!- miketwenty1 [~miketwent@136.55.84.49] has joined #bitcoin-core-dev 20:16 -!- miketwenty1 [~miketwent@136.55.84.49] has quit [Ping timeout: 272 seconds] 20:19 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 20:19 -!- ogo [~ogo@gateway/tor-sasl/ogo] has joined #bitcoin-core-dev 20:20 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has quit [Remote host closed the connection] 20:20 -!- hung [9a098058@154.9.128.88] has joined #bitcoin-core-dev 20:21 -!- hung [9a098058@154.9.128.88] has quit [Client Quit] 21:02 -!- nejon [sid38993@gateway/web/irccloud.com/x-ptanggjfriycisqx] has joined #bitcoin-core-dev 21:08 -!- rpite [~rpite@47.187.219.52] has quit [Ping timeout: 256 seconds] 21:33 -!- CubicEarth [~CubicEart@c-67-168-1-172.hsd1.wa.comcast.net] has quit [Read error: Connection reset by peer] 21:36 -!- CubicEarth [~CubicEart@c-67-168-1-172.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 21:38 -!- johnbendi [~mindbende@154.118.63.205] has joined #bitcoin-core-dev 21:41 -!- rpite [~rpite@47.187.219.52] has joined #bitcoin-core-dev 21:46 -!- johnbendi [~mindbende@154.118.63.205] has quit [Remote host closed the connection] 21:46 -!- johnbendi [~mindbende@154.118.63.205] has joined #bitcoin-core-dev 21:49 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 21:49 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/b09ad737eef6...d8646966497f 21:49 < bitcoin-git> bitcoin/master 723eb43 Hennadii Stepanov: test: Fix Windows cross build 21:49 < bitcoin-git> bitcoin/master d864696 fanquake: Merge #21115: test: Fix Windows cross build 21:49 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 21:49 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 21:49 < bitcoin-git> [bitcoin] fanquake merged pull request #21115: test: Fix Windows cross build (master...210208-win) https://github.com/bitcoin/bitcoin/pull/21115 21:49 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:01 -!- johnbendi [~mindbende@154.118.63.205] has quit [Ping timeout: 240 seconds] 22:22 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:22 < bitcoin-git> [bitcoin] fanquake pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/d8646966497f...a0077a80b054 22:22 < bitcoin-git> bitcoin/master fd7caae Hennadii Stepanov: build: Disable --disable-fuzz-binary for gitian builds 22:22 < bitcoin-git> bitcoin/master cb151b7 Hennadii Stepanov: build: Disable --disable-fuzz-binary for guix builds 22:22 < bitcoin-git> bitcoin/master a0077a8 fanquake: Merge #21116: build: Disable --disable-fuzz-binary for gitian/guix builds 22:22 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:23 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:23 < bitcoin-git> [bitcoin] fanquake merged pull request #21116: build: Disable --disable-fuzz-binary for gitian/guix builds (master...210208-fuzz) https://github.com/bitcoin/bitcoin/pull/21116 22:23 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:23 -!- shesek [~shesek@unaffiliated/shesek] has quit [Remote host closed the connection] 22:27 -!- rpite [~rpite@47.187.219.52] has quit [Ping timeout: 246 seconds] 22:32 -!- sr_gi [~sr_gi@static-125-62-230-77.ipcom.comunitel.net] has quit [Read error: Connection reset by peer] 22:32 -!- da39a3ee5e6b4b0d [~da39a3ee5@2403:6200:8876:8dc5:9d83:6704:36aa:723f] has joined #bitcoin-core-dev 22:33 -!- sr_gi [~sr_gi@static-125-62-230-77.ipcom.comunitel.net] has joined #bitcoin-core-dev 22:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 22:45 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:45 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a0077a80b054...c4214d0e0df0 22:46 < bitcoin-git> bitcoin/master fa0a4d6 MarcoFalke: test: remove assert_blockchain_height 22:46 < bitcoin-git> bitcoin/master c4214d0 MarcoFalke: Merge #21117: test: remove assert_blockchain_height 22:46 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:46 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:46 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #21117: test: remove assert_blockchain_height (master...2102-testNoTimeout) https://github.com/bitcoin/bitcoin/pull/21117 22:46 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:53 -!- kabaum [~kabaum@h-13-35.A163.priv.bahnhof.se] has joined #bitcoin-core-dev 22:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:58 < bitcoin-git> [bitcoin] MarcoFalke pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/c4214d0e0df0...19b1ceddc716 22:58 < bitcoin-git> bitcoin/master 98db48d Gunar Gessner: doc: Fix markdown formatting 22:58 < bitcoin-git> bitcoin/master e1604b3 Gunar C. Gessner: doc: Replace tabs for spaces 22:58 < bitcoin-git> bitcoin/master 19b1ced MarcoFalke: Merge #21075: doc: Fix markdown formatting 22:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 22:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 22:58 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #21075: doc: Fix markdown formatting (master...patch-1) https://github.com/bitcoin/bitcoin/pull/21075 22:58 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 23:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 23:02 < bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/19b1ceddc716...3641ec1aacfe 23:02 < bitcoin-git> bitcoin/master ac24af4 fanquake: ci: use Ubuntu Focal for macOS cross build 23:02 < bitcoin-git> bitcoin/master 3641ec1 MarcoFalke: Merge #21112: ci: use Focal for macOS cross builds 23:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 23:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has joined #bitcoin-core-dev 23:02 < bitcoin-git> [bitcoin] MarcoFalke merged pull request #21112: ci: use Focal for macOS cross builds (master...actually_use_focal_in_cirrus_ci) https://github.com/bitcoin/bitcoin/pull/21112 23:02 -!- bitcoin-git [~bitcoin-g@x0f.org] has left #bitcoin-core-dev [] 23:13 -!- Kiminuo [~Kiminuo@141.98.103.172] has joined #bitcoin-core-dev 23:17 < Kiminuo> Hi, would you mind sharing what IDE/editors you use for Bitcoin Core development? 23:18 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 23:20 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:20 -!- DeanWeen [~dean@gateway/tor-sasl/deanguss] has quit [Remote host closed the connection] 23:24 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 23:24 < sipa> i use mcedit, still... 23:25 -!- miketwenty1 [~miketwent@136.55.84.49] has joined #bitcoin-core-dev 23:30 -!- miketwenty1 [~miketwent@136.55.84.49] has quit [Ping timeout: 264 seconds] 23:34 -!- az0re [~az0re@gateway/tor-sasl/az0re] has quit [Quit: Leaving] 23:34 -!- harrigan- [~harrigan@ptr-93-89-242-202.ip.airwire.ie] has joined #bitcoin-core-dev 23:34 -!- harrigan [~harrigan@ptr-93-89-242-235.ip.airwire.ie] has quit [Ping timeout: 240 seconds] 23:39 < Kiminuo> :) unexpected choice 23:46 -!- jungly [~jungly@host-79-55-185-138.retail.telecomitalia.it] has joined #bitcoin-core-dev 23:51 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Remote host closed the connection] 23:52 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev --- Log closed Tue Feb 09 00:00:24 2021