--- Day changed Tue Jun 19 2018 00:01 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 255 seconds] 00:02 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [] 00:11 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 00:24 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 240 seconds] 00:25 < bitcoin-git> [bitcoin] jonasschnelli pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/088240685456...3f398d7a17f1 00:25 < bitcoin-git> bitcoin/master fa6e497 MarcoFalke: rpc: Avoid "duplicate" return value for invalid submitblock 00:25 < bitcoin-git> bitcoin/master f748944 Matt Corallo: Only set fNewBlock to true in AcceptBlock when we write to disk... 00:25 < bitcoin-git> bitcoin/master 3f398d7 Jonas Schnelli: Merge #13439: rpc: Avoid "duplicate" return value for invalid submitblock... 00:26 < bitcoin-git> [bitcoin] jonasschnelli closed pull request #13439: rpc: Avoid "duplicate" return value for invalid submitblock (master...2018-06-marcos-submitblock-fix) https://github.com/bitcoin/bitcoin/pull/13439 00:28 -!- Krellan [~Krellan@2601:640:4000:9258:214e:c5e5:8920:cfd1] has quit [Ping timeout: 260 seconds] 00:30 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has joined #bitcoin-core-dev 00:30 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 00:37 -!- helo [~helo@unaffiliated/helo] has quit [Ping timeout: 260 seconds] 00:39 -!- helo [~helo@unaffiliated/helo] has joined #bitcoin-core-dev 00:42 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 00:45 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 00:59 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has quit [Ping timeout: 256 seconds] 00:59 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 256 seconds] 01:02 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 01:03 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has joined #bitcoin-core-dev 01:03 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 01:06 < jonasschnelli> Regarding BIP174 (PSBT), the BIP32 derivation path is global, does that mean that each Co-Signer must use the same master key? Or is that global value per PSBT file which is per co-signer different? 01:07 < jonasschnelli> ^ achow101 01:08 < achow101> jonasschnelli: not all signers need to be able to produce the private key for a public key in the derivation paths 01:08 < achow101> that's just there as a "here is some information that may be useful, use it as you wish" 01:08 < achow101> co signers can use different master keys 01:08 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has quit [Ping timeout: 245 seconds] 01:09 < jonasschnelli> achow101: so in multisig accoding to Bip45 or similar, this information (BIP32 derivation path) would be of no value to the signers, right? 01:09 -!- vicenteH [~user@97.red-83-50-45.dynamicip.rima-tde.net] has joined #bitcoin-core-dev 01:10 < achow101> I think the derivation paths would still be useful 01:10 < jonasschnelli> How would a cosigner figure out what key he needs to derive for signing a multisig UTXO? 01:11 -!- StopAndDecrypt [~StopAndDe@c-73-215-253-208.hsd1.nj.comcast.net] has joined #bitcoin-core-dev 01:11 -!- StopAndDecrypt [~StopAndDe@c-73-215-253-208.hsd1.nj.comcast.net] has quit [Changing host] 01:11 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has joined #bitcoin-core-dev 01:11 < jonasschnelli> By taking the global BIP32 keypath but not looking at the fingerprint/masterkey? 01:11 < achow101> jonasschnelli: the idea is that suppose you have a signer who just has a master private key. Using the derivation paths, he can find which pubkeys that he can sign for because they have his master key fingerprint so then he can derive their private keys and sign 01:13 < jonasschnelli> a) why would the signer need the fingerprint? Wouldn't the path be sufficient? 01:14 < jonasschnelli> b) What if creator and signer are in a non trusted relationship... the only thing i'd like to tell the creator – if I would be a signer – is my pubkey for creating the MS address. 01:14 < achow101> a) in the bip45 case, the path would be sufficient. but bip45 is not guaranteed 01:15 < achow101> b) then there is no need for a derivation path entry for that pubkey 01:15 < achow101> derivation paths is only there to tell a wallet how to get the private key if it doesn't already know it 01:16 < jonasschnelli> Okay. I see. I think it was not obvious to me by reading the BIP that one could fill in the path but present 0 bytes for the fingerprint 01:16 < achow101> ... that is not allowed 01:16 < jonasschnelli> hmm... 01:17 < jonasschnelli> achow101: Can we go through the BIP 2-of-3 usecase: https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki#2-of-3-multisig-workflow? 01:17 < gribble> https://github.com/bitcoin/bitcoin/issues/2 | Long-term, safe, store-of-value · Issue #2 · bitcoin/bitcoin · GitHub 01:17 < achow101> ok.. 01:17 < jonasschnelli> Alice (creator) would she need to know the fingerpritn of Bob's /Caroles master? 01:18 < achow101> no 01:18 < achow101> however Bob and Carol can provide it if they want to 01:18 < jonasschnelli> achow101: would she just not provide the BIP32 derivation key/value? 01:18 < achow101> yes, there would simply be no BIP 32 derivations if neither Bob or Carol provided their master fingerprint 01:19 < achow101> If one provided, then there would only be one BIP 32 derivation entry 01:19 < jonasschnelli> But that means, Carol (HWW) would need a map of utxo-addresses-to-keypath in order to derive the key required for signing, right? 01:19 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has quit [Remote host closed the connection] 01:19 -!- timothy [tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:19 < achow101> yes 01:19 -!- StopAndDecrypt [~StopAndDe@c-73-215-253-208.hsd1.nj.comcast.net] has joined #bitcoin-core-dev 01:19 < achow101> so in this case, Carol would probably want to provide the master fingerprint 01:20 -!- StopAndDecrypt [~StopAndDe@c-73-215-253-208.hsd1.nj.comcast.net] has quit [Changing host] 01:20 -!- StopAndDecrypt [~StopAndDe@unaffiliated/stopanddecrypt] has joined #bitcoin-core-dev 01:20 < jonasschnelli> Though, we assume now, they are using BIP45 or another deterministic MS address generation scheme... 01:20 < jonasschnelli> Is there a K/V where Alice could tell Carol which keypath they should use without telling or knowing its fingerprint? 01:21 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 01:21 < achow101> no 01:21 < jonasschnelli> Would that make sense to have a such field? or allow BIP32 keypath without fingerprint/master key reference? 01:22 < achow101> presumably with BIP 45 the master key fingerprint would already be known, no? 01:22 < jonasschnelli> Yes. I think so... 01:22 -!- BashCo_ [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 01:23 < jonasschnelli> But not if we would go with sipa change request (see ML) 01:23 < jonasschnelli> though... eventually.. 01:24 < jonasschnelli> achow101: I was just playing an example in my head where cosigner would not share xpubs (not BIP45) since sharing the xpub is a security and privacy risk... 01:24 < jonasschnelli> I think MS creation should be possible by just sharing a range of pubkeys 01:24 < achow101> jonasschnelli: which change? the "generic key offset" one? 01:24 < jonasschnelli> "For that reason I would suggest that the derivation paths include the 01:24 < jonasschnelli> full public key and chaincode of the parent or master things are 01:24 < jonasschnelli> derived from. This does mean that the Creator needs to know the full 01:24 < jonasschnelli> xpub which things are derived from, rather than just its fingerprin" 01:24 < achow101> oh that. 01:25 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 248 seconds] 01:26 < achow101> jonasschnelli: not having a bip32 derivation path entry is completely fine. The signers just need to parse the redeemscript for that input to figure out what keys are required and check whether they have them 01:27 < jonasschnelli> I see... thanks 01:28 < jonasschnelli> achow101: from the BIP "The master key fingerprint concatenated with the derivation path of the public key" 01:28 < jonasschnelli> Is "public" in "public key" relevant here? 01:28 < jonasschnelli> Since a derivation path refers to pub & priv, right? 01:29 < achow101> the "public" isn't relevant 01:29 < jonasschnelli> Same here: "Public keys can be those that will be needed to sign any type of key hash input or is spent to by an output" 01:30 < achow101> the pubkey is the key of the KV pair for bip32 derivation paths. so I just worded it to refer to that pubkey 01:30 < jonasschnelli> Okay. I see 01:32 < jonasschnelli> achow101: again for my clarification (sorry if I'm bothering you): using the 0x03 type (BIP32 derivation path) would mean, that each Co-Signer (in case of a multisig) would require to use the same masterkey (if we assume they have no capabilities to derive keys based on just the pubkey)? 01:33 < achow101> no. there can be multiple bip32 derivation paths, each corresponding to a different key 01:34 < achow101> so pubkey 1 can have master key 1 and derivation path 1, and pubkey 2 can have a different master key 2 and derivation path 2. both get their own 0x03 type records 01:36 < jonasschnelli> Ah.. I see. The uniqueness is not on the k/v number (0x03) its for the whole key (ex. 0x03&pubkey) 01:36 < achow101> yes 01:38 < jonasschnelli> Thanks achow101 01:40 < jonasschnelli> achow101: the current K/V value type (k/v size depending on type) seems to disallow backward compatibility, is that sipa point on the mailing list? 01:40 < achow101> how so? 01:40 < jonasschnelli> (old clients may fail to skip k/v's they don't know) 01:40 < achow101> the size includes the type 01:40 < jonasschnelli> Oh.. right. I see 01:41 < achow101> it's 01:41 < achow101> so sizes will always be known 01:41 < jonasschnelli> Indeed. So clients can skip unknown k/v types 01:41 < achow101> yep 01:42 < jonasschnelli> Okay. I see the point on the ML was more that, instead of K/V, we could use a set of record... since somce K/V have acctually no K 01:42 < jonasschnelli> *some 01:42 < achow101> yeah.. 01:55 -!- timothy [tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 02:01 -!- timothy [tredaelli@redhat/timothy] has joined #bitcoin-core-dev 02:02 -!- promag [~promag@83.223.234.41] has joined #bitcoin-core-dev 02:02 -!- vicenteH [~user@97.red-83-50-45.dynamicip.rima-tde.net] has quit [Read error: Connection reset by peer] 02:03 -!- vicenteH [~user@97.red-83-50-45.dynamicip.rima-tde.net] has joined #bitcoin-core-dev 02:04 < promag> jonasschnelli: does unloadwallet lgty? 02:04 < jonasschnelli> yes.. I just had a crash on regtest while executing generate 1 ... but not sure if it is related to that change 02:05 < jonasschnelli> promag: can you try to load / unload and play a bit with generate 1 02:05 < jonasschnelli> Could also be related to my disableprivatekey work 02:05 < jonasschnelli> But in general it looks good... I think it needs other acks before merge 02:05 < promag> you are rebased on unloadwallet? 02:06 < promag> I hope jnewbery can look at it again 02:25 -!- kabaum [~kabaum@2.69.139.113.mobile.tre.se] has joined #bitcoin-core-dev 02:39 < jonasschnelli> promag: I did some local changes on top of unloadwallet (just because I forgot to reset back to master) 02:40 < promag> jonasschnelli: I'm on #13501 but then I'll try the above 02:40 < gribble> https://github.com/bitcoin/bitcoin/issues/13501 | Remove race on shutdown between event loop exit and http reply by promag · Pull Request #13501 · bitcoin/bitcoin · GitHub 02:50 -!- jtimon [~quassel@40.28.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 03:06 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has quit [Quit: ExtraCrispy] 03:06 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has joined #bitcoin-core-dev 03:07 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 03:09 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 03:22 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has quit [Ping timeout: 265 seconds] 03:31 -!- hri [2bf19225@gateway/web/freenode/ip.43.241.146.37] has joined #bitcoin-core-dev 03:31 < hri> hi 03:32 -!- hri [2bf19225@gateway/web/freenode/ip.43.241.146.37] has quit [Client Quit] 03:40 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 03:40 -!- Gnappuraz [5f5bf58c@gateway/web/freenode/ip.95.91.245.140] has joined #bitcoin-core-dev 03:41 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 03:43 -!- Gnappuraz [5f5bf58c@gateway/web/freenode/ip.95.91.245.140] has left #bitcoin-core-dev [] 03:44 -!- Gnappuraz [5f5bf58c@gateway/web/freenode/ip.95.91.245.140] has joined #bitcoin-core-dev 03:44 -!- Gnappuraz [5f5bf58c@gateway/web/freenode/ip.95.91.245.140] has left #bitcoin-core-dev [] 03:48 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 03:50 -!- promag_ [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 03:54 -!- promag [~promag@83.223.234.41] has quit [Ping timeout: 256 seconds] 04:00 -!- jpe [~jpe@217.66.60.5] has quit [Quit: Leaving] 04:00 -!- kabaum [~kabaum@2.69.139.113.mobile.tre.se] has quit [Ping timeout: 260 seconds] 04:18 -!- laurentmt [~Thunderbi@185.94.189.189] has joined #bitcoin-core-dev 04:19 -!- laurentmt [~Thunderbi@185.94.189.189] has quit [Client Quit] 04:28 -!- Ruby69Trantow [~Ruby69Tra@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 04:34 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 04:54 -!- Gnappuraz [5f5bf58c@gateway/web/freenode/ip.95.91.245.140] has joined #bitcoin-core-dev 05:08 -!- ula [~ula@b2b-78-94-11-194.unitymedia.biz] has joined #bitcoin-core-dev 05:09 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 276 seconds] 05:11 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-core-dev 05:16 -!- vicenteH [~user@97.red-83-50-45.dynamicip.rima-tde.net] has quit [Ping timeout: 256 seconds] 05:30 -!- kabaum [~kabaum@94.234.33.116] has joined #bitcoin-core-dev 05:51 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 05:58 -!- ccook [~ccook@208.66.192.142] has quit [Ping timeout: 256 seconds] 06:01 -!- kabaum [~kabaum@94.234.33.116] has quit [Read error: Connection reset by peer] 06:10 -!- quer [~quer@unaffiliated/quer] has joined #bitcoin-core-dev 06:49 < bitcoin-git> [bitcoin] practicalswift opened pull request #13503: Document FreeBSD quirk. Fix FreeBSD build: Cast to int to allow std::min to work under FreeBSD. (master...document-freebsd-quirk) https://github.com/bitcoin/bitcoin/pull/13503 06:50 -!- goatpig [56f7fd2b@gateway/web/freenode/ip.86.247.253.43] has quit [Ping timeout: 260 seconds] 07:10 -!- dendisuhubdy [~dendisuhu@keatext-srx100.isp.ip4b.net] has joined #bitcoin-core-dev 07:13 -!- vicenteH [~user@54.104.135.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 07:28 < bitcoin-git> [bitcoin] practicalswift closed pull request #13503: Document FreeBSD quirk. Fix FreeBSD build: Cast to int to allow std::min to work under FreeBSD. (master...document-freebsd-quirk) https://github.com/bitcoin/bitcoin/pull/13503 07:29 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 240 seconds] 07:34 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 07:34 -!- Gnappuraz [5f5bf58c@gateway/web/freenode/ip.95.91.245.140] has quit [Ping timeout: 260 seconds] 07:38 -!- Krellan [~Krellan@2601:640:4000:9258:214e:c5e5:8920:cfd1] has joined #bitcoin-core-dev 07:39 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 256 seconds] 07:41 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 07:49 -!- brianhoffman [~brianhoff@pool-173-66-26-200.washdc.fios.verizon.net] has quit [Read error: Connection reset by peer] 07:49 -!- brianhoffman [~brianhoff@pool-173-66-26-200.washdc.fios.verizon.net] has joined #bitcoin-core-dev 08:09 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 264 seconds] 08:21 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has joined #bitcoin-core-dev 08:34 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has joined #bitcoin-core-dev 08:44 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 260 seconds] 08:45 -!- jhfrontz [~Adium@c-73-23-68-28.hsd1.fl.comcast.net] has quit [Quit: Leaving.] 08:47 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 08:50 -!- zfrohardt [32f36641@gateway/web/freenode/ip.50.243.102.65] has joined #bitcoin-core-dev 08:52 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 256 seconds] 08:52 -!- tsle1850 [~tsl1125@12.161.174.234] has joined #bitcoin-core-dev 08:59 -!- Dizzle [~dizzle@108.171.182.16] has joined #bitcoin-core-dev 09:03 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 09:04 -!- Krellan [~Krellan@2601:640:4000:9258:214e:c5e5:8920:cfd1] has quit [Ping timeout: 265 seconds] 09:41 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 09:46 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 256 seconds] 09:47 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 09:56 -!- Dizzle [~dizzle@108.171.182.16] has quit [Quit: Leaving...] 09:57 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 10:01 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 10:04 -!- ExtraCrispy [~ExtraCris@185.9.18.150] has quit [Remote host closed the connection] 10:04 -!- Krellan [~Krellan@2601:640:4000:9258:214e:c5e5:8920:cfd1] has joined #bitcoin-core-dev 10:05 < bitcoin-git> [bitcoin] promag closed pull request #13492: Fix reply not sent when event loop terminates prematurely (master...2018-06-http-shutdown) https://github.com/bitcoin/bitcoin/pull/13492 10:06 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 255 seconds] 10:06 -!- Krellan [~Krellan@2601:640:4000:9258:214e:c5e5:8920:cfd1] has quit [Remote host closed the connection] 10:09 -!- timothy [tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 10:13 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 10:25 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 10:27 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has quit [Read error: Connection reset by peer] 10:27 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 10:34 < promag_> wumpus: MarcoFalke: cfields: fyi #13501 10:34 < gribble> https://github.com/bitcoin/bitcoin/issues/13501 | Remove race on shutdown between event loop exit and http reply by promag · Pull Request #13501 · bitcoin/bitcoin · GitHub 10:34 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 248 seconds] 10:41 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has joined #bitcoin-core-dev 10:49 -!- grafcaps [~haroldbr@104.137.194.255] has joined #bitcoin-core-dev 10:53 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 11:01 < michagogo> Hm, the Debian bug that keeps us in unstable just got closed 11:03 -!- promag_ [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 11:04 -!- Teflon [2f138693@gateway/web/freenode/ip.47.19.134.147] has joined #bitcoin-core-dev 11:11 -!- Teflon [2f138693@gateway/web/freenode/ip.47.19.134.147] has quit [Quit: Page closed] 11:14 < michagogo> Do you think that’s okay, or should we argue against that? 11:15 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 11:28 -!- kurito [~kurito@107.167.5.92] has joined #bitcoin-core-dev 11:29 -!- dendisuhubdy [~dendisuhu@keatext-srx100.isp.ip4b.net] has quit [Quit: Leaving...] 11:38 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 11:44 -!- bitconner [~conner@a109-49-178-236.cpe.netcabo.pt] has quit [Ping timeout: 248 seconds] 11:46 < bitcoin-git> [bitcoin] skeees closed pull request #12801: Add option to only notify after wallet transactions are confirmed (master...notifycount) https://github.com/bitcoin/bitcoin/pull/12801 11:49 -!- brianhoffman [~brianhoff@pool-173-66-26-200.washdc.fios.verizon.net] has quit [Ping timeout: 260 seconds] 11:50 -!- brianhoffman [~brianhoff@mobile-166-170-31-59.mycingular.net] has joined #bitcoin-core-dev 11:52 < jonasschnelli> promag why is uiInterface.LoadWallet(walletInstance); called before the CreateWalletFromFile() method can't return an error? 11:53 < jonasschnelli> s/can't/can 11:53 < jonasschnelli> I think uiInterface.LoadWallet(walletInstance); displays the wallet in the GUI but there are various cases where CreateWalletFromFile will refuse loading the wallet after that uiInterface call 11:56 -!- ula [~ula@b2b-78-94-11-194.unitymedia.biz] has quit [Ping timeout: 240 seconds] 11:57 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has joined #bitcoin-core-dev 11:59 -!- kurito_ [~kurito@190-36-183-150.dyn.dsl.cantv.net] has joined #bitcoin-core-dev 12:02 -!- kurito [~kurito@107.167.5.92] has quit [Ping timeout: 248 seconds] 12:09 -!- kurito_ [~kurito@190-36-183-150.dyn.dsl.cantv.net] has quit [Ping timeout: 276 seconds] 12:10 -!- ula [~ula@b2b-78-94-11-194.unitymedia.biz] has joined #bitcoin-core-dev 12:12 -!- sam_c [~sam_c@unaffiliated/cmpct] has joined #bitcoin-core-dev 12:13 -!- sam_c [~sam_c@unaffiliated/cmpct] has left #bitcoin-core-dev [] 12:17 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 12:21 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 12:27 -!- tex [~tex@2a02:587:c43b:6500:d446:9b5d:4463:e16f] has joined #bitcoin-core-dev 12:27 -!- tex [~tex@2a02:587:c43b:6500:d446:9b5d:4463:e16f] has left #bitcoin-core-dev ["Leaving"] 12:32 -!- tsle1850 [~tsl1125@12.161.174.234] has quit [Ping timeout: 256 seconds] 12:33 -!- tex [~tex@2a02:587:c43b:6500:d446:9b5d:4463:e16f] has joined #bitcoin-core-dev 12:34 -!- tex [~tex@2a02:587:c43b:6500:d446:9b5d:4463:e16f] has left #bitcoin-core-dev ["Leaving"] 12:38 -!- tsle1850 [~tsl1125@12.161.174.234] has joined #bitcoin-core-dev 12:41 -!- Randolf [~randolf@96.53.47.42] has quit [Ping timeout: 245 seconds] 12:41 < bitcoin-git> [bitcoin] jonasschnelli opened pull request #13506: Qt: load wallet in UI after possible init aborts (master...2018/06/wallet_ui) https://github.com/bitcoin/bitcoin/pull/13506 12:42 -!- booyah [~bb@193.25.1.157] has quit [Ping timeout: 256 seconds] 12:43 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [] 12:46 -!- booyah [~bb@193.25.1.157] has joined #bitcoin-core-dev 12:47 < promag> jonasschnelli: yes, that needs a fix 12:47 < jonasschnelli> promag: See #13506 12:47 < gribble> https://github.com/bitcoin/bitcoin/issues/13506 | Qt: load wallet in UI after possible init aborts by jonasschnelli · Pull Request #13506 · bitcoin/bitcoin · GitHub 12:48 < promag> i think its the same problem in https://github.com/bitcoin/bitcoin/pull/13097#issuecomment-398445833 12:49 < promag> oh that's a new issue 12:53 -!- booyah [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 12:53 -!- booyah [~bb@193.25.1.157] has joined #bitcoin-core-dev 12:54 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 12:55 -!- str4d [~str4d@176.197.125.91.dyn.plus.net] has joined #bitcoin-core-dev 12:56 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 12:57 < promag> jonasschnelli: your fix is obviously correct 12:57 -!- treyzania_ [~treyzania@honeydew.cictr.com] has joined #bitcoin-core-dev 12:57 < jonasschnelli> promag: I wasn't sure but could not find a reason why it can't be called later 12:58 < promag> like I said in your PR, the bug was already there before #13063 12:58 < gribble> https://github.com/bitcoin/bitcoin/issues/13063 | Use shared pointer to retain wallet instance by promag · Pull Request #13063 · bitcoin/bitcoin · GitHub 12:59 < promag> there are a couple of places with "CWallet::CreateWalletFromFile(...); if (!wallet) error; AddWallet(...)" 13:00 < promag> I have a branch with CWallet::LoadWalletFromFile that does that (also WalletManager::LoadWalletFromFile) 13:04 < jonasschnelli> Indeed 13:20 -!- treyzania_ [~treyzania@honeydew.cictr.com] has quit [Quit: Leaving] 13:33 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 13:37 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 13:43 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 264 seconds] 13:45 -!- jtimon [~quassel@40.28.134.37.dynamic.jazztel.es] has quit [Ping timeout: 245 seconds] 13:46 -!- kabaum [~kabaum@2.69.139.113.mobile.tre.se] has joined #bitcoin-core-dev 13:46 -!- zfrohardt [32f36641@gateway/web/freenode/ip.50.243.102.65] has quit [Quit: Page closed] 13:59 -!- Ruby69Trantow [~Ruby69Tra@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 264 seconds] 14:00 -!- brianhoffman [~brianhoff@mobile-166-170-31-59.mycingular.net] has quit [Ping timeout: 265 seconds] 14:07 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 14:08 -!- str4d [~str4d@176.197.125.91.dyn.plus.net] has quit [Ping timeout: 245 seconds] 14:10 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 255 seconds] 14:13 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 14:17 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has quit [Ping timeout: 240 seconds] 14:27 -!- Helene24Fadel [~Helene24F@ns334669.ip-5-196-64.eu] has joined #bitcoin-core-dev 14:37 < bitcoin-git> [bitcoin] kristapsk opened pull request #13507: RPC: Fix parameter count check for importpubkey. (master...importpubkey) https://github.com/bitcoin/bitcoin/pull/13507 14:38 -!- kabaum [~kabaum@2.69.139.113.mobile.tre.se] has quit [Ping timeout: 256 seconds] 14:39 -!- Aaronvan_ is now known as AaronvanW 14:43 -!- DrFeelGood [~DrFeelGoo@unaffiliated/olufunmilayo] has quit [Ping timeout: 240 seconds] 14:44 -!- tsle1850 [~tsl1125@12.161.174.234] has quit [Ping timeout: 264 seconds] 14:44 -!- Randolf [~randolf@24.244.23.231] has joined #bitcoin-core-dev 14:45 -!- DrFeelGood [~DrFeelGoo@unaffiliated/olufunmilayo] has joined #bitcoin-core-dev 14:50 -!- tsle1850 [~tsl1125@12.161.174.234] has joined #bitcoin-core-dev 14:52 -!- jojeyh [~delphi@2602:306:b8b6:b970:3dde:5cdd:bb8a:facc] has joined #bitcoin-core-dev 14:55 -!- belcher [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 14:57 -!- miya [46712ef6@gateway/web/freenode/ip.70.113.46.246] has joined #bitcoin-core-dev 15:02 -!- jojeyh [~delphi@2602:306:b8b6:b970:3dde:5cdd:bb8a:facc] has quit [Ping timeout: 260 seconds] 15:05 -!- jojeyh [~delphi@2602:306:b8b6:b970:3dde:5cdd:bb8a:facc] has joined #bitcoin-core-dev 15:07 -!- Randolf [~randolf@24.244.23.231] has quit [Ping timeout: 268 seconds] 15:09 -!- grafcaps [~haroldbr@104.137.194.255] has quit [Ping timeout: 240 seconds] 15:13 -!- vicenteH [~user@54.104.135.37.dynamic.jazztel.es] has quit [Ping timeout: 268 seconds] 15:18 -!- jtimon [~quassel@40.28.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 15:21 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has quit [Remote host closed the connection] 15:26 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 15:30 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 260 seconds] 15:33 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 15:38 -!- tsle1850 [~tsl1125@12.161.174.234] has quit [Ping timeout: 240 seconds] 15:38 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 240 seconds] 15:38 -!- jimpo [~jimpo@ec2-34-211-143-113.us-west-2.compute.amazonaws.com] has quit [Quit: ZNC 1.6.6 - http://znc.in] 15:40 -!- tsle1850 [~tsl1125@12.161.174.234] has joined #bitcoin-core-dev 15:41 -!- Randolf [~randolf@209.205.87.205.core.cipherkey.net] has joined #bitcoin-core-dev 15:42 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 15:46 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 240 seconds] 15:47 -!- miya [46712ef6@gateway/web/freenode/ip.70.113.46.246] has quit [Ping timeout: 260 seconds] 15:48 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 15:51 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 15:51 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 15:52 -!- Aaronva__ [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 15:54 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 256 seconds] 15:55 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 240 seconds] 15:56 -!- Aaronvan_ [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 15:57 -!- DrFeelGood [~DrFeelGoo@unaffiliated/olufunmilayo] has quit [Ping timeout: 240 seconds] 16:02 -!- DrFeelGood [~DrFeelGoo@unaffiliated/olufunmilayo] has joined #bitcoin-core-dev 16:03 -!- Guyver2 [AdiIRC@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 16:08 -!- lqz [2f10d05d@gateway/web/freenode/ip.47.16.208.93] has joined #bitcoin-core-dev 16:08 < lqz> whoami 16:08 < lqz> ls 16:09 < lqz> whois 16:09 -!- lqz [2f10d05d@gateway/web/freenode/ip.47.16.208.93] has left #bitcoin-core-dev [] 16:18 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 16:22 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 245 seconds] 16:27 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 16:27 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 16:28 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has quit [Quit: drexl] 16:30 -!- Randolf [~randolf@209.205.87.205.core.cipherkey.net] has quit [Ping timeout: 260 seconds] 16:31 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 16:32 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 256 seconds] 16:33 -!- tsle1850 [~tsl1125@12.161.174.234] has quit [Ping timeout: 240 seconds] 16:36 -!- tsle1850 [~tsl1125@12.161.174.234] has joined #bitcoin-core-dev 16:54 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 16:59 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 260 seconds] 17:01 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 17:03 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 256 seconds] 17:03 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 17:06 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 17:06 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 268 seconds] 17:08 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 256 seconds] 17:12 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 17:17 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 265 seconds] 17:18 -!- Randolf [~randolf@96.53.47.42] has joined #bitcoin-core-dev 17:21 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 17:26 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 260 seconds] 17:30 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 17:34 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 240 seconds] 17:35 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 260 seconds] 17:37 -!- kurito_ [~kurito@190-36-183-150.dyn.dsl.cantv.net] has joined #bitcoin-core-dev 17:40 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 17:43 -!- cncr04s [~cncr04s@unaffiliated/cncr04s] has quit [Ping timeout: 255 seconds] 17:44 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 260 seconds] 17:47 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 17:47 -!- cncr04s [~cncr04s@unaffiliated/cncr04s] has joined #bitcoin-core-dev 17:49 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 17:53 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 240 seconds] 17:57 -!- nmnkgl [~nmnkgl@c-73-189-35-88.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 17:58 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 17:59 -!- Aaronva__ [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 18:00 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 18:02 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 264 seconds] 18:05 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 264 seconds] 18:07 -!- grafcaps [~haroldbr@38.109.179.2] has joined #bitcoin-core-dev 18:08 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 18:08 -!- unholymachine [~quassel@2601:8c:c003:9f16:8c8e:41ac:82b1:1625] has joined #bitcoin-core-dev 18:13 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 264 seconds] 18:16 -!- grafcaps [~haroldbr@38.109.179.2] has quit [Ping timeout: 256 seconds] 18:21 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 18:23 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-core-dev 18:30 -!- tsle1850 [~tsl1125@12.161.174.234] has quit [Ping timeout: 256 seconds] 18:34 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 264 seconds] 18:35 -!- grafcaps [~haroldbr@50.90.83.229] has joined #bitcoin-core-dev 18:39 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 240 seconds] 18:42 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 19:00 -!- kurito_ [~kurito@190-36-183-150.dyn.dsl.cantv.net] has quit [Quit: kurito_] 19:05 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 19:10 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 19:11 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 19:16 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 256 seconds] 19:34 -!- ken2812221 [~User@133-203.dorm.ncu.edu.tw] has quit [Read error: Connection reset by peer] 19:43 -!- ken2812221 [~User@133-203.dorm.ncu.edu.tw] has joined #bitcoin-core-dev 20:06 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-core-dev 20:08 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 20:13 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 240 seconds] 20:23 -!- grafcaps [~haroldbr@50.90.83.229] has joined #bitcoin-core-dev 20:27 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 268 seconds] 20:35 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 20:36 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has joined #bitcoin-core-dev 20:41 -!- Liliaceae [sid282374@gateway/web/irccloud.com/x-wuoqevtpwusjycur] has quit [Ping timeout: 276 seconds] 20:43 -!- exit70 [sid231392@gateway/web/irccloud.com/x-xoxkccpqvdadfykp] has quit [Ping timeout: 245 seconds] 20:43 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 20:43 -!- michagogo [uid14316@wikia/Michagogo] has quit [Ping timeout: 256 seconds] 20:44 -!- savantgarde [sid256535@gateway/web/irccloud.com/x-snpbxmchhtnqzigz] has quit [Ping timeout: 256 seconds] 20:44 -!- rubensayshi_ [sid201751@gateway/web/irccloud.com/x-xuuylxfwggrfjusi] has quit [Ping timeout: 276 seconds] 20:45 -!- ula [~ula@b2b-78-94-11-194.unitymedia.biz] has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 20:45 -!- exit70 [sid231392@gateway/web/irccloud.com/x-fiumopdbmoxfctoq] has joined #bitcoin-core-dev 20:45 -!- Liliaceae [sid282374@gateway/web/irccloud.com/x-yvbhimkcrorodloa] has joined #bitcoin-core-dev 20:46 -!- savantgarde [sid256535@gateway/web/irccloud.com/x-zlbexakewicclirj] has joined #bitcoin-core-dev 20:46 -!- rubensayshi_ [sid201751@gateway/web/irccloud.com/x-uwxqzsbgfnvrzxlj] has joined #bitcoin-core-dev 20:46 -!- michagogo [uid14316@wikia/Michagogo] has joined #bitcoin-core-dev 20:48 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 20:48 -!- wbnns [sid105317@21/bitcoin/binns] has quit [Ping timeout: 276 seconds] 20:48 -!- jl2012 [sid133844@gateway/web/irccloud.com/x-gjuoorwpvtcaufvb] has quit [Ping timeout: 256 seconds] 20:48 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 20:48 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-srkejydsozfgaquv] has quit [Ping timeout: 256 seconds] 20:49 -!- trotski2000 [sid206086@gateway/web/irccloud.com/x-spzilbshlmftjunn] has quit [Ping timeout: 276 seconds] 20:49 -!- hsmiths [uid95325@gateway/web/irccloud.com/x-ufmwnzvreofkgjka] has quit [Ping timeout: 265 seconds] 20:49 -!- NicolasDorier [sid129442@gateway/web/irccloud.com/x-pptglydoyqicaryj] has quit [Ping timeout: 256 seconds] 20:49 -!- skeees [uid294661@gateway/web/irccloud.com/x-nfohorxjzegltahn] has quit [Ping timeout: 256 seconds] 20:49 -!- Varunram [sid210151@gateway/web/irccloud.com/x-zxdcbvgvqskoswtx] has quit [Ping timeout: 256 seconds] 20:49 -!- ibrightly [sid113387@gateway/web/irccloud.com/x-vgesylwxibuxlibb] has quit [Ping timeout: 256 seconds] 20:49 -!- CodeShark_ [sid126576@gateway/web/irccloud.com/x-ebebhebdelhcbfti] has quit [Ping timeout: 256 seconds] 20:49 -!- epic [sid37137@gateway/web/irccloud.com/x-xbpicypsvnkjtpdu] has quit [Ping timeout: 256 seconds] 20:49 -!- sugarpuff [sid92283@gateway/web/irccloud.com/x-itqzcpgqlbkcvbah] has quit [Ping timeout: 256 seconds] 20:49 -!- mariorz [sid490@gateway/web/irccloud.com/x-curlpcjeicvcwcok] has quit [Ping timeout: 256 seconds] 20:50 -!- udiWertheimer [sid190185@gateway/web/irccloud.com/x-hlkjksqmxbujvran] has quit [Ping timeout: 256 seconds] 20:50 -!- Jackielove4u [uid43977@gateway/web/irccloud.com/x-gviutweynjyjrgjj] has quit [Ping timeout: 245 seconds] 20:50 -!- wallet42 [sid154231@gateway/web/irccloud.com/x-wprdbhoyzvvdzufo] has quit [Ping timeout: 276 seconds] 20:50 -!- bosma [sid103570@gateway/web/irccloud.com/x-uxpdmsncniplvyhf] has quit [Ping timeout: 276 seconds] 20:50 -!- nejon [sid38993@gateway/web/irccloud.com/x-nuqasulljalulxqv] has quit [Ping timeout: 255 seconds] 20:50 -!- pierre_rochard [uid299882@gateway/web/irccloud.com/x-fszrzvimttnljqos] has quit [Ping timeout: 276 seconds] 20:50 -!- moneyball [uid299869@gateway/web/irccloud.com/x-kccsuhaxokmzkxfg] has quit [Ping timeout: 276 seconds] 20:50 -!- eragmus [sid136308@gateway/web/irccloud.com/x-deizxsntsxolqfcx] has quit [Ping timeout: 256 seconds] 20:50 -!- mturquette [sid66043@gateway/web/irccloud.com/x-dfakuytwqvcfrkri] has quit [Ping timeout: 256 seconds] 20:51 -!- robby938_ [sid238281@gateway/web/irccloud.com/x-aykulgsdamodbxlv] has quit [Ping timeout: 256 seconds] 20:51 -!- rubensayshi_ [sid201751@gateway/web/irccloud.com/x-uwxqzsbgfnvrzxlj] has quit [Ping timeout: 245 seconds] 20:51 -!- savantgarde [sid256535@gateway/web/irccloud.com/x-zlbexakewicclirj] has quit [Ping timeout: 245 seconds] 20:51 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-vxeynixvsuqgxfbc] has quit [Ping timeout: 276 seconds] 20:51 -!- profall [sid29922@gateway/web/irccloud.com/x-yuegzssdtepyzpfa] has quit [Ping timeout: 276 seconds] 20:51 -!- Liliaceae [sid282374@gateway/web/irccloud.com/x-yvbhimkcrorodloa] has quit [Ping timeout: 260 seconds] 20:51 -!- exit70 [sid231392@gateway/web/irccloud.com/x-fiumopdbmoxfctoq] has quit [Ping timeout: 260 seconds] 20:51 -!- michagogo [uid14316@wikia/Michagogo] has quit [Ping timeout: 260 seconds] 20:51 -!- aspect_ [sid151486@gateway/web/irccloud.com/x-zhcpkfanamuhssww] has quit [Ping timeout: 255 seconds] 20:51 -!- games_ [sid99242@gateway/web/irccloud.com/x-bqlfkxvxeoychbln] has quit [Ping timeout: 256 seconds] 20:51 -!- mappum_ [sid43795@gateway/web/irccloud.com/x-knzwdmqkpoaboyoi] has quit [Ping timeout: 256 seconds] 20:52 -!- ThisAsYou [sid214210@gateway/web/irccloud.com/x-ggqgyokqmuqrziqc] has quit [Ping timeout: 256 seconds] 20:52 -!- pindarhk_ [sid105966@gateway/web/irccloud.com/x-kjuxuddxjicsrvdj] has quit [Ping timeout: 276 seconds] 20:52 -!- barq [sid103986@gateway/web/irccloud.com/x-ofohcuubiqvhhioi] has quit [Ping timeout: 276 seconds] 20:53 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has quit [Ping timeout: 248 seconds] 20:59 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 21:04 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 21:08 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 21:08 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has quit [Ping timeout: 276 seconds] 21:09 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 21:12 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 21:13 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 21:13 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has quit [Ping timeout: 256 seconds] 21:16 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 240 seconds] 21:17 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 276 seconds] 21:23 -!- unholymachine [~quassel@2601:8c:c003:9f16:8c8e:41ac:82b1:1625] has quit [Remote host closed the connection] 21:24 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 21:48 -!- grubles [~grubles@unaffiliated/grubles] has quit [Quit: Leaving] 22:01 -!- dqx_ [~dqx@unaffiliated/dqx] has joined #bitcoin-core-dev 22:03 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 22:05 -!- jtimon [~quassel@40.28.134.37.dynamic.jazztel.es] has quit [Ping timeout: 268 seconds] 22:06 -!- grubles [~grubles@unaffiliated/grubles] has joined #bitcoin-core-dev 22:07 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has quit [Read error: Connection reset by peer] 22:07 -!- CubicEarths [~cubiceart@c-73-181-185-197.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 22:22 -!- robby938_ [sid238281@gateway/web/irccloud.com/x-ruqdrhplzpadjmsg] has joined #bitcoin-core-dev 22:23 -!- aspect_ [sid151486@gateway/web/irccloud.com/x-cqvzukqoubjrkgot] has joined #bitcoin-core-dev 22:24 -!- pierre_rochard [uid299882@gateway/web/irccloud.com/x-ocxccvbgwlcmyezh] has joined #bitcoin-core-dev 22:24 -!- moneyball [sid299869@gateway/web/irccloud.com/x-dxzgivynxnmjdvbd] has joined #bitcoin-core-dev 22:25 -!- profall [sid29922@gateway/web/irccloud.com/x-mlbzmjxeftvjajyf] has joined #bitcoin-core-dev 22:26 -!- sugarpuff [sid92283@gateway/web/irccloud.com/x-cqrnmkqtenqvhyxo] has joined #bitcoin-core-dev 22:26 -!- mariorz [sid490@gateway/web/irccloud.com/x-pgmuhhtlgxpsvkbk] has joined #bitcoin-core-dev 22:26 -!- eragmus [sid136308@gateway/web/irccloud.com/x-dvskrqcqdoelqszc] has joined #bitcoin-core-dev 22:27 -!- mturquette [sid66043@gateway/web/irccloud.com/x-nkcovnwxqkjsyhuf] has joined #bitcoin-core-dev 22:27 -!- wbnns [sid105317@21/bitcoin/binns] has joined #bitcoin-core-dev 22:28 -!- Varunram [sid210151@gateway/web/irccloud.com/x-qzgjnonrcdlwzpxa] has joined #bitcoin-core-dev 22:28 -!- games_ [sid99242@gateway/web/irccloud.com/x-sobiezycekmxdrxe] has joined #bitcoin-core-dev 22:30 -!- Jackielove4u [uid43977@gateway/web/irccloud.com/x-aywzkyerhkuxxuzv] has joined #bitcoin-core-dev 22:30 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-cndosumdmrhsqhwf] has joined #bitcoin-core-dev 22:31 -!- mappum_ [sid43795@gateway/web/irccloud.com/x-bgpzjvgayfpchfef] has joined #bitcoin-core-dev 22:31 -!- jl2012 [sid133844@gateway/web/irccloud.com/x-turmznufqvglhxcp] has joined #bitcoin-core-dev 22:31 -!- skeees [sid294661@gateway/web/irccloud.com/x-sudbbynmnifvljug] has joined #bitcoin-core-dev 22:31 -!- epic [sid37137@gateway/web/irccloud.com/x-pueycowrlhcuunox] has joined #bitcoin-core-dev 22:31 -!- nejon [sid38993@gateway/web/irccloud.com/x-spcutmehftsokiad] has joined #bitcoin-core-dev 22:31 -!- hsmiths [uid95325@gateway/web/irccloud.com/x-pipvfxysecijgiaa] has joined #bitcoin-core-dev 22:31 -!- bosma [sid103570@gateway/web/irccloud.com/x-sfuiiwbohuumtzvq] has joined #bitcoin-core-dev 22:32 -!- CodeShark_ [sid126576@gateway/web/irccloud.com/x-ptqrqqathztzmngb] has joined #bitcoin-core-dev 22:32 -!- ibrightly [sid113387@gateway/web/irccloud.com/x-xjnqovygucycxbxr] has joined #bitcoin-core-dev 22:32 -!- udiWertheimer [sid190185@gateway/web/irccloud.com/x-fjaeobnmiefmccfj] has joined #bitcoin-core-dev 22:32 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 22:34 -!- ThisAsYou [sid214210@gateway/web/irccloud.com/x-vuipprmgflnrurpb] has joined #bitcoin-core-dev 22:34 -!- zivl [~zivl@2601:19a:837f:e4e1:9c4b:e47b:180:87e] has quit [Ping timeout: 276 seconds] 22:36 -!- Liliaceae [sid282374@gateway/web/irccloud.com/x-trhrzocqyzcutums] has joined #bitcoin-core-dev 22:38 -!- barq [sid103986@gateway/web/irccloud.com/x-tcdrxzushzxeyybh] has joined #bitcoin-core-dev 22:40 -!- exit70 [sid231392@gateway/web/irccloud.com/x-thukktxyjsnklvrg] has joined #bitcoin-core-dev 22:43 -!- savantgarde [sid256535@gateway/web/irccloud.com/x-mmfemmkhssbbdpym] has joined #bitcoin-core-dev 22:47 -!- exit70 [sid231392@gateway/web/irccloud.com/x-thukktxyjsnklvrg] has quit [Ping timeout: 265 seconds] 22:50 -!- exit70 [sid231392@gateway/web/irccloud.com/x-cdmrcehdkrqzqaqz] has joined #bitcoin-core-dev 22:51 -!- Liliaceae [sid282374@gateway/web/irccloud.com/x-trhrzocqyzcutums] has quit [Ping timeout: 256 seconds] 22:51 -!- rubensayshi_ [sid201751@gateway/web/irccloud.com/x-xrhkzwroagtyjfcd] has joined #bitcoin-core-dev 22:52 -!- savantgarde [sid256535@gateway/web/irccloud.com/x-mmfemmkhssbbdpym] has quit [Ping timeout: 276 seconds] 22:53 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-upuudsmnongtnldq] has joined #bitcoin-core-dev 22:55 -!- pierre_rochard [uid299882@gateway/web/irccloud.com/x-ocxccvbgwlcmyezh] has quit [Ping timeout: 256 seconds] 22:55 -!- udiWertheimer [sid190185@gateway/web/irccloud.com/x-fjaeobnmiefmccfj] has quit [Ping timeout: 276 seconds] 22:55 -!- robby938_ [sid238281@gateway/web/irccloud.com/x-ruqdrhplzpadjmsg] has quit [Ping timeout: 256 seconds] 22:56 -!- rubensayshi_ [sid201751@gateway/web/irccloud.com/x-xrhkzwroagtyjfcd] has quit [Ping timeout: 245 seconds] 22:56 -!- sugarpuff [sid92283@gateway/web/irccloud.com/x-cqrnmkqtenqvhyxo] has quit [Ping timeout: 256 seconds] 22:56 -!- exit70 [sid231392@gateway/web/irccloud.com/x-cdmrcehdkrqzqaqz] has quit [Ping timeout: 260 seconds] 22:56 -!- jl2012 [sid133844@gateway/web/irccloud.com/x-turmznufqvglhxcp] has quit [Ping timeout: 256 seconds] 22:56 -!- Varunram [sid210151@gateway/web/irccloud.com/x-qzgjnonrcdlwzpxa] has quit [Ping timeout: 256 seconds] 22:56 -!- grafcaps [~haroldbr@50.90.83.229] has joined #bitcoin-core-dev 22:57 -!- nejon [sid38993@gateway/web/irccloud.com/x-spcutmehftsokiad] has quit [Ping timeout: 256 seconds] 22:57 -!- mappum_ [sid43795@gateway/web/irccloud.com/x-bgpzjvgayfpchfef] has quit [Ping timeout: 276 seconds] 22:57 -!- aspect_ [sid151486@gateway/web/irccloud.com/x-cqvzukqoubjrkgot] has quit [Ping timeout: 276 seconds] 22:57 -!- barq [sid103986@gateway/web/irccloud.com/x-tcdrxzushzxeyybh] has quit [Ping timeout: 276 seconds] 22:57 -!- CodeShark_ [sid126576@gateway/web/irccloud.com/x-ptqrqqathztzmngb] has quit [Ping timeout: 265 seconds] 22:57 -!- mturquette [sid66043@gateway/web/irccloud.com/x-nkcovnwxqkjsyhuf] has quit [Ping timeout: 256 seconds] 22:57 -!- ibrightly [sid113387@gateway/web/irccloud.com/x-xjnqovygucycxbxr] has quit [Ping timeout: 256 seconds] 22:57 -!- bosma [sid103570@gateway/web/irccloud.com/x-sfuiiwbohuumtzvq] has quit [Ping timeout: 256 seconds] 22:57 -!- Jackielove4u [uid43977@gateway/web/irccloud.com/x-aywzkyerhkuxxuzv] has quit [Ping timeout: 256 seconds] 22:57 -!- wbnns [sid105317@21/bitcoin/binns] has quit [Ping timeout: 256 seconds] 22:57 -!- mariorz [sid490@gateway/web/irccloud.com/x-pgmuhhtlgxpsvkbk] has quit [Ping timeout: 276 seconds] 22:57 -!- profall [sid29922@gateway/web/irccloud.com/x-mlbzmjxeftvjajyf] has quit [Ping timeout: 276 seconds] 22:57 -!- skeees [sid294661@gateway/web/irccloud.com/x-sudbbynmnifvljug] has quit [Ping timeout: 265 seconds] 22:58 -!- hsmiths [uid95325@gateway/web/irccloud.com/x-pipvfxysecijgiaa] has quit [Ping timeout: 265 seconds] 22:58 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-cndosumdmrhsqhwf] has quit [Ping timeout: 276 seconds] 22:58 -!- moneyball [sid299869@gateway/web/irccloud.com/x-dxzgivynxnmjdvbd] has quit [Ping timeout: 276 seconds] 22:58 -!- epic [sid37137@gateway/web/irccloud.com/x-pueycowrlhcuunox] has quit [Ping timeout: 276 seconds] 22:58 -!- ThisAsYou [sid214210@gateway/web/irccloud.com/x-vuipprmgflnrurpb] has quit [Ping timeout: 256 seconds] 22:58 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-upuudsmnongtnldq] has quit [Ping timeout: 255 seconds] 22:58 -!- games_ [sid99242@gateway/web/irccloud.com/x-sobiezycekmxdrxe] has quit [Ping timeout: 256 seconds] 22:58 -!- eragmus [sid136308@gateway/web/irccloud.com/x-dvskrqcqdoelqszc] has quit [Ping timeout: 256 seconds] 22:59 -!- thaumavorio [~thaumavor@thaumavor.io] has quit [Quit: ZNC 1.6.5 - http://znc.in] 23:00 -!- thaumavorio [~thaumavor@thaumavor.io] has joined #bitcoin-core-dev 23:01 -!- grafcaps [~haroldbr@50.90.83.229] has quit [Ping timeout: 245 seconds] 23:09 -!- RoBz [~RoBz@unaffiliated/robz] has quit [Ping timeout: 248 seconds] 23:09 -!- rubensayshi_ [sid201751@gateway/web/irccloud.com/x-munadplkaesatlfv] has joined #bitcoin-core-dev 23:09 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 23:09 -!- exit70 [sid231392@gateway/web/irccloud.com/x-pxmoijnuyqzbmfdv] has joined #bitcoin-core-dev 23:09 -!- exit70 [sid231392@gateway/web/irccloud.com/x-pxmoijnuyqzbmfdv] has quit [Max SendQ exceeded] 23:10 -!- exit70 [sid231392@gateway/web/irccloud.com/x-yyerbyzpwqidzgyz] has joined #bitcoin-core-dev 23:11 -!- savantgarde [sid256535@gateway/web/irccloud.com/x-rdsftxpnfcseowvw] has joined #bitcoin-core-dev 23:12 -!- sugarpuff [sid92283@gateway/web/irccloud.com/x-osebwsrhhvaamnsg] has joined #bitcoin-core-dev 23:13 -!- exit70 [sid231392@gateway/web/irccloud.com/x-yyerbyzpwqidzgyz] has quit [Max SendQ exceeded] 23:13 -!- exit70 [sid231392@gateway/web/irccloud.com/x-vrsxizqdvliwnvcy] has joined #bitcoin-core-dev 23:14 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 23:14 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 256 seconds] 23:14 -!- exit70 [sid231392@gateway/web/irccloud.com/x-vrsxizqdvliwnvcy] has quit [Max SendQ exceeded] 23:15 -!- exit70 [sid231392@gateway/web/irccloud.com/x-oknfbeugsmkthtri] has joined #bitcoin-core-dev 23:16 -!- michagogo [uid14316@wikia/Michagogo] has joined #bitcoin-core-dev 23:17 -!- pierre_rochard [uid299882@gateway/web/irccloud.com/x-ogyobqagmluintag] has joined #bitcoin-core-dev 23:17 -!- Liliaceae [sid282374@gateway/web/irccloud.com/x-hxfqhfswivasupfa] has joined #bitcoin-core-dev 23:17 -!- udiWertheimer [sid190185@gateway/web/irccloud.com/x-yntvrixqlhmhazfs] has joined #bitcoin-core-dev 23:18 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 240 seconds] 23:19 -!- jojeyh [~delphi@2602:306:b8b6:b970:3dde:5cdd:bb8a:facc] has quit [Quit: Leaving] 23:19 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-nyevldfqfpusjuyc] has joined #bitcoin-core-dev 23:19 -!- aspect_ [sid151486@gateway/web/irccloud.com/x-htfegbbeeamfugcn] has joined #bitcoin-core-dev 23:20 -!- robby938_ [sid238281@gateway/web/irccloud.com/x-kbrmtbmtkxhmwtbf] has joined #bitcoin-core-dev 23:20 -!- nejon [sid38993@gateway/web/irccloud.com/x-xqyphartoybjmrnd] has joined #bitcoin-core-dev 23:20 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-nyevldfqfpusjuyc] has quit [Max SendQ exceeded] 23:21 -!- profall [sid29922@gateway/web/irccloud.com/x-euvuhdapvnutycyq] has joined #bitcoin-core-dev 23:21 -!- eragmus [sid136308@gateway/web/irccloud.com/x-wvmufgtcqvoippje] has joined #bitcoin-core-dev 23:21 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-hmxkdgcpcuxdkalo] has joined #bitcoin-core-dev 23:21 -!- CodeShark_ [sid126576@gateway/web/irccloud.com/x-jrwnrledqqgogmzq] has joined #bitcoin-core-dev 23:21 -!- Varunram [sid210151@gateway/web/irccloud.com/x-yxoqqbriagtegtdq] has joined #bitcoin-core-dev 23:21 -!- NicolasDorier_ [sid129442@gateway/web/irccloud.com/x-qdejdtetwaoavkex] has joined #bitcoin-core-dev 23:21 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-dxjnrbjzbdqkeiax] has joined #bitcoin-core-dev 23:21 -!- pindarhk_ [sid105966@gateway/web/irccloud.com/session] has joined #bitcoin-core-dev 23:21 -!- pindarhk_ [sid105966@gateway/web/irccloud.com/session] has quit [Changing host] 23:21 -!- pindarhk_ [sid105966@gateway/web/irccloud.com/x-uepivlkwejswqavm] has joined #bitcoin-core-dev 23:21 -!- trotski2000 [sid206086@gateway/web/irccloud.com/session] has joined #bitcoin-core-dev 23:21 -!- trotski2000 [sid206086@gateway/web/irccloud.com/session] has quit [Changing host] 23:21 -!- trotski2000 [sid206086@unaffiliated/trotski2000] has joined #bitcoin-core-dev 23:21 -!- mturquette [sid66043@gateway/web/irccloud.com/session] has joined #bitcoin-core-dev 23:21 -!- mappum_ [sid43795@gateway/web/irccloud.com/session] has joined #bitcoin-core-dev 23:21 -!- wbnns [sid105317@gateway/web/irccloud.com/session] has joined #bitcoin-core-dev 23:21 -!- mariorz [sid490@gateway/web/irccloud.com/session] has joined #bitcoin-core-dev 23:21 -!- trotski2000 [sid206086@unaffiliated/trotski2000] has quit [Changing host] 23:21 -!- trotski2000 [sid206086@gateway/web/irccloud.com/x-svyaslpdndziqelu] has joined #bitcoin-core-dev 23:21 -!- mturquette [sid66043@gateway/web/irccloud.com/session] has quit [Changing host] 23:21 -!- mturquette [sid66043@gateway/web/irccloud.com/x-dreqvvxtwmnlkdvj] has joined #bitcoin-core-dev 23:21 -!- mappum_ [sid43795@gateway/web/irccloud.com/session] has quit [Changing host] 23:21 -!- mappum_ [sid43795@gateway/web/irccloud.com/x-iqzgeboqpcbilqva] has joined #bitcoin-core-dev 23:21 -!- barq [sid103986@gateway/web/irccloud.com/x-xjsvukfxywlrsqqr] has joined #bitcoin-core-dev 23:21 -!- wbnns [sid105317@gateway/web/irccloud.com/session] has quit [Changing host] 23:21 -!- wbnns [sid105317@21/bitcoin/binns] has joined #bitcoin-core-dev 23:22 -!- mariorz [sid490@gateway/web/irccloud.com/session] has quit [Changing host] 23:22 -!- mariorz [sid490@gateway/web/irccloud.com/x-vhwkeqgrkclijszv] has joined #bitcoin-core-dev 23:22 -!- wbnns [sid105317@21/bitcoin/binns] has quit [Changing host] 23:22 -!- wbnns [sid105317@gateway/web/irccloud.com/x-vigfxvqgkyjwiimy] has joined #bitcoin-core-dev 23:22 -!- wbnns [sid105317@gateway/web/irccloud.com/x-vigfxvqgkyjwiimy] has quit [Changing host] 23:22 -!- wbnns [sid105317@21/bitcoin/binns] has joined #bitcoin-core-dev 23:22 -!- games_ [sid99242@gateway/web/irccloud.com/x-yswdobppoicpvsgx] has joined #bitcoin-core-dev 23:22 -!- barq [sid103986@gateway/web/irccloud.com/x-xjsvukfxywlrsqqr] has quit [Max SendQ exceeded] 23:22 -!- profall [sid29922@gateway/web/irccloud.com/x-euvuhdapvnutycyq] has quit [Max SendQ exceeded] 23:22 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-hmxkdgcpcuxdkalo] has quit [Max SendQ exceeded] 23:22 -!- ibrightly [sid113387@gateway/web/irccloud.com/x-lvtsjeyghwfukgjf] has joined #bitcoin-core-dev 23:22 -!- Jackielove4u [uid43977@gateway/web/irccloud.com/x-ikosksmsbbqryocg] has joined #bitcoin-core-dev 23:23 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-dxjnrbjzbdqkeiax] has quit [Max SendQ exceeded] 23:23 -!- rodarmor [sid210835@gateway/web/irccloud.com/x-xfwebrleqflziklj] has joined #bitcoin-core-dev 23:23 -!- bosma [sid103570@gateway/web/irccloud.com/x-wnwacwjseqwbrmss] has joined #bitcoin-core-dev 23:23 -!- profall [sid29922@gateway/web/irccloud.com/x-qzrsmdadufjuaack] has joined #bitcoin-core-dev 23:23 -!- ken2812221 [~User@133-203.dorm.ncu.edu.tw] has quit [Read error: Connection reset by peer] 23:23 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-ljkmpcdffkcqrjho] has joined #bitcoin-core-dev 23:24 -!- ThisAsYou [sid214210@gateway/web/irccloud.com/x-qirdrmtcauqdewly] has joined #bitcoin-core-dev 23:24 -!- barq [sid103986@gateway/web/irccloud.com/x-thyjmqmsqllrwtod] has joined #bitcoin-core-dev 23:24 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-ljkmpcdffkcqrjho] has quit [Max SendQ exceeded] 23:24 -!- profall [sid29922@gateway/web/irccloud.com/x-qzrsmdadufjuaack] has quit [Max SendQ exceeded] 23:24 -!- epic [sid37137@gateway/web/irccloud.com/x-riczfqobazlfqpcv] has joined #bitcoin-core-dev 23:24 -!- jl2012 [sid133844@gateway/web/irccloud.com/x-hxspveesvrhxqntu] has joined #bitcoin-core-dev 23:25 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-exkrzqnomqwwibcs] has joined #bitcoin-core-dev 23:25 -!- moneyball [sid299869@gateway/web/irccloud.com/x-wgtpedddrqknzuwj] has joined #bitcoin-core-dev 23:25 -!- profall [sid29922@gateway/web/irccloud.com/x-pyzvtzjjfqfaalfl] has joined #bitcoin-core-dev 23:26 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-exkrzqnomqwwibcs] has quit [Max SendQ exceeded] 23:26 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-ibqfksyuirqviisb] has joined #bitcoin-core-dev 23:26 -!- hsmiths [uid95325@gateway/web/irccloud.com/x-txvqheilqqrdbpnp] has joined #bitcoin-core-dev 23:27 -!- skeees [sid294661@gateway/web/irccloud.com/x-krvidhixbhqrtbyd] has joined #bitcoin-core-dev 23:27 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-ibqfksyuirqviisb] has quit [Max SendQ exceeded] 23:28 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-ikmcfsstpstfycaq] has joined #bitcoin-core-dev 23:29 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-ikmcfsstpstfycaq] has quit [Max SendQ exceeded] 23:29 -!- ChrisMorrisOrg [sid151627@gateway/web/irccloud.com/x-xsupuavwbyeeoztc] has joined #bitcoin-core-dev 23:34 -!- Helene24Fadel [~Helene24F@ns334669.ip-5-196-64.eu] has quit [Ping timeout: 265 seconds] 23:39 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 23:43 -!- xHire [~xHire@kos.paskuli.cz] has quit [Remote host closed the connection] 23:43 -!- ken2812221 [~User@133-203.dorm.ncu.edu.tw] has joined #bitcoin-core-dev 23:46 -!- xHire [~xHire@kos.paskuli.cz] has joined #bitcoin-core-dev 23:54 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 23:56 -!- wallet42 [sid154231@gateway/web/irccloud.com/x-xzyudmwvgmxzogff] has joined #bitcoin-core-dev 23:59 -!- nmnkgl [~nmnkgl@c-98-234-64-218.hsd1.ca.comcast.net] has quit [Ping timeout: 248 seconds]