< bitcoin-git>
[bitcoin] gertjaap opened pull request #16192: Catches situations where capping on maxtxfee drops the fee too low (master...issue-10122) https://github.com/bitcoin/bitcoin/pull/16192
< instagibbs>
is it really true there are no tests for wallet upgrades :(
< bitcoin-git>
[bitcoin] jamesob opened pull request #16194: refactor: share blockmetadata with BlockManager (master...2019-06-au-blockman) https://github.com/bitcoin/bitcoin/pull/16194
< jonasschnelli>
sipa: about the CNetMessage serialization split: what do you think about using a CNetBuffer for keeping the buffer & hash state, and once complete, we convert it into a CNetMessage (pure command / payload)?
< jnewbery>
instagibbs: it really is true as far as I'm aware :(
< ryanofsky>
instagibbs, #12134 adds a nice framework for writing upgrade tests, and i'd like it merged but others think it would complicate testing framework to support old rpc versions, and would prefer to check in binary wallet blobs
< bitcoin-git>
[bitcoin] jkczyz opened pull request #16195: util: Use void* throughout support/lockedpool.h (master...2019-06-arena-key) https://github.com/bitcoin/bitcoin/pull/16195
< promag>
why travis didn't pick #16192?
< gribble>
https://github.com/bitcoin/bitcoin/issues/16192 | Wallet: Catches situations where capping on maxtxfee drops the fee too low by gertjaap · Pull Request #16192 · bitcoin/bitcoin · GitHub
< darosior>
Hi, with functional tests why do I need to generate >100 blocks to have my wallet knowing about the funds ? `self.nodes[0].generate(1)` then `self.nodes[0].sendtoaddress(` fails while `self.nodes[0].generate(101)` then `self.nodes[0].sendtoaddress(` passes ? Is this a good usage or should I do something else ? Reading other functional tests some seems to use the 101 trick but others don't
< sipa>
darosior: maturity rule
< darosior>
Thank you
< sipa>
coinbase outputs are unspendable until buried 100 blocks deep
< sipa>
so the wallet treats them as balance only when those blocks exist
< darosior>
Yes did not think to that, thank you for the quick answer !
< jb55>
oh nice scantxoutset is decently fast, gave it 100k p2pk descriptors and it finished in around 30 seconds.
< promag>
jb55 yeah wallet batch pr from achow101 improved that
< jb55>
promag: I thought that slowness was due to saving keys to disk
< sipa>
promag: scantxoutset is completely unrelated to the wallet