< bitcoin-git>
[bitcoin] Empact opened pull request #12357: Rationalize the CValidationState interface by splitting ::DoS across ::Invalid and ::Corrupt (master...validation-state-corrupt) https://github.com/bitcoin/bitcoin/pull/12357
< bitcoin-git>
[bitcoin] murrayn opened pull request #12351: Libraries: Use type more precisely indicating usage and avoid compilers warnings. (master...ptrdiff_t) https://github.com/bitcoin/bitcoin/pull/12351
< conman>
my pool code asks bitcoin core to validate addresses so if I upgrade to .16 without adding support it will likely create corrupt generation transactions for bech32
< bitcoin-git>
[bitcoin] clemtaylor opened pull request #12342: Extend #11583 to include "version handshake timeout" message (master...master) https://github.com/bitcoin/bitcoin/pull/12342
< gribble>
https://github.com/bitcoin/bitcoin/issues/11583 | Do not make it trivial for inbound peers to generate log entries by TheBlueMatt · Pull Request #11583 · bitcoin/bitcoin · GitHub
< bitcoin-git>
[bitcoin] fanquake closed pull request #12341: Correction in choice of words in QT (dutch) (master...201802030229-qt-dutch-lang-fix) https://github.com/bitcoin/bitcoin/pull/12341
< AndyS2>
Newbie to C++ and bitcoin core here. I've been looking at EvalScript in interpreter.cpp, and from what I gathered it seems to push things onto 'stack' or return an error if something isn't kosher. But when/where is the stack actually 'executed'. EvalScript doesn't seem to evaluate the script anywhere I could see.
< bitcoin-git>
[bitcoin] murrayn opened pull request #12331: Docs: Properly alphabetize output of CLI --help option. (master...help_changes) https://github.com/bitcoin/bitcoin/pull/12331
< gribble>
https://github.com/bitcoin/bitcoin/issues/12322 | Docs: Remove step making cloned repository world-writable for Windows build. by murrayn · Pull Request #12322 · bitcoin/bitcoin · GitHub
< bitcoin-git>
[bitcoin] promag opened pull request #12330: Reduce scope of cs_main and cs_wallet locks in listtransactions (master...2018-02-listtransactions) https://github.com/bitcoin/bitcoin/pull/12330
< jcorgan>
hey guys, just fyi, i've passed on the management/maintainer/architect roles in gnuradio to new hands (after 12 years), to focus on bitcoin-related work full-time. part of that will be getting back into core dev process. very much looking forward to the change of pace.
< gribble>
https://github.com/bitcoin/bitcoin/issues/11512 | Use GetDesireableServiceFlags in seeds, dnsseeds, fixing static seed adding by TheBlueMatt · Pull Request #11512 · bitcoin/bitcoin · GitHub
< sdaftuar>
i don't know if this is related, but i have a lot of lines like this in my debug.log: "trying connection seed.testnet.bitcoin.sprovoost.nl lastseen=0.0hrs"
< morcos>
cfields i did make changes in /etc/hosts, but isn't seed.bitcoin.sipa.be a mainnet seed?
< morcos>
0x00005555555ed33a in CConnman::ConnectNode (this=this@entry=0x555556bc8530, addrConnect=..., pszDest=0x0, pszDest@entry=0x7fffac08c150 "seed.testnet.bitcoin.sprovoost.nl", fCountFailure=fCountFailure@entry=false) at net.cpp:448
< morcos>
btw, before i forget, it seemed that running in testnet was reading peers.dat from .bitcoin and not testnet3
< bitcoin-git>
[bitcoin] kekimusmaximus opened pull request #12325: Use dynamic_cast for downcasting instead of static_cast. (master...use_dynamic_cast_to_downcast) https://github.com/bitcoin/bitcoin/pull/12325
< bitcoin-git>
[bitcoin] murrayn opened pull request #12322: Docs: Remove step making cloned repository world-writable for Windows build. (master...doc_change) https://github.com/bitcoin/bitcoin/pull/12322
< AndyS2>
It's not even on the blockchain if it is unconfirmed. It's just in the mempool to be potentially added. There's #bitcoin-dev for more general development questions, btw. This channel is more so for development of Bitcoin Core (an implementation of the protocol).
< bitcoin-git>
[bitcoin] MarcoFalke closed pull request #12309: doc: Explain how to update chainTxData in release process (master...2018_01_release_process_chaintxstats) https://github.com/bitcoin/bitcoin/pull/12309
< bitcoin-git>
bitcoin/master 895fbd7 MarcoFalke: Merge #12309: doc: Explain how to update chainTxData in release process...
< bitcoin-git>
bitcoin/master 7f968ae Wladimir J. van der Laan: doc: Explain how to update chainTxData in release process...
< provoostenator>
What would be more useful for me is being able to have testnet=1 in bitcoin.conf and then launch with -mainnet, because I do make that mistake quite often on my dev account.
< bitcoin-git>
[bitcoin] practicalswift closed pull request #10975: [script] Return early if no valid opcodes found in CountWitnessSigOps(...) (master...return-early-in-CountWitnessSigOps) https://github.com/bitcoin/bitcoin/pull/10975
< wumpus>
also they're probably not doing anything else in these VMs than building bitcoin
< bitcoin-git>
[bitcoin] laanwj opened pull request #12309: doc: Explain how to update chainTxData in release process (master...2018_01_release_process_chaintxstats) https://github.com/bitcoin/bitcoin/pull/12309
< bitcoin-git>
[bitcoin] laanwj opened pull request #12308: contrib: Add support for out-of-tree builds in gen-manpages.sh (master...2018_01_genmanpages_outoftree) https://github.com/bitcoin/bitcoin/pull/12308
< jtimon>
I don't think the option is very interesting (since the result will always be the same unless very bad things happen, just to further note is not bitcoin core specific)
< wumpus>
I understand the consensus code for bitcoin is set in stone, but surely the interface for the test framework isn't
< bitcoin-git>
[bitcoin] laanwj closed pull request #12302: test: Make ua_comment test pass on 0.16.0 (master...2017_01_uacomment_test_fix) https://github.com/bitcoin/bitcoin/pull/12302
< arubi>
daemon stopped, I mkdir 'wallet/' in datadir, moved all my wallet .dats in there, added a new 'wallet=30_01_28_btc_segwit.dat' line in bitcoin.conf, started the daemon, and the new wallet file with this name was created in the datadir root. somewhat surprising, I'm able to getwalletinfo for both this new wallet and old wallets that are now in wallet/ using the -rpcwallet= set
< bitcoin-git>
[bitcoin] laanwj opened pull request #12302: test: Make ua_comment test pass on 0.16.0 (master...2017_01_uacomment_test_fix) https://github.com/bitcoin/bitcoin/pull/12302
< cfields>
BlueMatt: got a stale bitcoin-config.h around somewhere?
< BlueMatt>
cfields: -DHAVE_CONFIG_H is passed to moc-qt5 (make claims it is, at least), and if I put an ENABLE_WALLET inside the if defined(HAVE_CONFIG_H) it works fine, but somehow bitcoin-config.h isnt getting included
< bitcoin-git>
[bitcoin] jeffrade opened pull request #12300: [Tests] Adding --enable-mainnet configuration option for ChainParams (master...mainnet_chain_config) https://github.com/bitcoin/bitcoin/pull/12300
< bitcoin-git>
[bitcoin] promag opened pull request #12299: Improve CWallet::IsFromMe for positive results (master...2018-01-isfromme) https://github.com/bitcoin/bitcoin/pull/12299
2018-01-29
< bitcoin-git>
[bitcoin] promag opened pull request #12298: Refactor HaveKeys to early return on false result (master...2018-01-ismine-havekeys) https://github.com/bitcoin/bitcoin/pull/12298
< bitcoin-git>
[bitcoin] promag opened pull request #12297: Improve CWallet::IsAllFromMe for false results (master...2018-01-isallfromme) https://github.com/bitcoin/bitcoin/pull/12297
< bitcoin-git>
[bitcoin] MarcoFalke opened pull request #12296: wallet: Only fee-bump and non-conflicted/non-confirmed txes (master...Mf1801-walletFeeBumpNoConf) https://github.com/bitcoin/bitcoin/pull/12296
< bitcoin-git>
[bitcoin] MarcoFalke closed pull request #12293: [rpc] Mention that HD is enabled if hdmasterkeyid is present (master...is-hd-enabled-rpc) https://github.com/bitcoin/bitcoin/pull/12293
< bitcoin-git>
bitcoin/master 9d9c418 MarcoFalke: Merge #12293: [rpc] Mention that HD is enabled if hdmasterkeyid is present...
< bitcoin-git>
bitcoin/master c6b6385 fanquake: [rpc] Mention that HD is enabled if hdmasterkeyid is present
< capa66>
hello, I havea question about segwit addresses in bitcoin-core, if i generate an address using addwitnessaddress can i send to that address and see the balance in bitcoin-qt?
< bitcoin-git>
[bitcoin] practicalswift opened pull request #12295: tests: Fix accidental redefinition via list comprehension. Enable lint-python.sh checking for this gotcha. (master...accidental-redefinition-of-variable) https://github.com/bitcoin/bitcoin/pull/12295
< bitcoin-git>
[bitcoin] fanquake opened pull request #12294: [Docs] Create NetBSD build instructions and fix compilation (master...netbsd-build-docs) https://github.com/bitcoin/bitcoin/pull/12294
< bitcoin-git>
[bitcoin] laanwj closed pull request #12159: Use the character based overload for std::string::find. (master...use_char_overload_find) https://github.com/bitcoin/bitcoin/pull/12159
< bitcoin-git>
bitcoin/master f3c7062 Wladimir J. van der Laan: Merge #12159: Use the character based overload for std::string::find....
< bitcoin-git>
bitcoin/master a73aab7 Alin Rus: Use the character based overload for std::string::find....
< bitcoin-git>
[bitcoin] fanquake closed pull request #12042: Add hdenabled flag in getwalletinfo (master...getwalletinfo/hdenabledflag) https://github.com/bitcoin/bitcoin/pull/12042
< bitcoin-git>
[bitcoin] fanquake opened pull request #12293: [rpc] Mention that HD is enabled if hdmasterkeyid is present (master...is-hd-enabled-rpc) https://github.com/bitcoin/bitcoin/pull/12293
< bitcoin-git>
[bitcoin] ajtowns opened pull request #12292: [tests] Fix names of excluded extended tests for travis (master...rename_tests_fix_travis) https://github.com/bitcoin/bitcoin/pull/12292