--- Log opened Tue Jun 04 00:00:15 2024 00:18 -!- pablomartin [~pablomart@176.227.242.130] has joined #bitcoin-core-dev 00:21 -!- salvatoshi [~salvatosh@genymobile-2-6-86.fib.nerim.net] has joined #bitcoin-core-dev 00:22 -!- midnight [~midnight@user/midnight] has quit [Ping timeout: 252 seconds] 00:23 -!- midnight_ [~midnight@user/midnight] has joined #bitcoin-core-dev 00:42 -!- pablomartin [~pablomart@176.227.242.130] has quit [Ping timeout: 260 seconds] 00:53 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has joined #bitcoin-core-dev 01:14 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/f7a6d3444973...9efc2af3be58 01:14 < bitcoin-git> bitcoin/master ffbc173 Hennadii Stepanov: depends: Update Boost download link 01:14 < bitcoin-git> bitcoin/master 9efc2af merge-script: Merge bitcoin/bitcoin#30217: depends: Update Boost download link 01:16 < bitcoin-git> [bitcoin] fanquake merged pull request #30217: depends: Update Boost download link (master...240603-boost) https://github.com/bitcoin/bitcoin/pull/30217 01:36 -!- pablomartin [~pablomart@176.227.242.135] has joined #bitcoin-core-dev 01:38 -!- kevkevin [~kevkevin@2601:241:8703:7b30:45b9:d316:de3c:fe75] has joined #bitcoin-core-dev 01:38 -!- puchka [~puchka@185.203.122.219] has quit [Ping timeout: 264 seconds] 01:42 -!- kevkevin [~kevkevin@2601:241:8703:7b30:45b9:d316:de3c:fe75] has quit [Ping timeout: 240 seconds] 02:16 -!- puchka [~puchka@185.203.122.170] has joined #bitcoin-core-dev 02:21 -!- lbia [~lbia@user/lbia] has joined #bitcoin-core-dev 02:31 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has left #bitcoin-core-dev [Closing Window] 02:49 -!- Earnestly [~earnest@user/earnestly] has quit [Ping timeout: 246 seconds] 02:51 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 02:53 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has quit [Remote host closed the connection] 02:53 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Remote host closed the connection] 02:53 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 02:54 -!- ghost43 [~ghost43@gateway/tor-sasl/ghost43] has joined #bitcoin-core-dev 02:54 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 03:00 -!- marsupia1 [~marsupial@user/marsupialSoup] has quit [Ping timeout: 255 seconds] 03:01 -!- Earnestly [~earnest@user/earnestly] has joined #bitcoin-core-dev 03:13 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 03:13 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 246 seconds] 03:16 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 03:21 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 255 seconds] 03:24 -!- BrandonOdiwuor [~BrandonOd@105.163.158.124] has joined #bitcoin-core-dev 03:32 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 03:33 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 03:34 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 03:42 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 268 seconds] 03:43 < bitcoin-git> [bitcoin] fanquake opened pull request #30222: [27.x] rc2 or final (27.x...27_1_rc2_or_rel) https://github.com/bitcoin/bitcoin/pull/30222 03:50 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 03:54 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 260 seconds] 04:18 -!- _flood [flooded@gateway/vpn/protonvpn/flood/x-43489060] has joined #bitcoin-core-dev 04:30 -!- kevkevin [~kevkevin@98.226.206.182] has joined #bitcoin-core-dev 04:34 -!- kevkevin [~kevkevin@98.226.206.182] has quit [Ping timeout: 246 seconds] 04:41 < josie> want to check my understanding on something: descriptors are a way of specifying how to create outputs and how to spend them, i.e. everything you need for a single output type wallet. miniscript is a way of writing a subset of bitcoin script with certain guarantees and the miniscript policy language is used in descriptors. so then what is a partial descriptor? ive always took it as a 04:41 < josie> fragment in the descriptor language that is not enough to fully specify generating and spending the output, and is also slightly more than just a miniscript fragment in that it deals with things that are not strictly bitcoin script 04:45 < josie> s/miniscript fragment/miniscript policy expression/ 04:50 < sipa> the policy language is unrelated; it's just used by the policy compiler to construct miniscript 04:51 < sipa> at this point, i think miniscript itself best not thought of a separate thing from descriptors anymore, from a user perspective; descriptors have a ton of expressions in them, some were added through a project called miniscript, some were not; the spec and implementation does make that distinction, but ultimately it's all just descriptors 04:57 < sipa> josie: regarding partial descriptors: every descriptor lets you construct outputs (given the necessary key material, if hardened derivation is used) but there is a spectrum in how much other information they can provide; one extreme is the addr() or raw() descriptor which doesn't convey any information but the final address 04:59 < sipa> most other descriptors do, though for example origin information (providing master fingerprint/key path for an included xpub) is optional, but still might be necessary for some implementation to locate keys to sign with 05:00 < sipa> so partial descriptors are a number of envisioned new fragments in the descriptor language that add affordances to specify some, but not all, information about an output 05:01 < sipa> e.g. a taproot output where you only know some of the script branches, but not all 05:02 < sipa> or a p2pkh inside a script for which you don't know the public key 05:03 < sipa> for rationale about partial descriptors, see https://github.com/bitcoin/bitcoin/issues/24114#issuecomment-1127978154 05:12 < josie> sipa: thanks, makes a lot more sense to me now. it was more confusing trying to conceptualize miniscript, descriptors, and partial descriptors as 3 separate things, but it sounds like its more "its all descriptors, and partial descriptors are a way of specifying a subset of information you would need to know in order to construct/spend an output" 05:16 -!- puchka [~puchka@185.203.122.170] has quit [Ping timeout: 256 seconds] 05:22 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 05:27 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 05:31 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 246 seconds] 05:35 -!- puchka [~puchka@185.203.122.230] has joined #bitcoin-core-dev 05:36 -!- pablomartin [~pablomart@176.227.242.135] has quit [Remote host closed the connection] 05:36 -!- pablomartin [~pablomart@176.227.242.135] has joined #bitcoin-core-dev 05:41 -!- pablomartin [~pablomart@176.227.242.135] has quit [Ping timeout: 268 seconds] 05:52 < sipa> josie: yeah, think of miniscript and partial descriptors both as projects whose eventual goal is just extending the functionality of the descriptors language/system 05:58 -!- pablomartin [~pablomart@176.227.242.134] has joined #bitcoin-core-dev 06:00 < josie> sipa: cool! regarding partial descriptors, is the expectation that partial descriptors will be specified in their own bips, similar to how new descriptors are added? novo has been working on an implementation for rawleaf and rawnode partial descriptors and ive been helping out a bit, so mainly asking out of curiosity 06:01 -!- pablomartin4btc [~pablomart@217.130.254.81] has joined #bitcoin-core-dev 06:03 -!- pablomartin [~pablomart@176.227.242.134] has quit [Ping timeout: 268 seconds] 06:06 -!- pablomartin4btc [~pablomart@217.130.254.81] has quit [Ping timeout: 268 seconds] 06:09 < sipa> josie: i guess 06:21 < bitcoin-git> [bitcoin] Eudaimonios opened pull request #30223: Create Implement Zero-Collar Options on Lightning Network for Stablec… (master...patch-1) https://github.com/bitcoin/bitcoin/pull/30223 06:29 < bitcoin-git> [bitcoin] willcl-ark closed pull request #30223: Create Implement Zero-Collar Options on Lightning Network for Stablec… (master...patch-1) https://github.com/bitcoin/bitcoin/pull/30223 06:29 -!- TallTim_ [~talltim@165.23.61.81] has joined #bitcoin-core-dev 06:30 -!- TallTim [~talltim@165.23.61.81] has quit [Ping timeout: 260 seconds] 06:35 -!- TallTim_ [~talltim@165.23.61.81] has quit [Ping timeout: 256 seconds] 06:35 -!- TallTim [~talltim@165-23-61-81-static.midco.net] has joined #bitcoin-core-dev 06:36 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-dev 06:45 -!- Guest56 [~Guest80@2001:8004:4e30:984:804:be27:43d0:a77c] has joined #bitcoin-core-dev 06:45 -!- Guest56 [~Guest80@2001:8004:4e30:984:804:be27:43d0:a77c] has quit [Client Quit] 06:53 -!- pablomartin4btc [~pablomart@188.26.211.155] has joined #bitcoin-core-dev 06:55 -!- pablomartin4btc [~pablomart@188.26.211.155] has quit [Remote host closed the connection] 06:55 -!- pablomartin4btc [~pablomart@2a0c:5a85:2106:6e00:31a0:ed95:a80e:7df2] has joined #bitcoin-core-dev 06:57 < bitcoin-git> [bitcoin] fanquake pushed 4 commits to master: https://github.com/bitcoin/bitcoin/compare/9efc2af3be58...d39f15a8a5b0 06:57 < bitcoin-git> bitcoin/master 865cdf3 dergoegge: [fuzz] Use fuzzer friendly ConsumeRandomLengthByteVector in FuzzedSock::Re... 06:57 < bitcoin-git> bitcoin/master a7fceda dergoegge: [fuzz] Make peeking through FuzzedSock::Recv fuzzer friendly 06:57 < bitcoin-git> bitcoin/master 22d0f1a marcofleon: [fuzz] Avoid endless waiting in FuzzedSock::{Wait,WaitMany} 06:57 < bitcoin-git> [bitcoin] fanquake merged pull request #30211: fuzz: Make FuzzedSock fuzz friendlier (master...2024-05-fix-fuzzsock) https://github.com/bitcoin/bitcoin/pull/30211 07:01 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 07:04 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-dev 07:10 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has joined #bitcoin-core-dev 07:11 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has quit [Remote host closed the connection] 07:18 -!- kevkevin [~kevkevin@98.226.206.182] has joined #bitcoin-core-dev 07:28 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 07:33 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 268 seconds] 07:33 -!- bugs_ [~bugs@user/bugs/x-5128603] has joined #bitcoin-core-dev 07:35 -!- BrandonOdiwuor [~BrandonOd@105.163.158.124] has quit [Quit: Client closed] 07:39 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 08:05 < bitcoin-git> [qa-assets] Sjors closed pull request #140: Add initial wallet_bdb_parser corpus (main...2023/08/bdb_ro) https://github.com/bitcoin-core/qa-assets/pull/140 08:06 -!- pablomartin4btc [~pablomart@2a0c:5a85:2106:6e00:31a0:ed95:a80e:7df2] has quit [Remote host closed the connection] 08:12 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 08:25 -!- SpellChecker [~SpellChec@user/SpellChecker] has quit [Remote host closed the connection] 08:25 -!- SpellChecker [~SpellChec@user/SpellChecker] has joined #bitcoin-core-dev 08:33 < dergoegge> Does anyone have a x86-64 libbitcoinconsensus.so from v0.10.0 by chance? 08:33 < dergoegge> oldest I could find on bitcoincore.org was v0.11.1 08:37 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 08:38 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 08:41 -!- brunoerg [~brunoerg@2804:14c:3bfb:37:617b:1b99:3593:ba64] has quit [Remote host closed the connection] 08:44 -!- salvatoshi [~salvatosh@genymobile-2-6-86.fib.nerim.net] has quit [Ping timeout: 268 seconds] 08:49 -!- SpellChecker [~SpellChec@user/SpellChecker] has quit [Remote host closed the connection] 08:49 < sdaftuar> dergoegge: you want a release version specifically, versus one that is self-built? 08:50 -!- SpellChecker [~SpellChec@user/SpellChecker] has joined #bitcoin-core-dev 08:50 < achow101> dergoegge: https://github.com/achow101/bitcoin/releases/tag/v0.10.0 if it's not there, then we didn't build it for releases 08:53 < dergoegge> sdaftuar: self-built would work too but https://github.com/achow101/bitcoin/releases/tag/v0.10.0 has what I was looking for :) 08:53 < dergoegge> thank you both 09:04 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 09:08 < laanwj> dergoegge: have you looked in the various insecure directories, like https://bitcoincore.org/bin/insecure-CVE-2015-6031/bitcoin-core-0.10.0/ ? 09:09 < laanwj> oh, my client was behind apparently 09:13 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 256 seconds] 09:13 < dergoegge> laanwj: I did not check those dirs but do have what I wanted as well, thanks! 09:32 < bitcoin-git> [bitcoin] aaservice opened pull request #30225: Update and rename bitcoinkernel.cpp to bitcoinkernel.cppx (master...patch-3) https://github.com/bitcoin/bitcoin/pull/30225 09:33 < bitcoin-git> [bitcoin] fanquake closed pull request #30225: Update and rename bitcoinkernel.cpp to bitcoinkernel.cppx (master...patch-3) https://github.com/bitcoin/bitcoin/pull/30225 09:33 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 09:48 -!- Guest4 [~Guest4@1-165-192-54.dynamic-ip.hinet.net] has joined #bitcoin-core-dev 09:49 -!- Guest4 [~Guest4@1-165-192-54.dynamic-ip.hinet.net] has quit [Client Quit] 10:02 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 10:04 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 10:08 -!- Talkless [~Talkless@mail.dargis.net] has joined #bitcoin-core-dev 10:20 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 268 seconds] 11:03 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-dev 11:04 -!- _andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 11:08 -!- brunoerg [~brunoerg@2804:14c:3bfb:37:b464:e120:6a2e:948e] has joined #bitcoin-core-dev 11:10 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 11:11 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-dev 11:13 -!- brunoerg [~brunoerg@2804:14c:3bfb:37:b464:e120:6a2e:948e] has quit [Ping timeout: 246 seconds] 11:37 -!- brunoerg [~brunoerg@2804:14c:3bfb:37:b464:e120:6a2e:948e] has joined #bitcoin-core-dev 11:48 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Remote host closed the connection] 11:49 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-dev 12:14 -!- Talkless [~Talkless@mail.dargis.net] has quit [Remote host closed the connection] 12:31 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Ping timeout: 260 seconds] 13:00 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has joined #bitcoin-core-dev 13:17 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 13:22 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 260 seconds] 13:46 -!- hernanmarino_ [~hernanmar@2800:2330:2840:1cf:ebf8:2d39:1813:7969] has quit [Quit: ZNC 1.8.2+deb2 - https://znc.in] 13:47 -!- pyth_ [~pyth@116.110.41.135] has quit [Remote host closed the connection] 13:48 -!- hernanmarino [~hernanmar@181.85.37.94] has joined #bitcoin-core-dev 13:53 -!- dermoth [~dermoth@user/dermoth] has quit [Read error: Connection reset by peer] 13:54 < bitcoin-git> [bitcoin] laanwj closed pull request #29923: depends: Remove Qt build-time dependencies (master...2024-04-qtsowrap) https://github.com/bitcoin/bitcoin/pull/29923 13:57 -!- dermoth [~dermoth@user/dermoth] has joined #bitcoin-core-dev 14:02 < sipa> laanwj: oh? 14:57 -!- bugs_ [~bugs@user/bugs/x-5128603] has quit [Quit: Leaving] 15:04 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 15:06 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 15:11 -!- mudsip [~mudsip@user/mudsip] has joined #bitcoin-core-dev 15:11 -!- mudsip [~mudsip@user/mudsip] has quit [Client Quit] 15:19 -!- pyth [~pyth@116.110.41.135] has joined #bitcoin-core-dev 15:28 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 4.2.2] 15:37 < bitcoin-git> [bitcoin] achow101 pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/d39f15a8a5b0...701b0cf2f33c 15:37 < bitcoin-git> bitcoin/master 7aa7e30 Murch: Fold GetSelectionWaste() into ComputeAndSetWaste() 15:37 < bitcoin-git> bitcoin/master bd34dd8 Murch: Use `exact_target` shorthand in coinselector_tests 15:37 < bitcoin-git> bitcoin/master 701b0cf Ava Chow: Merge bitcoin/bitcoin#28366: Fix waste calculation in SelectionResult 15:37 < bitcoin-git> [bitcoin] achow101 merged pull request #28366: Fix waste calculation in SelectionResult (master...2023-08-fix-waste-calculation) https://github.com/bitcoin/bitcoin/pull/28366 15:47 < bitcoin-git> [bitcoin] achow101 pushed 4 commits to master: https://github.com/bitcoin/bitcoin/compare/701b0cf2f33c...e54c392356c4 15:47 < bitcoin-git> bitcoin/master 544131f ishaanam: rpc, test: test sendall spends unconfirmed change and unconfirmed inputs w... 15:47 < bitcoin-git> bitcoin/master 3675794 ishaanam: wallet, rpc: implement ancestor aware funding for sendall 15:47 < bitcoin-git> bitcoin/master 71aae72 ishaanam: test: test sendall does ancestor aware funding 15:47 < bitcoin-git> [bitcoin] achow101 merged pull request #28979: wallet, rpc: document and update `sendall` behavior around unconfirmed inputs (master...sendall_ancestor_aware_funding) https://github.com/bitcoin/bitcoin/pull/28979 15:54 -!- andrewtoth_ [~andrewtot@gateway/tor-sasl/andrewtoth] has quit [Ping timeout: 260 seconds] 16:01 < bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/e54c392356c4...a937458904ae 16:01 < bitcoin-git> bitcoin/master 9013e2b Epic Curious: Link to gen-bitcoin-conf.sh instead of bitcoin.conf placeholder 16:01 < bitcoin-git> bitcoin/master a937458 Ava Chow: Merge bitcoin/bitcoin#30154: doc: update mention of generating bitcoin.conf 16:01 < bitcoin-git> [bitcoin] achow101 merged pull request #30154: doc: update mention of generating bitcoin.conf (master...update-mention-of-bitcoin-conf) https://github.com/bitcoin/bitcoin/pull/30154 16:13 < bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a937458904ae...56ea8ed3d325 16:13 < bitcoin-git> bitcoin/master df6dc2a Hernan Marino: test: Assumeutxo: snapshots with less work should not be loaded 16:13 < bitcoin-git> bitcoin/master 56ea8ed Ava Chow: Merge bitcoin/bitcoin#29428: test: Assumeutxo: snapshots with less work sh... 16:13 < bitcoin-git> [bitcoin] achow101 merged pull request #29428: test: Assumeutxo: snapshots with less work should not be loaded (master...assumeutxo-test-several) https://github.com/bitcoin/bitcoin/pull/29428 16:15 -!- kevkevin [~kevkevin@98.226.206.182] has quit [Remote host closed the connection] 16:20 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 16:25 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 268 seconds] 16:39 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has joined #bitcoin-core-dev 16:45 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has quit [Ping timeout: 268 seconds] 16:47 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has joined #bitcoin-core-dev 17:12 < bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/56ea8ed3d325...09fe1435d9ca 17:12 < bitcoin-git> bitcoin/master fa3169b MarcoFalke: rpc: Remove index-based Arg accessor 17:12 < bitcoin-git> bitcoin/master 09fe143 Ava Chow: Merge bitcoin/bitcoin#29997: rpc: Remove index-based Arg accessor 17:12 < bitcoin-git> [bitcoin] achow101 merged pull request #29997: rpc: Remove index-based Arg accessor (master...2404-rpc-no-int-arg-) https://github.com/bitcoin/bitcoin/pull/29997 17:15 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has quit [Quit: leaving] 17:27 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 17:32 < bitcoin-git> [bitcoin] achow101 pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/09fe1435d9ca...55cf34a5c30f 17:32 < bitcoin-git> bitcoin/master 5676aec josibake: refactor: Model the bech32 charlimit as an Enum 17:32 < bitcoin-git> bitcoin/master 7f3f6c6 Lőrinc: refactor: replace hardcoded numbers 17:32 < bitcoin-git> bitcoin/master 55cf34a Ava Chow: Merge bitcoin/bitcoin#30047: refactor: Model the bech32 charlimit as an En... 17:32 < bitcoin-git> [bitcoin] achow101 merged pull request #30047: refactor: Model the bech32 charlimit as an Enum (master...model-bech32-limit-as-enum) https://github.com/bitcoin/bitcoin/pull/30047 17:49 -!- lbia [~lbia@user/lbia] has quit [Ping timeout: 264 seconds] 18:01 -!- lbia [~lbia@user/lbia] has joined #bitcoin-core-dev 18:25 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 18:27 < bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/55cf34a5c30f...b3a61bd7b102 18:27 < bitcoin-git> bitcoin/master d7290d6 Ayush Singh: fuzz: wallet, add target for Crypter 18:27 < bitcoin-git> bitcoin/master b3a61bd Ava Chow: Merge bitcoin/bitcoin#28074: fuzz: wallet, add target for `Crypter` 18:27 < bitcoin-git> [bitcoin] achow101 merged pull request #28074: fuzz: wallet, add target for `Crypter` (master...fuzz-coverage-crypter) https://github.com/bitcoin/bitcoin/pull/28074 18:29 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 246 seconds] 18:40 < bitcoin-git> [bitcoin] achow101 pushed 11 commits to master: https://github.com/bitcoin/bitcoin/compare/b3a61bd7b102...76a33be21d42 18:40 < bitcoin-git> bitcoin/master 3635d43 furszy: test: rpc_createmultisig, remove manual wallet initialization 18:40 < bitcoin-git> bitcoin/master b5a3289 furszy: test: refactor, multiple cleanups in rpc_createmultisig.py 18:40 < bitcoin-git> bitcoin/master 25a8170 furszy: test: rpc_createmultisig, remove unnecessary checkbalances() 18:40 < bitcoin-git> [bitcoin] achow101 merged pull request #28307: rpc, wallet: fix incorrect segwit redeem script size limit (master...2023_invalid_segwit_redeem_script_limit) https://github.com/bitcoin/bitcoin/pull/28307 18:47 < bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/76a33be21d42...c29314ecfcc0 18:47 < bitcoin-git> bitcoin/master 07aba8d Greg Sanders: functional test: ensure confirmed utxo being sourced for 2nd chain 18:47 < bitcoin-git> bitcoin/master c29314e Ava Chow: Merge bitcoin/bitcoin#29998: functional test: ensure confirmed utxo being ... 18:47 < bitcoin-git> [bitcoin] achow101 merged pull request #29998: functional test: ensure confirmed utxo being sourced for 2nd chain (master...2024-04-onemore_confirmed) https://github.com/bitcoin/bitcoin/pull/29998 18:52 -!- mudsip [~mudsip@user/mudsip] has joined #bitcoin-core-dev 18:53 -!- mudsip [~mudsip@user/mudsip] has quit [Client Quit] 18:58 < bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/c29314ecfcc0...23b3dc2dd13d 18:58 < bitcoin-git> bitcoin/master 8801e31 Sebastian Falbesoner: refactor: remove unused `CKey::Negate` method 18:58 < bitcoin-git> bitcoin/master 23b3dc2 Ava Chow: Merge bitcoin/bitcoin#30218: refactor: remove unused `CKey::Negate` method 18:58 < bitcoin-git> [bitcoin] achow101 merged pull request #30218: refactor: remove unused `CKey::Negate` method (master...202406-remove_unused_key_negate) https://github.com/bitcoin/bitcoin/pull/30218 19:51 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 19:54 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 20:08 -!- mudsip [~mudsip@user/mudsip] has joined #bitcoin-core-dev 20:11 -!- mudsip [~mudsip@user/mudsip] has quit [Client Quit] 20:59 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 21:01 -!- cmirror [~cmirror@4.53.92.114] has quit [Remote host closed the connection] 21:01 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 256 seconds] 21:01 -!- cmirror [~cmirror@4.53.92.114] has joined #bitcoin-core-dev 21:25 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 21:29 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 246 seconds] 21:36 -!- Guest76 [~Guest55@133.91.253.110] has joined #bitcoin-core-dev 21:36 -!- Guest76 [~Guest55@133.91.253.110] has quit [Client Quit] 22:23 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has quit [Remote host closed the connection] 22:54 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has joined #bitcoin-core-dev 22:59 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has quit [Ping timeout: 246 seconds] 23:27 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has joined #bitcoin-core-dev 23:34 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has quit [Ping timeout: 268 seconds] 23:48 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has joined #bitcoin-core-dev 23:56 -!- kevkevin [~kevkevin@2601:241:8703:7b30:21b6:d1c6:8c4b:ab11] has quit [Ping timeout: 260 seconds] --- Log closed Wed Jun 05 00:00:15 2024