< bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/9313c4e6aa4b...21d6fed81550
< bitcoin-git> bitcoin/master fa27d6d MarcoFalke: fuzz: Remove unused --enable-danger-fuzz-link-all option
< bitcoin-git> bitcoin/master 21d6fed fanquake: Merge bitcoin/bitcoin#21884: fuzz: Remove unused --enable-danger-fuzz-link...
< bitcoin-git> [bitcoin] fanquake merged pull request #21884: fuzz: Remove unused --enable-danger-fuzz-link-all option (master...2105-fuzzNoDanger) https://github.com/bitcoin/bitcoin/pull/21884
< bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/21d6fed81550...8d5a0583c497
< bitcoin-git> bitcoin/master fa9249a MarcoFalke: depends: Add missing -D_LIBCPP_DEBUG=1 to debug flags
< bitcoin-git> bitcoin/master 8d5a058 fanquake: Merge bitcoin/bitcoin#21869: depends: Add missing -D_LIBCPP_DEBUG=1 to deb...
< bitcoin-git> [bitcoin] fanquake merged pull request #21869: depends: Add missing -D_LIBCPP_DEBUG=1 to debug flags (master...2105-dependsDebug) https://github.com/bitcoin/bitcoin/pull/21869
< bitcoin-git> [bitcoin] fanquake closed pull request #21135: scripts: check for control flow instrumentation in security-check.py (master...security_check_cf_protection) https://github.com/bitcoin/bitcoin/pull/21135
< bitcoin-git> [bitcoin] MarcoFalke pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/8d5a0583c497...5925f1e65276
< bitcoin-git> bitcoin/master 955eee7 W. J. van der Laan: net: Sanitize message type for logging
< bitcoin-git> bitcoin/master 09205b3 W. J. van der Laan: net: Clarify message header validation errors
< bitcoin-git> bitcoin/master 5925f1e MarcoFalke: Merge bitcoin/bitcoin#21872: net: Sanitize message type for logging
< bitcoin-git> [bitcoin] MarcoFalke merged pull request #21872: net: Sanitize message type for logging (master...2021-05-sanitize-messagetype) https://github.com/bitcoin/bitcoin/pull/21872
< bitcoin-git> [bitcoin] fanquake opened pull request #21889: macho: check for control flow instrumentation (master...build_boost_fcf_protectcion) https://github.com/bitcoin/bitcoin/pull/21889
< bitcoin-git> [bitcoin] MarcoFalke opened pull request #21890: fuzz: Limit ParseISO8601DateTime fuzzing to 32-bit (master...2105-fuzzTime32) https://github.com/bitcoin/bitcoin/pull/21890
< bitcoin-git> [bitcoin] MarcoFalke opened pull request #21891: fuzz: Remove strprintf test cases that are known to fail (master...2105-fuzzStr) https://github.com/bitcoin/bitcoin/pull/21891
< bitcoin-git> [bitcoin] MarcoFalke opened pull request #21892: fuzz: Avoid excessively large min fee rate in tx_pool (master...2105-fuzzPool) https://github.com/bitcoin/bitcoin/pull/21892
< bitcoin-git> [bitcoin] Bushstar opened pull request #21894: gitignore: Add JetBrains CLion (master...gitignore-clion) https://github.com/bitcoin/bitcoin/pull/21894
< bitcoin-git> [bitcoin] hebasto opened pull request #21895: refactor: Add TSA annotations to the WorkQueue class members (master...210509-tsa) https://github.com/bitcoin/bitcoin/pull/21895
< bitcoin-git> [bitcoin] kallewoof opened pull request #21897: rpc: adjust incorrect RPCHelpMan types (master...202104-rpctypes) https://github.com/bitcoin/bitcoin/pull/21897
< bitcoin-git> [bitcoin] wawesomeNOGUI opened pull request #21898: Add Whitepaper Link (master...patch-1) https://github.com/bitcoin/bitcoin/pull/21898
< bitcoin-git> [bitcoin] mrkingfoxx opened pull request #21899: 0.21 (master...0.21) https://github.com/bitcoin/bitcoin/pull/21899
< bitcoin-git> [bitcoin] fanquake closed pull request #21899: 0.21 (master...0.21) https://github.com/bitcoin/bitcoin/pull/21899
< bitcoin-git> [bitcoin] fanquake closed pull request #21898: Add Whitepaper Link (master...patch-1) https://github.com/bitcoin/bitcoin/pull/21898
< yanmaani> does bitcoin have a notion of "intrinsically valid transaction"?
< yanmaani> a transaction with locktime in the future is valid, just not right now
< yanmaani> a transaction that spends with an invalid script is never going to be valid
< yanmaani> is there a way to distinguish between the two?
< bitcoin-git> [bitcoin] theStack opened pull request #21900: test: use MiniWallet for feature_csv_activation.py (master...20210507-test-convert_csvtest_miniwallet) https://github.com/bitcoin/bitcoin/pull/21900
< sipa> yanmaani: they're called validity and finality
< sipa> a transaction is valid or invalid, unconditionally, but finality is dependent on time/height in the chain
< yanmaani> thanks!