--- Log opened Fri Jan 18 00:00:24 2019 00:01 -!- pinheadmz [~matthewzi@c-76-102-227-220.hsd1.ca.comcast.net] has quit [Client Quit] 00:06 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 00:11 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 00:18 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 00:22 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 00:23 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Ping timeout: 252 seconds] 00:26 -!- schmidty [~schmidty@unaffiliated/schmidty] has quit [Ping timeout: 245 seconds] 00:32 -!- jungly [~quassel@host97-200-static.8-79-b.business.telecomitalia.it] has joined #bitcoin-core-dev 00:39 -!- dufferzafar [~dufferzaf@unaffiliated/dufferzafar] has joined #bitcoin-core-dev 00:40 < dufferzafar> i'm doing some network measurement experiments on bitcoin 00:40 < dufferzafar> i have bitcoin daemons running on multiple machines 00:40 < dufferzafar> and to simulate real network like delays and latencies i'm using Linux's tc/netem 00:40 < dufferzafar> i want to add delays between P2P ports of machines 00:40 < dufferzafar> but i think the p2p ports aren't fixed 00:40 < dufferzafar> how would i go about adding delays? 00:41 < wumpus> "but i think the p2p ports aren't fixed" by default it is always 8333, unless you change it, which you obviously wouldn't do for a simulated network 00:47 -!- Krellan [~Krellan@2601:640:4000:a876:40f2:f3bd:2682:93c2] has joined #bitcoin-core-dev 00:52 -!- Krellan [~Krellan@2601:640:4000:a876:40f2:f3bd:2682:93c2] has quit [Ping timeout: 250 seconds] 00:55 < wumpus> (8333 is assuming this is mainnet; testnet and regtest networks have different, but also fixed ports) 00:57 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 268 seconds] 01:08 -!- murrayn_ [~murrayn@S0106f8a097f16608.ok.shawcable.net] has joined #bitcoin-core-dev 01:10 -!- murrayn [~murrayn@unaffiliated/murrayn] has quit [Ping timeout: 268 seconds] 01:11 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 01:12 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 01:17 -!- Murch [~murch@c-73-223-113-121.hsd1.ca.comcast.net] has quit [Quit: Snoozing.] 01:18 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:18 < dufferzafar> wumpus: i did change the p2p port, but bitcoind is binding to some other ports as well 01:18 < dufferzafar> it only listens on the p2p port 01:18 < dufferzafar> but i think data transmissions happen on other ports (which can't be configured?) 01:18 < wumpus> by default it will listen on the P2P publicly and the RPC port localhost-only 01:19 < wumpus> no, there is only one kind of P2P connection and that always connects to a P2P port 01:20 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:20 < dufferzafar> let me explain by the output of "lsof -i" (lists all open ports) 01:20 < dufferzafar> bitcoind 22139 baadalvm IPv4 TCP btc1:33542->btc2:12476 (ESTABLISHED) 01:20 < dufferzafar> bitcoind 22139 baadalvm IPv4 TCP *:12192 (LISTEN) 01:20 < dufferzafar> bitcoind 22139 baadalvm IPv4 TCP btc1:12192->btc2:60332 (ESTABLISHED) 01:21 < dufferzafar> so, the ports 12192 & 12476 are the ones the two bitcoin processes (btc1 & btc2) are listening on 01:21 < dufferzafar> these are the p2p ports 01:21 < wumpus> there are two possiblities: incoming connections, which go *to* the P2P port on the local host, or outgoing connections which go to the P2P port of a remote host 01:22 < dufferzafar> i don't get where the ports 33542 & 60332 are coming from 01:22 < dufferzafar> i didn't specify these numbers anywhere in the config 01:23 < wumpus> aren't they the ephermal source ports for the TCP connections? 01:23 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 01:24 < dufferzafar> yeah, but they're dynamic right 01:25 < dufferzafar> so i won't be able to set a delay 01:25 < dufferzafar> because that requires me knowing the ports beforehand 01:25 < dufferzafar> i was running a command like: "tcset ens3 --delay 120s --dst-network 10.17.6.18 --src-port 12476 --dst-port 12192" 01:26 < dufferzafar> but since the data is being transmitted over the ephemeral ports, the delay doesn't work 01:26 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has joined #bitcoin-core-dev 01:26 < wumpus> source ports for TCP connections are *always* dynamic, remember that the (source host:port, target host:port) tuple has to be unique for a connection, so otherwise you could only have one connection to a certain service from one host! 01:27 < dufferzafar> yeah, i understand why it has to be dynamic 01:27 < dufferzafar> but i don't get how i would be able to add delays then 01:27 < wumpus> I think you need to read up on how your tooling is used with other TCP protocols, it's not really different for bitcoin 01:28 < dufferzafar> i even tried something like: "tcset ens3 --delay 120s --dst-port 12192" 01:28 < dufferzafar> but that doesn't work either 01:29 < dufferzafar> leading me to believe that the P2P port isn't being used 01:29 < echeveria> isn’t being used? 01:29 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 01:29 < dufferzafar> as in, it is only being used to listen for new clients 01:30 < dufferzafar> but the actual data is transmitted on some other port 01:30 < wumpus> it is being used, believe me 01:30 < dufferzafar> (just my hypothesis) 01:30 < echeveria> no. 01:30 < wumpus> if it's not being used then your node has no connection in the first place 01:30 < echeveria> you’re not listening to experts that know the system. it does not use other ports. your hypothesis is utterly irrelevant. 01:31 < wumpus> I suggest you ask in the help channel for your simulation tooling why it isn't working, I don't think anyone can help you here 01:31 < wumpus> also this isn't a help channel, it's about development 01:32 < dufferzafar> okay, is it bitcoin-help? i saw this channel mentioned on slack, so came here 01:32 -!- dufferzafar [~dufferzaf@unaffiliated/dufferzafar] has left #bitcoin-core-dev ["Konversation terminated!"] 01:32 < wumpus> it's fine as long as you don't go arguing how bitcoin's P2P protocol works... 01:33 -!- laurentmt [~Thunderbi@78.157.211.238] has joined #bitcoin-core-dev 01:41 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-core-dev 01:44 -!- rhavar_ [uid237883@gateway/web/irccloud.com/x-vmnsrfpxkgmousjy] has quit [Quit: Connection closed for inactivity] 01:51 -!- mistergold [~mistergol@185.37.27.133] has joined #bitcoin-core-dev 01:55 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 02:04 < DeanGuss> Anybody happen to know why wallet.cpp shuts bitcoind down when encryptwallet rpc command is called? https://github.com/bitcoin/bitcoin/blob/master/src/wallet/wallet.cpp line 676 02:08 < wumpus> DeanGuss: it was a crude but effective way to be sure that all the unencrypted data is removed from memory, and to be sure only the encrypted wallet is loaded next time 02:09 < wumpus> the behavior is removed in #12493 02:10 < gribble> https://github.com/bitcoin/bitcoin/issues/12493 | [wallet] Reopen CDBEnv after encryption instead of shutting down by achow101 · Pull Request #12493 · bitcoin/bitcoin · GitHub 02:10 < wumpus> if it still shuts down it's a bug 02:11 < DeanGuss> it definitely does 02:11 < DeanGuss> running 0.17.1 02:11 < wumpus> then, please file a bug report with as much info about the issue as possible: https://github.com/bitcoin/bitcoin/issues/new 02:11 < DeanGuss> cool will do 02:11 < wumpus> oh, in 0.17.1 that's expected 02:12 < wumpus> you posted a link to master, which shouldn't have it anymore 02:12 < wumpus> master will be 0.18.0 02:12 < DeanGuss> ah.. ok cool, so next release? 02:12 < wumpus> next major release 02:12 < DeanGuss> sweet! Thanks 02:13 < DeanGuss> any idea when that will be? 02:14 < wumpus> see #14438 02:14 < gribble> https://github.com/bitcoin/bitcoin/issues/14438 | Release schedule for 0.18.0 · Issue #14438 · bitcoin/bitcoin · GitHub 02:15 < DeanGuss> awesome thanks 02:17 -!- schmidty [~schmidty@unaffiliated/schmidty] has quit [Ping timeout: 252 seconds] 02:18 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 02:20 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 02:22 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 02:24 -!- miknotauro [~miknotaur@187.207.5.246] has quit [Ping timeout: 250 seconds] 02:25 -!- schmidty [~schmidty@unaffiliated/schmidty] has quit [Ping timeout: 250 seconds] 02:26 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 02:30 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 02:31 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-etakztqrwlzoilpr] has joined #bitcoin-core-dev 02:31 < bitcoin-git> [bitcoin] DesWurstes opened pull request #15199: P2P: Don't fill with zeros twice (master...patch-8) https://github.com/bitcoin/bitcoin/pull/15199 02:31 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-etakztqrwlzoilpr] has left #bitcoin-core-dev [] 02:32 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Read error: Connection reset by peer] 02:39 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 02:41 -!- hebasto [~hebasto@95.164.65.194] has quit [Read error: Connection reset by peer] 02:41 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 02:41 -!- hebasto_ [~hebasto@95.164.65.194] has joined #bitcoin-core-dev 02:49 < promag> jnewbery: jonasschnelli: #15195 the open/close walelt actions (it includes #15101 and #15153) 02:49 < gribble> https://github.com/bitcoin/bitcoin/issues/15195 | gui: Add Close Wallet action by promag · Pull Request #15195 · bitcoin/bitcoin · GitHub 02:49 < gribble> https://github.com/bitcoin/bitcoin/issues/15101 | gui: Add WalletController by promag · Pull Request #15101 · bitcoin/bitcoin · GitHub 02:49 < gribble> https://github.com/bitcoin/bitcoin/issues/15153 | gui: Add Open Wallet menu by promag · Pull Request #15153 · bitcoin/bitcoin · GitHub 02:50 < promag> it would be nice someone test 15195 in linux/windows 03:06 -!- hebasto_ [~hebasto@95.164.65.194] has quit [Remote host closed the connection] 03:07 -!- hebasto_ [~hebasto@95.164.65.194] has joined #bitcoin-core-dev 03:22 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 03:27 -!- sipa [~pw@gateway/tor-sasl/sipa1024] has quit [Ping timeout: 256 seconds] 03:27 -!- guga [~guga@i59F4D7C3.versanet.de] has quit [Ping timeout: 252 seconds] 03:28 -!- sipa [~pw@gateway/tor-sasl/sipa1024] has joined #bitcoin-core-dev 03:35 -!- Krellan [~Krellan@2601:640:4000:a876:c064:b43a:37db:1cd] has joined #bitcoin-core-dev 03:35 -!- schmidty [~schmidty@unaffiliated/schmidty] has quit [Ping timeout: 268 seconds] 03:40 -!- Krellan [~Krellan@2601:640:4000:a876:c064:b43a:37db:1cd] has quit [Ping timeout: 250 seconds] 03:46 -!- guga [~guga@i59F4D7C3.versanet.de] has joined #bitcoin-core-dev 03:49 -!- rabidus [~rabidus@85-23-137-40.bb.dnainternet.fi] has quit [Ping timeout: 250 seconds] 04:00 -!- rabidus [~rabidus@85-23-137-40.bb.dnainternet.fi] has joined #bitcoin-core-dev 04:01 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 04:02 -!- Aaronvan_ is now known as AaronvanW 04:06 -!- schmidty [~schmidty@unaffiliated/schmidty] has quit [Ping timeout: 250 seconds] 04:08 -!- mistergold [~mistergol@185.37.27.133] has quit [Quit: leaving] 04:09 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 04:13 -!- schmidty [~schmidty@unaffiliated/schmidty] has quit [Remote host closed the connection] 04:13 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 04:30 -!- laurentmt [~Thunderbi@78.157.211.238] has quit [Quit: laurentmt] 04:48 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Remote host closed the connection] 04:57 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Remote host closed the connection] 04:58 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 05:23 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has joined #bitcoin-core-dev 05:27 -!- promag [~promag@bl6-24-70.dsl.telepac.pt] has quit [Ping timeout: 245 seconds] 05:35 -!- guga_ [~guga@p5B2D8F01.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 05:37 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 244 seconds] 05:38 -!- guga [~guga@i59F4D7C3.versanet.de] has quit [Ping timeout: 268 seconds] 05:42 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 05:49 -!- farmerwampum [~farmerwam@184.75.220.106] has joined #bitcoin-core-dev 05:52 -!- farmerwampum [~farmerwam@184.75.220.106] has left #bitcoin-core-dev [] 05:58 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 06:03 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Ping timeout: 268 seconds] 06:19 -!- kexkey [~kexkey@192.230.35.148] has joined #bitcoin-core-dev 06:24 -!- miknotauro [~miknotaur@187.207.5.246] has joined #bitcoin-core-dev 06:33 -!- miknotauro [~miknotaur@187.207.5.246] has quit [Ping timeout: 245 seconds] 06:34 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 06:38 -!- laurentmt [~Thunderbi@78.157.211.238] has joined #bitcoin-core-dev 06:52 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Read error: Connection reset by peer] 06:52 -!- queip [~queip@unaffiliated/rezurus] has quit [Quit: bye, freenode] 07:02 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #bitcoin-core-dev 07:07 -!- queip [~queip@unaffiliated/rezurus] has joined #bitcoin-core-dev 07:18 -!- arshbot_ [~harshagol@104.222.154.114] has joined #bitcoin-core-dev 07:21 -!- laurentmt [~Thunderbi@78.157.211.238] has quit [Quit: laurentmt] 07:26 -!- promag [~promag@83.223.251.39] has joined #bitcoin-core-dev 07:30 -!- sakalli_ [~Mutter@mobile-access-b04807-142.dhcp.inet.fi] has joined #bitcoin-core-dev 07:30 -!- sakalli_ [~Mutter@mobile-access-b04807-142.dhcp.inet.fi] has quit [Excess Flood] 07:30 -!- sakalli_ [~Mutter@mobile-access-b04807-142.dhcp.inet.fi] has joined #bitcoin-core-dev 07:31 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-yfrpmndxihqnpact] has joined #bitcoin-core-dev 07:31 < bitcoin-git> [bitcoin] practicalswift opened pull request #15201: net: Add missing cs_vNodes lock in CConnman::Stop(). Add missing locking annotation. (master...cs_vNodes) https://github.com/bitcoin/bitcoin/pull/15201 07:31 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-yfrpmndxihqnpact] has left #bitcoin-core-dev [] 07:32 -!- sakalli_ [~Mutter@mobile-access-b04807-142.dhcp.inet.fi] has quit [Client Quit] 07:32 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-etnzlifrxpmpsfgp] has joined #bitcoin-core-dev 07:32 < bitcoin-git> [bitcoin] promag opened pull request #15202: gui: Add Close All Wallets action (master...2019-01-closeallwallets) https://github.com/bitcoin/bitcoin/pull/15202 07:32 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-etnzlifrxpmpsfgp] has left #bitcoin-core-dev [] 07:37 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-rmucysusrlwjimue] has joined #bitcoin-core-dev 07:37 < bitcoin-git> [bitcoin] DesWurstes closed pull request #15199: P2P: Don't fill with zeros twice (master...patch-8) https://github.com/bitcoin/bitcoin/pull/15199 07:37 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-rmucysusrlwjimue] has left #bitcoin-core-dev [] 07:44 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has joined #bitcoin-core-dev 07:48 < rafalcpp> hi, how Bitcoin achieves deterministic builds of Qt client too? 07:50 < rafalcpp> the Qt library itself, must be built in cross-build version, that is also deterministic and static? 07:55 -!- arshbot_ [~harshagol@104.222.154.114] has quit [Ping timeout: 240 seconds] 07:55 -!- guga_ [~guga@p5B2D8F01.dip0.t-ipconnect.de] has quit [Quit: Leaving] 07:55 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-hjjasdqrocmvacum] has joined #bitcoin-core-dev 07:55 < bitcoin-git> [bitcoin] dooglus opened pull request #15203: Fix issue #9683 "gui, wallet: random abort (segmentation fault) (master...fix-startup-crash) https://github.com/bitcoin/bitcoin/pull/15203 07:55 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-hjjasdqrocmvacum] has left #bitcoin-core-dev [] 08:03 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-brhmgeykiuqztokc] has joined #bitcoin-core-dev 08:03 < bitcoin-git> [bitcoin] promag opened pull request #15204: gui: Add Open External Wallet action (master...2019-01-openexternalwallet) https://github.com/bitcoin/bitcoin/pull/15204 08:03 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-brhmgeykiuqztokc] has left #bitcoin-core-dev [] 08:07 -!- Meee3333 [~textual@2a01:4c8:102c:56e:c945:3247:ebd:c167] has joined #bitcoin-core-dev 08:07 -!- Meee3333 [~textual@2a01:4c8:102c:56e:c945:3247:ebd:c167] has quit [Client Quit] 08:08 -!- miknotauro [~miknotaur@187.207.5.246] has joined #bitcoin-core-dev 08:13 < promag> jnewbery: jonasschnelli: see #15204 for most complete GUI work, missing "New Wallet..." action 08:13 < gribble> https://github.com/bitcoin/bitcoin/issues/15204 | gui: Add Open External Wallet action by promag · Pull Request #15204 · bitcoin/bitcoin · GitHub 08:13 < achow101> rafalcpp: the depends system is used to compile all dependencies deterministically and as static libraries 08:18 < rafalcpp> achow101: is there any plan on moving to cmake one day? I'm looking to recreating this but in cmake, in next months 08:19 < achow101> rafalcpp: no 08:19 < achow101> autotools currently works. changing to a completely different build system would require tons of work and probably no one would review it since not many people understand build systems 08:20 < rafalcpp> I wonder if automake is not even harder to understand though 08:23 -!- schnerch_ [~schnerchi@p54A797A2.dip0.t-ipconnect.de] has quit [Quit: Leaving...] 08:27 -!- arshbot_ [~harshagol@192.171.244.143] has joined #bitcoin-core-dev 08:28 -!- kexkey [~kexkey@192.230.35.148] has quit [Quit: Scaling pentatonically] 08:28 -!- promag [~promag@83.223.251.39] has quit [Remote host closed the connection] 08:35 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 08:37 -!- kexkey [~kexkey@192.230.35.148] has joined #bitcoin-core-dev 08:53 -!- arshbot_ [~harshagol@192.171.244.143] has quit [Quit: leaving] 08:59 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Remote host closed the connection] 09:00 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 09:01 -!- miknotauro [~miknotaur@187.207.5.246] has quit [Ping timeout: 246 seconds] 09:02 -!- zenogais [~zenogais1@cpe-76-175-74-114.socal.res.rr.com] has joined #bitcoin-core-dev 09:09 -!- jarthur [~jarthur@207.114.244.5] has joined #bitcoin-core-dev 09:13 -!- Zenton [~user@unaffiliated/vicenteh] has quit [Ping timeout: 250 seconds] 09:24 < wumpus> I understand automake/autoconf better than cmake and that's not saying a lot 09:25 -!- ThomasLuong [~ThomasLuo@170.199.232.138] has joined #bitcoin-core-dev 09:25 < wumpus> I'd nack moving to a different build system, it's just not a good use of limited reviewer bandwidth, and it will take ages to fix all the little problems again we've managed to with this build system 09:40 -!- ikus [c84255fa@gateway/web/freenode/ip.200.66.85.250] has joined #bitcoin-core-dev 09:40 < ikus> Hello 09:42 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 09:53 -!- jungly [~quassel@host97-200-static.8-79-b.business.telecomitalia.it] has quit [Remote host closed the connection] 09:58 -!- achow101 [~achow101@unaffiliated/achow101] has quit [Ping timeout: 244 seconds] 10:00 -!- achow101 [~achow101@unaffiliated/achow101] has joined #bitcoin-core-dev 10:01 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 10:02 -!- zenogais [~zenogais1@cpe-76-175-74-114.socal.res.rr.com] has quit [Ping timeout: 272 seconds] 10:10 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 245 seconds] 10:23 -!- zenogais [~zenogais1@cpe-76-175-74-114.socal.res.rr.com] has joined #bitcoin-core-dev 10:26 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 10:27 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 10:31 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has quit [Quit: pinheadmz] 10:31 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 10:35 < jnewbery> promag: thanks. After #15204, is there just a 'create wallet' menu item to add and then we're done? 10:35 < gribble> https://github.com/bitcoin/bitcoin/issues/15204 | gui: Add Open External Wallet action by promag · Pull Request #15204 · bitcoin/bitcoin · GitHub 10:38 < promag> jnewbery: yes I think so 10:39 < promag> jnewbery: create wallet should open a dialog to ask for: name / external path, create empty? encrypted? 10:39 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 10:44 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 10:44 < midnightmagic> Well.. boost's jam is way easier to build for, and a faster build too. But. Lot of work and hard to get right for multi-platform. :-/ 10:45 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 256 seconds] 10:45 < jnewbery> I'd leave createempty and encrypted out for now to avoid dependency on 14938 and 15006. Seems like it shouldn't be too difficult to add those checkboxes in a follow-up 10:46 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 10:46 < jnewbery> I'd really love to see load/unload/create wallet in the GUI for 0.18. Avoiding dependencies on other PRs increases the chances of us making it. 10:47 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 10:54 -!- ThomasLuong [~ThomasLuo@170.199.232.138] has quit [Read error: Connection reset by peer] 10:54 < promag> I think I can submit the "create wallet" pr this weekend 10:55 -!- ThomasLuong [~ThomasLuo@170.199.232.138] has joined #bitcoin-core-dev 10:55 < promag> jnewbery: Avoiding dependencies on other PRs increases the chances of us making it -> you mean dependencies to 14938 and 15006? 10:55 < promag> I don't want to depend on those 10:56 < promag> initially I had the "file -> new wallet" use QInputDialog to type the wallet name 10:57 < promag> and "file -> new external wallet" to use QFileDialog 10:57 < promag> but I think I should create a dialog/wizard to easily extend with those options later 11:03 < jnewbery> I think the distinction between open wallet and open external wallet (also new wallet and new external wallet) is probably confusing for most users. I'd lean towards just having one menu item for each 11:03 < jnewbery> yes, I mean avoid having createempty and encrypted as options for create wallet, since that's unmerged functionality 11:04 < promag> fot that (just one open wallet action) I would have to create a custom dialog 11:05 < promag> Unless I add "file -> open wallet -> other ..." at the end of the menu 11:06 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has quit [Quit: pinheadmz] 11:07 < promag> jnewbery: I also think it's fair to improve after 0.18 11:07 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 11:08 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-aqbaczvoxfzjuubp] has joined #bitcoin-core-dev 11:08 < bitcoin-git> [bitcoin] jamesob opened pull request #15205: validation: avoid potential deadlocks in ValidationInterface (master...2019-01-avoid-validationqueue-deadlock) https://github.com/bitcoin/bitcoin/pull/15205 11:08 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-aqbaczvoxfzjuubp] has left #bitcoin-core-dev [] 11:11 -!- ikus [c84255fa@gateway/web/freenode/ip.200.66.85.250] has quit [Ping timeout: 256 seconds] 11:14 -!- kexkey [~kexkey@192.230.35.148] has quit [Quit: Scaling pentatonically] 11:14 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Remote host closed the connection] 11:15 -!- kexkey [~kexkey@192.230.35.148] has joined #bitcoin-core-dev 11:32 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 11:37 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 11:48 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 244 seconds] 11:50 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 11:53 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 11:55 -!- spaced0ut [~spaced0ut@unaffiliated/spaced0ut] has quit [Ping timeout: 250 seconds] 11:59 -!- spaced0ut [~spaced0ut@unaffiliated/spaced0ut] has joined #bitcoin-core-dev 12:08 -!- farmerwampum [~farmerwam@184.75.220.106] has joined #bitcoin-core-dev 12:21 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-frexgqolnvjyvkof] has joined #bitcoin-core-dev 12:21 < bitcoin-git> [bitcoin] jonasschnelli pushed 4 new commits to master: https://github.com/bitcoin/bitcoin/compare/cd42553b1178...63144335becb 12:21 < bitcoin-git> bitcoin/master cefb399 João Barbosa: gui: Use AutoConnection for WalletModel::unload signal 12:21 < bitcoin-git> bitcoin/master 8fa271f João Barbosa: gui: Add WalletController 12:21 < bitcoin-git> bitcoin/master 0dd9bde João Barbosa: gui: Refactor to use WalletController 12:21 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-frexgqolnvjyvkof] has left #bitcoin-core-dev [] 12:22 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-lkrguhcwowefxozo] has joined #bitcoin-core-dev 12:22 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #15101: gui: Add WalletController (master...2019-01-walletcontroller) https://github.com/bitcoin/bitcoin/pull/15101 12:22 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-lkrguhcwowefxozo] has left #bitcoin-core-dev [] 12:24 -!- kexkey [~kexkey@192.230.35.148] has quit [Quit: Scaling pentatonically] 12:28 -!- farmerwampum [~farmerwam@184.75.220.106] has quit [Quit: farmerwampum] 12:28 -!- farmerwampum [~farmerwam@184.75.220.106] has joined #bitcoin-core-dev 12:30 -!- riemann_ [~riemann@217.96.166.17.ipv4.supernova.orange.pl] has joined #bitcoin-core-dev 12:30 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 250 seconds] 12:32 -!- laurentmt [~Thunderbi@78.157.211.238] has joined #bitcoin-core-dev 12:32 -!- riemann [~riemann@217.96.166.17.ipv4.supernova.orange.pl] has quit [Ping timeout: 245 seconds] 12:33 -!- farmerwampum [~farmerwam@184.75.220.106] has quit [Client Quit] 12:33 -!- farmerwampum [~farmerwam@184.75.220.106] has joined #bitcoin-core-dev 12:34 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 12:34 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 12:39 < promag> jonasschnelli ty \o/ 12:39 < jnewbery> I agree! \o/ 12:39 -!- DougieBot5000_ [~DougieBot@unaffiliated/dougiebot5000] has joined #bitcoin-core-dev 12:39 < jonasschnelli> I think its good enough,... minor comment improvements (and similar things) can be done later 12:39 < promag> jnewbery: typo in "Add an "opem wallet" command in bitcoin-qt" 13059 12:39 -!- DougieBot5000 is now known as Guest50915 12:39 -!- DougieBot5000_ is now known as DougieBot5000 12:40 < jnewbery> fixed. Thanks 12:40 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-hzahicogcwvpwdip] has joined #bitcoin-core-dev 12:40 < bitcoin-git> [bitcoin] promag closed pull request #13100: gui: Add dynamic wallets support (master...2018-04-ui-open-wallet) https://github.com/bitcoin/bitcoin/pull/13100 12:40 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-hzahicogcwvpwdip] has left #bitcoin-core-dev [] 12:41 < jnewbery> #15153 is next in the sequence I think. Mind if I add it to high priority? 12:41 < gribble> https://github.com/bitcoin/bitcoin/issues/15153 | gui: Add Open Wallet menu by promag · Pull Request #15153 · bitcoin/bitcoin · GitHub 12:41 < promag> sure 12:41 -!- laurentmt [~Thunderbi@78.157.211.238] has quit [Quit: laurentmt] 12:41 < promag> hope we get "open wallet" and "close wallet" the next couple of days 12:42 -!- Guest50915 [~DougieBot@unaffiliated/dougiebot5000] has quit [Ping timeout: 250 seconds] 12:42 < jnewbery> That'd be great. Thanks for all your work on this! 12:42 < promag> "close all wallets" is optional I think 12:43 < promag> no problem, sorry for the delay 12:44 < promag> had to make listwalletdir, walletlocation in before this. also #14670 to a lot to fix 12:44 < gribble> https://github.com/bitcoin/bitcoin/issues/14670 | http: Fix HTTP server shutdown by promag · Pull Request #14670 · bitcoin/bitcoin · GitHub 12:44 < promag> *took a lot 12:46 < jnewbery> yeah, that one took a while. I don't think there have been any complaints since 14670 so hopefully we won't have to touch that again 12:50 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Remote host closed the connection] 12:50 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has joined #bitcoin-core-dev 12:53 -!- ranabd36 [670ff785@gateway/web/freenode/ip.103.15.247.133] has joined #bitcoin-core-dev 12:53 < jonasschnelli> #14353 needs re-acks and another review (easy to review) 12:53 < gribble> https://github.com/bitcoin/bitcoin/issues/14353 | REST: add blockhash call, fetch blockhash by height by jonasschnelli · Pull Request #14353 · bitcoin/bitcoin · GitHub 12:54 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has quit [Quit: pinheadmz] 12:55 -!- promag [~promag@bl22-246-44.dsl.telepac.pt] has quit [Ping timeout: 246 seconds] 12:55 -!- ranabd36 [670ff785@gateway/web/freenode/ip.103.15.247.133] has quit [Client Quit] 13:02 -!- mistergold [~mistergol@37.19.107.231] has joined #bitcoin-core-dev 13:04 -!- zivl [~zivl@unaffiliated/zivl] has joined #bitcoin-core-dev 13:08 -!- riemann_ [~riemann@217.96.166.17.ipv4.supernova.orange.pl] has quit [Ping timeout: 268 seconds] 13:11 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 13:16 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-rclpcpyqsydlleib] has joined #bitcoin-core-dev 13:16 < bitcoin-git> [bitcoin] jonasschnelli opened pull request #15206: p2p: immediately disconnect on invalid net message checksum (master...2019/01/netmsg_2) https://github.com/bitcoin/bitcoin/pull/15206 13:16 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-rclpcpyqsydlleib] has left #bitcoin-core-dev [] 13:31 -!- kinlo [~peter@unaffiliated/kinlo] has quit [Quit: brb] 13:31 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 13:35 -!- kinlo [~peter@unaffiliated/kinlo] has joined #bitcoin-core-dev 13:36 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 13:38 -!- farmerwampum [~farmerwam@184.75.220.106] has quit [Quit: farmerwampum] 13:39 -!- spaced0ut [~spaced0ut@unaffiliated/spaced0ut] has quit [Quit: Leaving] 13:40 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 13:44 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 13:45 -!- farmerwampum [~farmerwam@184.75.220.106] has joined #bitcoin-core-dev 13:48 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 13:50 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 13:54 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 14:01 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has quit [Quit: pinheadmz] 14:02 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 14:04 -!- mistergo1d [~mistergol@37.19.107.231] has joined #bitcoin-core-dev 14:05 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 272 seconds] 14:07 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 14:08 -!- mistergold [~mistergol@37.19.107.231] has quit [Ping timeout: 268 seconds] 14:09 < jnewbery> jonasschnelli: done! 14:10 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 14:32 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 14:32 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 14:46 -!- jarthur_ [~jarthur@207.114.244.5] has joined #bitcoin-core-dev 14:48 -!- jarthur [~jarthur@207.114.244.5] has quit [Ping timeout: 268 seconds] 14:49 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 14:50 -!- farmerwampum [~farmerwam@184.75.220.106] has quit [Ping timeout: 244 seconds] 14:56 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 14:57 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Read error: Connection reset by peer] 14:58 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 15:01 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 15:03 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 15:05 -!- kexkey [~kexkey@192.230.35.148] has joined #bitcoin-core-dev 15:05 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 15:07 -!- jarthur_ is now known as jarthur 15:09 -!- TX1683 [~TX1683@unaffiliated/tx1683] has quit [Ping timeout: 246 seconds] 15:10 -!- kexkey [~kexkey@192.230.35.148] has quit [Ping timeout: 250 seconds] 15:10 -!- michaelsdunn1 [~michaelsd@unaffiliated/michaelsdunn1] has quit [Remote host closed the connection] 15:12 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 15:15 -!- TX1683 [~TX1683@unaffiliated/tx1683] has joined #bitcoin-core-dev 15:26 -!- kexkey [~kexkey@192.230.35.148] has joined #bitcoin-core-dev 15:32 -!- ratonlaveur [~ratonlave@192.230.35.138] has joined #bitcoin-core-dev 15:33 -!- farmerwampum [~farmerwam@184.75.220.106] has joined #bitcoin-core-dev 15:38 -!- jarthur [~jarthur@207.114.244.5] has quit [Remote host closed the connection] 15:38 -!- farmerwampum [~farmerwam@184.75.220.106] has quit [Ping timeout: 244 seconds] 15:38 -!- jarthur [~jarthur@207.114.244.5] has joined #bitcoin-core-dev 15:40 -!- pinheadmz [~matthewzi@104-56-112-203.lightspeed.sntcca.sbcglobal.net] has quit [Quit: pinheadmz] 15:42 -!- ratonlaveur_ [~ratonlave@132.205.230.9] has joined #bitcoin-core-dev 15:42 -!- ratonlaveur__ [~ratonlave@192.230.35.138] has joined #bitcoin-core-dev 15:42 -!- ratonlaveur [~ratonlave@192.230.35.138] has quit [Ping timeout: 244 seconds] 15:47 -!- ratonlaveur_ [~ratonlave@132.205.230.9] has quit [Ping timeout: 268 seconds] 15:56 -!- jarthur [~jarthur@207.114.244.5] has quit [] 15:58 -!- coco [ba34855b@gateway/web/freenode/ip.186.52.133.91] has joined #bitcoin-core-dev 16:01 < coco> I've read about DAGs and how they compare to 'block chains', and I don't find any good explanation on how they avoid the Double Spending problem. Any insight? 16:06 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 16:07 < sipa> coco: #bitcoin-wizards or so 16:07 < sipa> this channel is about development of the bitcoin core software, not wild redesigns 16:09 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 272 seconds] 16:13 < coco> @sipa, sorry!, will post it there. Thanks 16:26 -!- rex4539 [~rex4539@ppp-2-84-172-204.home.otenet.gr] has quit [Quit: rex4539] 16:29 -!- coco [ba34855b@gateway/web/freenode/ip.186.52.133.91] has quit [Ping timeout: 256 seconds] 17:09 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-core-dev 17:10 -!- ThomasLuong [~ThomasLuo@170.199.232.138] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 17:14 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has quit [Ping timeout: 256 seconds] 17:16 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 17:29 -!- ratonlaveur [~ratonlave@192.230.35.138] has joined #bitcoin-core-dev 17:31 -!- IGHOR_ [~quassel@93.178.216.72] has quit [Quit: http://quassel-irc.org ? ??????????? ?????????. ????-??.] 17:31 -!- ratonlaveur__ [~ratonlave@192.230.35.138] has quit [Ping timeout: 268 seconds] 17:36 -!- IGHOR [~quassel@93.178.216.72] has joined #bitcoin-core-dev 18:04 -!- ratonlaveur [~ratonlave@192.230.35.138] has quit [Ping timeout: 250 seconds] 18:23 -!- kexkey [~kexkey@192.230.35.148] has quit [Ping timeout: 240 seconds] 18:31 -!- mistergo1d [~mistergol@37.19.107.231] has quit [Quit: leaving] 18:33 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Remote host closed the connection] 18:33 -!- nelsonhb [~Instantbi@49.125.50.5] has joined #bitcoin-core-dev 18:36 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 18:37 -!- rh0nj [~rh0nj@88.99.167.175] has quit [Remote host closed the connection] 18:38 -!- rh0nj [~rh0nj@88.99.167.175] has joined #bitcoin-core-dev 18:42 -!- hebasto_ [~hebasto@95.164.65.194] has quit [Remote host closed the connection] 18:45 -!- nelsonhb [~Instantbi@49.125.50.5] has quit [K-Lined] 18:55 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has quit [Remote host closed the connection] 18:55 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 18:59 -!- irc_viewer_test [irc_viewer@gateway/vpn/privateinternetaccess/ircviewertest/x-06412631] has joined #bitcoin-core-dev 18:59 -!- Krellan [~Krellan@50-242-94-241-static.hfc.comcastbusiness.net] has quit [Ping timeout: 250 seconds] 19:12 -!- irc_viewer_test [irc_viewer@gateway/vpn/privateinternetaccess/ircviewertest/x-06412631] has quit [Quit: irc_viewer_test] 19:26 -!- irc_viewer_test [irc_viewer@gateway/vpn/privateinternetaccess/ircviewertest/x-06412631] has joined #bitcoin-core-dev 19:30 -!- irc_viewer_test [irc_viewer@gateway/vpn/privateinternetaccess/ircviewertest/x-06412631] has quit [Client Quit] 19:32 -!- Murch [~murch@50-200-105-218-static.hfc.comcastbusiness.net] has quit [Quit: Snoozing.] 20:50 -!- zenogais [~zenogais1@cpe-76-175-74-114.socal.res.rr.com] has quit [Ping timeout: 272 seconds] 21:11 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 268 seconds] 21:13 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 21:25 -!- dfgdfgd [2758bd44@gateway/web/freenode/ip.39.88.189.68] has joined #bitcoin-core-dev 21:26 -!- dfgdfgd [2758bd44@gateway/web/freenode/ip.39.88.189.68] has quit [Client Quit] 21:46 -!- DeanGuss [~dean@gateway/tor-sasl/deanguss] has joined #bitcoin-core-dev 21:50 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-xibhxpaydsrlwzsw] has joined #bitcoin-core-dev 21:50 < bitcoin-git> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/63144335becb...f55808ad6939 21:50 < bitcoin-git> bitcoin/master 4e81438 Ben Woosley: build: Drop macports support... 21:50 < bitcoin-git> bitcoin/master f55808a Jonas Schnelli: Merge #15175: build: Drop macports support... 21:50 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-xibhxpaydsrlwzsw] has left #bitcoin-core-dev [] 21:51 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-sukyqleedyswlcap] has joined #bitcoin-core-dev 21:51 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #15175: build: Drop macports support (master...drop-macports) https://github.com/bitcoin/bitcoin/pull/15175 21:51 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-sukyqleedyswlcap] has left #bitcoin-core-dev [] 21:53 < jonasschnelli> Is there a way to restart the AppVeyor build of a PR? 21:57 < fanquake> jonasschnelli yes, you should be able to on the appveyor site 21:57 < fanquake> Which PR do you need restarted? 21:57 < fanquake> (restarting also requires login/auth with GitHub) 21:57 < jonasschnelli> fanquake: https://ci.appveyor.com/project/DrahtBot/bitcoin/builds/21730701 21:58 < jonasschnelli> I logged in now but have no clue how to restart... |) 21:58 < fanquake> jonasschnelli ok, I have restarted it now 21:58 < jonasschnelli> fanquake: Thanks! 22:52 -!- Krellan [~Krellan@2601:640:4000:a876:bcec:d37f:187d:846] has joined #bitcoin-core-dev 22:56 -!- booyah [~bb@193.25.1.157] has quit [Excess Flood] 23:11 -!- booyah [~bb@193.25.1.157] has joined #bitcoin-core-dev 23:16 -!- booyah [~bb@193.25.1.157] has quit [Ping timeout: 245 seconds] 23:38 -!- pinheadmz [~matthewzi@c-76-102-227-220.hsd1.ca.comcast.net] has joined #bitcoin-core-dev --- Log closed Sat Jan 19 00:00:25 2019