< bitcoin-git> [bitcoin] fanquake pushed 6 commits to master: https://github.com/bitcoin/bitcoin/compare/cb88de3e3d37...98ebe7896dab
< bitcoin-git> bitcoin/master 3d6603e Carl Dong: depends: Propagate well-known vars into depends
< bitcoin-git> bitcoin/master 2d4e480 Carl Dong: depends: boost: Specify toolset to bootstrap.sh
< bitcoin-git> bitcoin/master 1ce74bc Carl Dong: depends: boost: Split target-os from toolset
< bitcoin-git> [bitcoin] fanquake merged pull request #18820: build: Propagate well-known vars into depends (master...2020-04-improve-depends-hosts2) https://github.com/bitcoin/bitcoin/pull/18820
< jonasschnelli> ariard: thanks for informing me! Will try to take part.
< bitcoin-git> [bitcoin] practicalswift closed pull request #18450: util: Use locale independent ToString(…) instead of locale dependent strprintf(…) for low-level string formatting (master...locale-independence) https://github.com/bitcoin/bitcoin/pull/18450
< bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/98ebe7896dab...e478b11db0b1
< bitcoin-git> bitcoin/master fad21a1 MarcoFalke: test: Explain that a bug should be filed when the test fail
< bitcoin-git> bitcoin/master e478b11 MarcoFalke: Merge #19110: test: Explain that a bug should be filed when the tests fail...
< bitcoin-git> [bitcoin] MarcoFalke merged pull request #19110: test: Explain that a bug should be filed when the tests fail (master...2005-testBug) https://github.com/bitcoin/bitcoin/pull/19110
< hebasto> is -dropmessagestest command-line debug arg still useful? it seems no test coverage for it
< bitcoin-git> [bitcoin] MarcoFalke opened pull request #19114: scripted-diff: TxoutType C++11 scoped enum class (master...2005-enumClassTxoutType) https://github.com/bitcoin/bitcoin/pull/19114
< aqua422> any plan to add some kind of webhooks for incoming transactions (spotted in mempool, and for x confs)?
< aqua422> I figured that polling via rpc a few millions of addresses continuously is not the ideal way
< aqua422> *only wallet related addresses btw
< shesek> aqua422, this exists via the `walletnotify` option, which allows you to run a custom command whenever a new wallet transaction is added to the mempool or mined in a block
< aqua422> shesek the issue with that feature is that it spawns a new thread every time a tx is added
< shesek> you can also try https://github.com/shesek/bwt, which sits on top of bitcoind and provides real-time updates in the form of webhooks and server-sent events (a streaming long-lived http connection)
< shesek> aqua422, why is that a problem? are you dealing with a really high-volume wallet?
< bitcoin-git> [bitcoin] MarcoFalke pushed 11 commits to master: https://github.com/bitcoin/bitcoin/compare/e478b11db0b1...826fe9c66711
< bitcoin-git> bitcoin/master dab298d Amiti Uttarwar: [docs] add release notes
< bitcoin-git> bitcoin/master bd093ca Amiti Uttarwar: [test] updates to unbroadcast test
< bitcoin-git> bitcoin/master 00d44a5 Amiti Uttarwar: [test] P2P connection behavior should meet expectations
< bitcoin-git> [bitcoin] MarcoFalke merged pull request #18807: [doc / test / mempool] unbroadcast follow-ups (master...2020-01-unbroadcast-followup) https://github.com/bitcoin/bitcoin/pull/18807
< bitcoin-git> [bitcoin] MarcoFalke opened pull request #19115: doc: Add release notes for 17219 (master...2005-docRel) https://github.com/bitcoin/bitcoin/pull/19115
< bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/826fe9c66711...dec067f5a019
< bitcoin-git> bitcoin/master 60ed339 10xcryptodev: tests: implement base58_decode
< bitcoin-git> bitcoin/master dec067f MarcoFalke: Merge #18965: tests: implement base58_decode
< bitcoin-git> [bitcoin] MarcoFalke merged pull request #18965: tests: implement base58_decode (master...tests_base58decode) https://github.com/bitcoin/bitcoin/pull/18965
< aqua422> shesek a few million addresses and pretty high volume, yes. At the moment we just have a database where we store all addresses and loop through them on different with bitcoin core running
< aqua422> it works, but I don't like the polling aspect
< aqua422> I'm just gonna patch bitcoin core my needs now though
< phantomcircuit> aqua422, "loop through them on different" ?
< phantomcircuit> if you don't care about unconfirmed transactions it's easy
< phantomcircuit> otherwise the walletnotify thing and then poll on new blocks
< bitcoin-git> [bitcoin] pstratem opened pull request #19116: [WIP] wallet: use BlockFilterIndex in ScanForWalletTransactions (master...2020-05-29-generate-pubkeys) https://github.com/bitcoin/bitcoin/pull/19116
< phantomcircuit> CKeyID is the same thing as PKHash right?
< phantomcircuit> they're both a uint160 of the serialized public key
< sipa> yeah, same data, but CKeyID has the added semantics of "p2pkh address"
< sipa> eh
< sipa> the other way around
< phantomcircuit> sipa, yeah i see, can i just convert a CKeyID blindly to PKHash to call GetScriptForDestination ?
< phantomcircuit> i don't see why not
< sipa> if you mean to get the p2pkh sPK, yes
< phantomcircuit> yes that's what i mean to get