< bitcoin-git> [bitcoin] luke-jr opened pull request #17872: QA: p2p_invalid_block: Check that a block rejected due to too-new time is later accepted (master...qa_timetoonew_retry) https://github.com/bitcoin/bitcoin/pull/17872
< bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/593f5e239f27...da279fe0eef9
< bitcoin-git> bitcoin/master 7754d7a Hennadii Stepanov: refactor: Remove unused defines in bitcoinunits.h
< bitcoin-git> bitcoin/master da279fe fanquake: Merge #17869: refactor: Remove unused defines in qt/bitcoinunits.h
< bitcoin-git> [bitcoin] fanquake merged pull request #17869: refactor: Remove unused defines in qt/bitcoinunits.h (master...20200104-refactor-bitcoinunits) https://github.com/bitcoin/bitcoin/pull/17869
< bitcoin-git> [bitcoin] fanquake closed pull request #16905: test: return self from ECKey/ECPubKey functions (master...2019-09-self) https://github.com/bitcoin/bitcoin/pull/16905
< bitcoin-git> [bitcoin] fanquake closed pull request #16948: doc: Add to Doxygen documentation guidelines (master...doc/devnotes-doxygen) https://github.com/bitcoin/bitcoin/pull/16948
< bitcoin-git> [bitcoin] fanquake closed pull request #17305: doc: Updated -blocksonly documentation (master...issue#17294) https://github.com/bitcoin/bitcoin/pull/17305
< bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/da279fe0eef9...b949ac9697a6
< bitcoin-git> bitcoin/master 582e66b Gr0kchain: doc: Added regtest config for linearize script
< bitcoin-git> bitcoin/master b949ac9 fanquake: Merge #17393: doc: Added regtest config for linearize script
< bitcoin-git> [bitcoin] fanquake merged pull request #17393: doc: Added regtest config for linearize script (master...patch-2) https://github.com/bitcoin/bitcoin/pull/17393
< bitcoin-git> [bitcoin] fanquake closed pull request #15505: p2p: Request NOTFOUND transactions immediately from other outbound peers, when possible (master...2019-02-notfound-requests) https://github.com/bitcoin/bitcoin/pull/15505
< luke-jr> hmm, it seems like whitelisted peers on invalid chains get spammed with getdata requests :x (but not using master atm)
< bitcoin-git> [bitcoin] fanquake closed pull request #17533: build: undo Werror=unused-variable (master...2019/11/no-unused-variable-error) https://github.com/bitcoin/bitcoin/pull/17533
< bitcoin-git> [bitcoin] fanquake closed pull request #17808: util: Replace itostr/i64tostr with c++11 to_string (master...akh_to_string) https://github.com/bitcoin/bitcoin/pull/17808
< meshcollider> hello :) back from my trip now so I'll try and catch up on PRs and everything in the next few days. Feel free to ping me if anyone has PRs that are RTM now
< fanquake> meshcollider Hope you enjoyed. 17621, probably take a look at 16373 as well.
< meshcollider> fanquake: awesome thanks
< bitcoin-git> [bitcoin] jonatack opened pull request #17873: doc: Add to Doxygen documentation guidelines (master...doxygen-developer-notes-improvements) https://github.com/bitcoin/bitcoin/pull/17873
< fanquake> jonatack In 17873, you should just be editing the original commit directly. There's no point including it (including all it's issues), only to revert a bunch of the changes in a follow up commit.
< bitcoin-git> [bitcoin] fanquake opened pull request #17874: build: make linker checks more robust (master...make_linker_checks_more_robust) https://github.com/bitcoin/bitcoin/pull/17874
< jonatack> fanquake: 17873: done
< jonatack> meshcollider: welcome back. 17578 has 3 acks from jnewbery, fjahr, promag... unblocks both 17585 and adding multiple labels per address
< fanquake> Where is the third ACK in that PR? I count two.
< jonatack> fanquake: https://github.com/bitcoin/bitcoin/pull/17578#issuecomment-566337426, only nit changes since
< jonatack> (thanks for looking!)
< fanquake> Right. Generally I ignore ACKs that aren't for the latest changes.
< jonatack> fair enough
< bitcoin-git> [bitcoin] fanquake closed pull request #17110: appveyor: Add -l test_suite to .appveyor.yaml (master...master) https://github.com/bitcoin/bitcoin/pull/17110
< kallewoof> fanquake: noted you closed a PR stating the fix should be in the PR that uses it. Do you think #16653 should be closed, then? It felt like it would ease review of the two features, which is why I split it out.
< gribble> https://github.com/bitcoin/bitcoin/issues/16653 | script: add simple signature support (checker/creator) by kallewoof . Pull Request #16653 . bitcoin/bitcoin . GitHub
< fanquake> kallewoof I'm missing some context there, but can answer soon. However if it's a feature split, that sounds better than the PR I closed.
< kallewoof> fanquake: I split out the simple signature feature used in bip-322 and 325 as it was a shared feature and would lower the review burden on the other two if merged
< fanquake> kallewoof sounds ok
< elichai2> anyone saw this before?
< elichai2> /usr/bin/ld: qt/libbitcoinqt.a(libbitcoinqt_a-overviewpage.o): in function `TxViewDelegate::TxViewDelegate(PlatformStyle const*, QObject*)':
< elichai2> src/qt/overviewpage.cpp:58: undefined reference to `vtable for TxViewDelegate'
< hebasto> elichai2: on master?
< elichai2> No. Just hoped someone already saw this before I start chasing ghosts :)
< bitcoin-git> [bitcoin] andrewtoth closed pull request #17790: mining: Fix getmininginfo currentblockweight inaccuracy (master...getmininginfo-weight) https://github.com/bitcoin/bitcoin/pull/17790
< gwillen> 37UTunbbkilvgkfduhkddjgrivcnihru
< gwillen> argh, sorry.
< gwillen> elichai2: "undefined reference to vtable" is a weird C++ corner case that happens when the compiler is confused about which object file to put the vtable in
< gwillen> if you have not yet written a definition for every function in the class, treat it as meaning "undefined reference to <one of the functions>"
< gwillen> specifically "the first non-inline non-pure-virtual function in the class", according to the documentation
< gwillen> apparently failing to implement a virtual destructor in a class with virtual functions is a popular way to trigger this
< luke-jr> elichai2: IIRC that's usually meaning there's a MOC missing somewhere
< elichai2> Thanks
< fanquake> jonasschnelli: can you take a look at 17096
< bitcoin-git> [bitcoin] hebasto opened pull request #17877: qt, refactor: Make enums in BitcoinUnits class scoped (master...20200105-scoped-enums) https://github.com/bitcoin/bitcoin/pull/17877
< fanquake> kallewoof can you have a look at backporting #16240
< gribble> https://github.com/bitcoin/bitcoin/issues/16240 | JSONRPCRequest-aware RPCHelpMan by kallewoof . Pull Request #16240 . bitcoin/bitcoin . GitHub