< fanquake> ryanw qt-creator? I don't think many people do.
< bitcoin-git> [bitcoin] tomatopeel opened pull request #11993: Fixed createrawtransaction help text. (master...fix-createrawtransaction-help) https://github.com/bitcoin/bitcoin/pull/11993
< bitcoin-git> [bitcoin] fanquake opened pull request #11995: [depends] Fix Qt build with Xcode 9 (master...macos-10-13-fix-depends-qt) https://github.com/bitcoin/bitcoin/pull/11995
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/8f68fd281eec...9bad8d647217
< bitcoin-git> bitcoin/master 149dffd Cristian Mircea Messel: [rpc] mempoolinfo should take ::minRelayTxFee into account
< bitcoin-git> bitcoin/master 9bad8d6 Wladimir J. van der Laan: Merge #11475: [rpc] mempoolinfo should take ::minRelayTxFee into account...
< bitcoin-git> [bitcoin] laanwj closed pull request #11475: [rpc] mempoolinfo should take ::minRelayTxFee into account (master...include_minRelayTxFee_in_getmempoolinfo_rpc) https://github.com/bitcoin/bitcoin/pull/11475
< meshcollider> ping ryanofsky, wumpus: if you have a bit of time in the next few days, what do you think of this so far https://github.com/MeshCollider/bitcoin/commits/201712_argument_registration
< meshcollider> ive just converted the -help-debug argument so far for simplicity so I can get some higher level feedback
< meshcollider> but tested and working, if this looks good then i'll push ahead with converting the other params too and working through issues like SoftSetArg as they arise, then finally remove the legacy mapArgs code after theyre all converted
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/9bad8d647217...20166f8a4481
< bitcoin-git> bitcoin/master 3e1ee31 sean: [Tests] Adding unit tests for GetDifficulty in blockchain.cpp....
< bitcoin-git> bitcoin/master 20166f8 Wladimir J. van der Laan: Merge #11748: [Tests] Adding unit tests for GetDifficulty in blockchain.cpp....
< bitcoin-git> [bitcoin] laanwj closed pull request #11748: [Tests] Adding unit tests for GetDifficulty in blockchain.cpp. (master...blockchain_unittests) https://github.com/bitcoin/bitcoin/pull/11748
< aj> meshcollider: why meta_args.show_debug instead of just g_show_debug? (having meta_args declared as static in init.h seems wrong? the reference from qt/utilitydialog.cpp will be a different variable, and therefore uninitialised, no?)
< bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/20166f8a4481...5180a86c96bc
< bitcoin-git> bitcoin/master 00721e6 Martin Ankerl: Improved microbenchmarking with multiple features....
< bitcoin-git> bitcoin/master 760af84 Martin Ankerl: Removed CCheckQueueSpeed benchmark...
< bitcoin-git> bitcoin/master 5180a86 Wladimir J. van der Laan: Merge #11517: Tests: Improve benchmark precision...
< bitcoin-git> [bitcoin] laanwj closed pull request #11517: Tests: Improve benchmark precision (master...improved-benchmarking) https://github.com/bitcoin/bitcoin/pull/11517
< bitcoin-git> [bitcoin] ajtowns opened pull request #11997: [tests] util_tests.cpp: actually check ignored args (master...parseparam-fix) https://github.com/bitcoin/bitcoin/pull/11997
< sufi> hi could any one help me ... how do I create a blockchain after forking a bitcoin
< sipa> sufi: ##altcoin-dev
< sufi> sipa how
< sufi> please
< sipa> you're in the wrong channel
< meshcollider> aj: wumpus suggested keeping all the variables in a struct for each module didn't he
< meshcollider> aj: qt/bitcoin.cpp calls RegisterAllArgs and utilitydialog.cpp imports init.h though? I tested it on ./bitcoin-qt -help-debug -? and it seems to work
< aj> meshcollider: i took that as referring to metaArgs (the name,type,global array)
< meshcollider> aj: oh right, ok
< aj> meshcollider: you need to do ./bitcoin-qt -help-debug and then click on Help/Command Line Options to see the results of utilitydialog.cpp
< meshcollider> aj: Same thing as using the -? flag isn't it?
< aj> meshcollider: different code path
< meshcollider> Oh right, does that one not work then?
< aj> meshcollider: yeah. it has an entirely different bit of memory for meta_args and meta_args.show_debug that never gets set to true
< meshcollider> aj: I just tested that too, definitely works for me?
< meshcollider> -rpcservertimeout and things definitely only appear when I use -help-debug
< meshcollider> Anyway should I just drop static then
< aj> meshcollider: uiplatform and allowselfsignedrootcertificates are the only ones that should play up
< aj> meshcollider: yeah, extern g_meta_args or extern g_show_debug, and declaration in init.cpp or whereever