< harding>
MarcoFalke: for #20916, I was wondering if you knew of any application that needs the wtxid when running the testmempoolaccept RPC? (I'm just curious and haven't been able to think of an example myself.)
< luke-jr>
could future-proof applications if wtxid ceases to be the hash at some poitn
< luke-jr>
eg, as txid did when segwit activated
< sipa>
luke-jr: why can't they use txid?
< luke-jr>
sipa: ?
< luke-jr>
malleability?
< sipa>
wtxid is malleable, txid isn't :p
< sipa>
(which is why i think most things really shouldn't care about wtxids)
< luke-jr>
oh right
< bitcoin-git>
[bitcoin] MarcoFalke opened pull request #20955: test: Fix get_previous_releases.py for aarch64 (master...2101-testPrevRel) https://github.com/bitcoin/bitcoin/pull/20955
< bitcoin-git>
[bitcoin] nolim1t opened pull request #20957: doc: Update tor.md for notes on how to preserve v2 urls (with a not recommended note) (master...tor-controlport-docs) https://github.com/bitcoin/bitcoin/pull/20957
< bitcoin-git>
bitcoin/master c763cac Wladimir J. van der Laan: Merge #20938: build: fix linking against -latomic when building for riscv
< bitcoin-git>
[bitcoin] laanwj merged pull request #20938: build: fix linking against -latomic when building for riscv (master...fix_riscv_atomic_usage) https://github.com/bitcoin/bitcoin/pull/20938
< bitcoin-git>
[bitcoin] laanwj opened pull request #20958: gitian-keys: Add signer aliases, some historical keys (master...2021-01-gitian-sigs) https://github.com/bitcoin/bitcoin/pull/20958
< bitcoin-git>
bitcoin/master 9d02654 Hennadii Stepanov: doc: Fix systemd spelling and link to doc/init.md
< bitcoin-git>
[bitcoin] laanwj merged pull request #20884: script: Improve robustness of bitcoind.service on startup (master...210108-systemd) https://github.com/bitcoin/bitcoin/pull/20884
< aciddan50>
Hi all, hope you're safe and well. Exploring bitcoind client. listsinceblock rpc call returns transactions and some have identical txid. If I was about to credit some of those "receive" transactions, should I apply filtering and if so, based on what criteria? Thank you
< sipa>
aciddan50: listtransactions/listsinceblock doesn't actually list transactions; it lists "updates to your wallet balance"
< sipa>
if one transaction paid you multiple times, it'll appear multiple times
< sipa>
no filtering should be needed
< aciddan50>
sipa thank you for your response. Just wondering if that response contains say 2 completely identical updates, same address, same txid etc etc, what does that tell about this update?
< sipa>
it means you're paid twice (or you paid someone else twice) in the same tx
< sipa>
transactions can be arbitrary numbers of inputs and outputs
< sipa>
it'd be weird to have two identical payments in one (why didn't they/you combine them into one), but not illegal
< aciddan50>
thank you sipa, that helped a lot
< luke-jr>
if I saw that, I'd double check that vout is different though :p