< pierre_rochard> Does each wallet in vpwallets have a unique identifier?
< kallewoof> I had no idea nodes randomly rebroadcasted other people's transactions. Double spending is the only solution then. (Another case for RBF default on)
< sipa> kallewoof: some sites do
< sipa> though in general, nodes don't
< sipa> there is nothing to prevent them to, though
< sipa> and i think we'd be better off if there was some mempool synchronization that levelled the field
< kallewoof> Just see no reason for them to do it.
< kallewoof> Mempool synchronization? Like what?
< phantomcircuit> sipa, there are nodes that rebroadcast transactions seemingly on a timer
< gmaxwell> kallewoof: bitcoin core doesn't rebroadcast third party txn, but random bozos do, because they think they're helping in some cases, or because they want to pump up mempool stats. or god knows why
< phantomcircuit> either way, transactions do not expire
< gmaxwell> mempool sync is discussed some here: https://bitcointalk.org/index.php?topic=1377345.0
< kallewoof> gmaxwell: Ohh, okay. Thanks! (I should be on bitcointalk more often I guess)
< phantomcircuit> kallewoof, i'd generally advise against that unless you filter for pre 2014
< kallewoof> phantomcircuit: I very rarely visit it, but it seems like it has a lot of in-depth discussion.
< meshcollider> kallewoof: so much rubbish too though unfortunately
< kallewoof> meshcollider: That's unfortunate.
< sipa> kallewoof: i think i stopped frequenting bitcointalk in 2012 maybe
< sipa> or 2013
< gmaxwell> it's no worse than the mailing list now.
< gmaxwell> actually, I think it's better. There are a lot of dull and repetative posts on both, but BCT more promptly gets replies directing people to the last 20 times the material was discussed.
< kallewoof> Heh
< Provoostenator> sipa: so both the minimum fee required to get in the mempool and to bump transactions are both set by minrelayfee, but because there's also an MB limit to the mempool per node, that determines the effective minimum for the former?
< sipa> Provoostenator: run getmempoolinfo
< sipa> if your mempool is full, it will report a nonzero minrelayfee
< sipa> any time a transaction is kicked out of the mempool, the new relay fee is raised to the fee of what was kicked out
< sipa> and then it decays slowly back to 0
< Provoostenator> Ok, so it's more than an emergent property from the fact that low fees are kicked out.
< sipa> the goal is to have it carefully actually track the lowest acceptable feerate for your mempool
< sipa> which doesn't work if the mempool is always empty ;)
< Provoostenator> If people change their mempool size to something not standard, doesn't that create a fingerprinting opportunity?
< sipa> yup
< sipa> nodes even communicate their approximate minimum feerate to each other
< Provoostenator> sipa: I'm doing a fresh make clean and make now to see if I can reproduce the test error. I did that yesterday as well, but I wonder how reproducable it is.
< sipa> Provoostenator: also wipe your test cache
< sipa> (test/cache directory)
< Provoostenator> Ah, why doesn't make clean do that?
< sipa> because make clean removes the results of make
< sipa> the test cache isn't produced by make
< Provoostenator> make nuke?
< sipa> PR's welcome :p
< Provoostenator> I can try. Do have an objection to make clean doing this? Or should it be another command? I can't see why anyone would possibly want to keep the test cache around after running make clean.
< sipa> cfields: opinions? ^
< sipa> Provoostenator: did removing the cache help?
< sipa> if that's the case, that's unexpected on its own
< Provoostenator> sipa: my machine is not that fast; I'll tell you in 15 minutes or so :-)
< Provoostenator> But I'd that's safe to assume.
< Provoostenator> Oh ok, so the cache is supposed to be wiped? I'll see ifI can break that.
< Provoostenator> I wish Github emails would should show the comment someone replied to, so it's easier to tell what "fixed" refers to. I'll stalk them.
< sipa> no, wiping the cache _should not_ matter for this
< sipa> i'm just saying that before jumping to conclusions, you should try to reproduce with an empty cache
< Provoostenator> That's what I meant. I'll try if wiping helps, but it shouldn't. Make is running as we speak.
< sipa> install ccache
< Provoostenator> (I've learned not to assume stuff :-)
< sipa> no need to recompile from scratch every time you switch branches
< Provoostenator> Generally I don't recompile everything. In this case I just wanted to make sure everything was clean and it wasn't some build problem.
< Provoostenator> I'll try ccache
< sipa> if ccache is installed, configure will automatically detect and use it
< Provoostenator> Any good tools that can leverage other machines (e.g. EC2 nodes) to speed op compilation?
< sipa> distcc i guess, but i never really looked into that
< sipa> it's fast enough on an octacore machine :)
< Provoostenator> Don't make me quote CSW :-)
< sipa> hahaha
< Provoostenator> sipa: your comment about why self.nodes[0].generate(1) was needed just solved another mystery for me: https://medium.com/provoost-on-crypto/debugging-bitcoin-core-functional-tests-cc0aa6e7fd3e
< Provoostenator> I'll see if I can make sync_mempools() throw a warning if you call it during IDB.
< Provoostenator> And it would be nice to have a command to tell test nodes IDB is done without mining a block (cc jnewbery).
< aj> Provoostenator: you mean IBD (initial block download), or is IDB something i don't know about?
< Provoostenator> I need to stop making that typo. Yes, IBD, IDB is a record company :-)
< Provoostenator> (or whatever it is)
< Provoostenator> sipa: address_types.py passes now. I'll make a Github ticket next time I notice when removing test cache fixes a test.
< bitcoin-git> [bitcoin] laanwj pushed 4 new commits to master: https://github.com/bitcoin/bitcoin/compare/0e722e8879a8...c0902624b0ec
< bitcoin-git> bitcoin/master 2851b77 Pieter Wuille: Make all script verification flags softforks
< bitcoin-git> bitcoin/master 2dd6f80 Pieter Wuille: Add a test that all flags are softforks
< bitcoin-git> bitcoin/master 01013f5 Pieter Wuille: Simplify tx validation tests
< bitcoin-git> [bitcoin] laanwj closed pull request #10699: Make all script validation flags backward compatible (master...20170628_softflags) https://github.com/bitcoin/bitcoin/pull/10699
< sipa> o/
< wumpus> \o
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/c0902624b0ec...d48ab83f0053
< bitcoin-git> bitcoin/master 07c4838 Matt Corallo: Always return true if AppInitMain got to the end...
< bitcoin-git> bitcoin/master d48ab83 Wladimir J. van der Laan: Merge #11831: Always return true if AppInitMain got to the end...
< bitcoin-git> [bitcoin] laanwj closed pull request #11831: Always return true if AppInitMain got to the end (master...2017-12-startup-exit-return-code-race) https://github.com/bitcoin/bitcoin/pull/11831
< Provoostenator> p2p_full_blocktests failing on me with AssertionError: 1513072096.035577 <= 1513072096.086564
< Provoostenator> Slightly differtent numbers is another run: 1513070202.4765592 <= 1513070202.517996
< wumpus> uhoh
< Provoostenator> (on the segwit branch, I'll try master as well)
< wumpus> was it one of the recent commits?
< Provoostenator> Most recent version #11403
< gribble> https://github.com/bitcoin/bitcoin/issues/11403 | SegWit wallet support by sipa · Pull Request #11403 · bitcoin/bitcoin · GitHub
< Provoostenator> I am running make in another process, so maybe it's a timing thing?
< Provoostenator> I'll play around with it.
< Provoostenator> (make in another process, but also a different directory, so I mean perhaps heavy CPU / disk usage messes with the tests)
< wumpus> tests failures due to timing are unfortunately quite common
< wumpus> it passes here locally
< wumpus> (on current master)
< Provoostenator> Travis is happy too, so it's obviously not deterministic.
< wumpus> yes I've been running it a few times on different hosts
< Provoostenator> Are there any good tools to generate disk / cpu background usage? (other than running an Ethereum full node :-)
< sipa> cpuburn
< aj> wumpus: hey, i think i found a bug in the util unit test, that's been there since 2f7f2a in 2011; https://github.com/bitcoin/bitcoin/pull/11862/commits/56ca063fd65e05b8b71fa5421592cb9f56cd4d09 (argc < length(argv), so non-option behaviour isn't actually tested)
< wumpus> aj: cool, please send a fix :)
< wumpus> Provoostenator: do you get it on master too?
< Provoostenator> wumpus: yes, just did
< terrence> I want to develop a wallet, how can I get the lowest level api, or interface? instead of existing wrapped apis
< wumpus> terrence: the lowest level would be to implement transaction serialization, deserialization, signing, as well as keeping the balance and unspent state up to date with the current status of the block chain yourself
< promag> wumpus: not sure if that is what he means
< promag> terrence: do you know bitcoind rpc interface?
< wumpus> promag: lol, let's leave that to them instead of arguing about it between us
< promag> heh, "existing wrapped apis" I guess he is talking about some client library or web api.. dunno... *flys away*
< promag> wumpus: should replace in Assert with annotation in #11515?
< gribble> https://github.com/bitcoin/bitcoin/issues/11515 | Assert cs_main is held when retrieving node state by promag · Pull Request #11515 · bitcoin/bitcoin · GitHub
< promag> or keep both?
< terrence> @promag sorry, I dont know, I'm new to blockchain dev
< wumpus> promag: well BlueMatt has a point that if it can be checked compile time,there's no point doing it at run time
< wumpus> promag: personally I wouldn't remove the comment though
< wumpus> promag: 'this datastructure is protected by lock X' is useful information
< wumpus> however a GUARDED_BY annotation does the same
< wumpus> and is checked by the compiler, unlike a comment
< Provoostenator> Deleting cache doesn't help either. Getting this error quite consistently now.
< promag> yes, the comment is redundant
< wumpus> IF you add the annotation
< terrence> promag: thank you, how did you
< wumpus> I don't agree that the AssertLockHeld in one function makes the comment redundant
< terrence> I have so many questions that I cannot find on the internet...
< wumpus> locks protect data, not code
< wumpus> so the annotation or comment belongs at the data structure definition
< promag> terrence: you have to dig, learn, experiment.. you are not in the matrix
< promag> wumpus: what I meant is to keep the assert and replace the comment with the annotation
< wumpus> I'm ok with that
< terrence> promag: exactly, I'm new to blockchain, but I'm fascinated by blockchain
< wumpus> althoug in principle the assert is redundant when the annotation is there, but it doesn't hurt to have it so I don't find it worth a long discussion
< wumpus> better to be overcomplete here
< promag> terrence: then join #bitcoin instead
< promag> wumpus: I agree, if asserts can be removed when annotations are in place
< wumpus> promag: it's somewhat complicated because not all compilers check the annotations
< promag> so that's a +1 for assert
< terrence> promag: I did, seems no one active in there
< promag> terrence: try #bitcoin-dev
< wumpus> #bitcoin is the most busy channel in the bitcoin community, if no one is active there you're just at the wrong time
< terrence> wumpus: okay... maybe wrong time
< promag> wumpus: if you're bored #11870
< gribble> https://github.com/bitcoin/bitcoin/issues/11870 | wallet: Remove unnecessary mempool lock in ReacceptWalletTransactions by promag · Pull Request #11870 · bitcoin/bitcoin · GitHub
< promag> pushed #11515
< gribble> https://github.com/bitcoin/bitcoin/issues/11515 | Assert cs_main is held when retrieving node state by promag · Pull Request #11515 · bitcoin/bitcoin · GitHub
< wumpus> I'm never bored
< bitcoin-git> [bitcoin] laanwj closed pull request #11354: Coins DB: Improve handling of FRESH child with non-DIRTY parent in CCoinsViewCa… (master...fix/batch-write-clean-parent-fresh-child) https://github.com/bitcoin/bitcoin/pull/11354
< wumpus> so many things to do and so little time/energy
< promag> wumpus: are you talking about 234 open PR's? :p
< wumpus> for ex.
< fanquake> The amount of stuff I see wumpus star on GH he must have about 5 side projects on the go
< wumpus> that's... about right :)
< fanquake> Plenty todo with graphics cards and their drivers/related software.
< promag> ah I guess you don't have kids
< promag> wumpus: "I think both ways should be supported for the foreseeable future, no need to deprecate anything right now" why keep legacy? in 3 releases it should not be there IMO
< wumpus> because we don't want to break people's software just because
< wumpus> the current way apparently works for everyone well. I kind of hate RPC PRs that break the interface just because the author likes some convention better.
< wumpus> I personally would prefer using arrays as well there but that doesn't mean that all previously written software that uses createrawtransaction shoudl break
< wumpus> it's just an alternative way of specifying the same data
< promag> I don't think overloading is that great
< wumpus> fine, I'll just NACK the whole change then
< promag> heh
< wumpus> keep the users in mind please
< promag> in these cases I tend to prefer new calls instead of overloading
< wumpus> which would be bs in this case
< meshcollider> which PR are you discussing
< meshcollider> oh, #11872 ?
< gribble> https://github.com/bitcoin/bitcoin/issues/11872 | [rpc] createrawtransaction: Accept sorted outputs by MarcoFalke · Pull Request #11872 · bitcoin/bitcoin · GitHub
< wumpus> FWIW in principle it is already possible to specify the order of outputs, but only if the client-side JSON library can emit ordered dictionaries. Python's can do this when you use Collections.OrderedDict() instead of a dictionary. The server-side (univalue) won't reorder dictionaries. But using an array is conforming to the spec instead of 'it happens to work'.
< bitcoin-git> [bitcoin] laanwj pushed 5 new commits to master: https://github.com/bitcoin/bitcoin/compare/d48ab83f0053...ad1820cbad15
< bitcoin-git> bitcoin/master 5fc6e71 John Newbery: [tests] Add network_thread_ utility functions....
< bitcoin-git> bitcoin/master 74e64f2 John Newbery: [tests] Use network_thread_start() in tests.
< bitcoin-git> bitcoin/master 34e08b3 John Newbery: [tests] Fix network threading in functional tests...
< promag> wumpus: OrderedDict doesn't allow to test duplicate output address
< wumpus> promag: that's true :)
< promag> how would we test that atm?
< wumpus> promag: I think python will let you write a dictionary class that can hold duplicate keys
< promag> there is defaultdict
< wumpus> alternatively, write the query yourself, insert raw json somehow
< wumpus> defaultdict doesn't allow that afaik
< wumpus> what you'd want is a list-kind of class with a custom json serializer that serializes as object
< wumpus> not sure how to do that or whether it's even possible
< promag> raw it is
< Provoostenator> I forgot that I used ./configure --enable-debug. The weird test functional errors I described above when I remove that (followed by make clean && make). They issues come back when I set --enable-debug again.
< wumpus> Provoostenator: that's very strange
< Provoostenator> They also run a lot slower with debug enabled, so that might be related.
< wumpus> --enable-debug does make locking a lot slower, so if it's some kind of race condition, it could be triggered by that
< wumpus> right.
< Provoostenator> I'll run again with jnewbery's latest commits you just merged
< promag> wumpus: nice, are you going to add the test or mind I do?
< bitcoin-git> [bitcoin] laanwj pushed 7 new commits to master: https://github.com/bitcoin/bitcoin/compare/ad1820cbad15...214046f69b19
< bitcoin-git> bitcoin/master 93a34cf Matt Corallo: Make DisconnectBlock unaware of where undo data resides on disk
< bitcoin-git> bitcoin/master 50701ba Matt Corallo: Move txindex/undo data disk location stuff out of ConnectBlock
< bitcoin-git> bitcoin/master e104f0f Matt Corallo: Move block writing out of AcceptBlock
< bitcoin-git> [bitcoin] laanwj closed pull request #10279: Add a CChainState class to validation.cpp to take another step towards clarifying internal interfaces (master...2016-12-cconsensus) https://github.com/bitcoin/bitcoin/pull/10279
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/214046f69b19...5d132e8b9746
< bitcoin-git> bitcoin/master a720b92 practicalswift: Remove includes in .cpp files for things the corresponding .h file already included
< bitcoin-git> bitcoin/master 5d132e8 Wladimir J. van der Laan: Merge #10574: Remove includes in .cpp files for things the corresponding .h file already included...
< bitcoin-git> [bitcoin] laanwj closed pull request #10574: Remove includes in .cpp files for things the corresponding .h file already included (master...redundant) https://github.com/bitcoin/bitcoin/pull/10574
< pierre_rochard> Does each wallet in vpwallets have a unique identifier? The class has GetName “for logging/debugging purposes” and there is the wallet’s vector index, not sure that I can rely on either of these
< promag> don't use the index
< promag> btw, what is the purpose?
< pierre_rochard> accounting in multi-wallet world - which addresses belong to which wallet
< promag> a wallet index can change
< promag> and a wallet name too, if you do rename the wallet
< promag> there is no embedded unique id in the wallet yet and don't know if there will be one
< pierre_rochard> ah so is the wallet name the file name? like wallet.dat?
< promag> yes
< pierre_rochard> If there won’t be an embedded unique ID then wallet name will have to suffice
< pierre_rochard> Thank you!
< promag> don't recall if it is the filename or filepath though
< bitcoin-git> [bitcoin] promag opened pull request #11877: Improve createrawtransaction functional tests (master...2017-12-createrawtransaction) https://github.com/bitcoin/bitcoin/pull/11877
< promag> wumpus: when you said "Something that I guess needs to be tested explicitly now" I thought you meant there should be a functional test :P
< wumpus> promag: adding tests is alwasys good
< wumpus> promag: but indeed I meant adding the check, which I didn't expect to be there yet
< promag> wumpus: btw, is it really necessary to be unique? in terms of specification, is it possible to have duplicate output address?
< promag> IIRC there is no restriction there
< wumpus> I don't think transaction validation prohibits it
< wumpus> but our software enforces it everywhere so it's good to be consistent
< promag> are we disallowing just because of the key/value parameter?
< wumpus> no, because it's always been that way, also in the GUI
< promag> I should test in the UI..
< promag> ah ok ty
< wumpus> there's no reason to do it so it's generally indicative of a bug
< promag> wumpus: why? I could split coins to the same private, no?
< wumpus> just makes the transaction bigger than it should be, to pay more fees
< wumpus> if you want to split, definitely use different keys
< promag> right, best practise there
< BlueMatt> promag: was asking about a quick rebase-then-merge on #11041, which I think would be a good idea
< gribble> https://github.com/bitcoin/bitcoin/issues/11041 | Add LookupBlockIndex by promag · Pull Request #11041 · bitcoin/bitcoin · GitHub
< BlueMatt> mostly cause it would help me re-implement/rebase #10692 in a cleaner way
< gribble> https://github.com/bitcoin/bitcoin/issues/10692 | Make mapBlockIndex and chainActive and all CBlockIndex*es const outside of validation/CChainState by TheBlueMatt · Pull Request #10692 · bitcoin/bitcoin · GitHub
< BlueMatt> I think it has enough concept ack to merit that....promag, care to rebase?
< BlueMatt> I'll commit to reviewing it quick, and yelling at people to get it merged in a day or three
< * wumpus> wonders how near #11403 is
< gribble> https://github.com/bitcoin/bitcoin/issues/11403 | SegWit wallet support by sipa · Pull Request #11403 · bitcoin/bitcoin · GitHub
< * BlueMatt> needs to re-review today :(
< * wumpus> needs to review and test it too
< instagibbs> re-re-review time eh
< R> Hey, is anyone active here?
< Guest89357> ?
< Randolf> Guest89357: There are many active folks here, but the discussions are usually focused on the development of the various facets of the Bitcoin project.
< Guest89357> Ok
< Guest89357> well
< Guest89357> I have a problem related to an old bitcoin core client
< Guest89357> I don't suppose you guys could help me out with it?
< Randolf> Guest89357: For support, the #bitcoin channel is probably your best bet.
< wumpus> better to ask in #bitcoin, this is not a support but a development channel, read the topic please
< Guest89357> Ok
< Guest89357> sorry for bothering, will check that channel out!
< promag> BlueMatt: ok then
< promag> BlueMatt: later tonight (utc+0 here) I can do it
< BlueMatt> k, thanks
< ryanofsky> pierre_rochard, wallet files do have embedded identifiers, search for "get_fileid" in the code
< ryanofsky> but for your case, i think you probably better off using wallet filename, so users can understand & choose the id
< gribble> https://github.com/bitcoin/bitcoin/issues/11687 | External wallet files by ryanofsky · Pull Request #11687 · bitcoin/bitcoin · GitHub
< promag> ryanofsky: is get_fileid immutable?
< ryanofsky> not sure i understand but it's generated randomly, and we never change it but you can call an api to change it
< pierre_rochard> Thanks for the headsup ryanofsky - I’ll go with the wallet filename and will read through the PR
< promag> BlueMatt: I've updated the comment https://github.com/bitcoin/bitcoin/pull/11866#pullrequestreview-82808956 which I think you misinterpreted
< bitcoinman55> how do i encrypt a wallet on linux? ubuntu 16.04
< bitcoinman55> is it possible with the gui or i'll have to do it with commands
< BlueMatt> promag: no, I dont think I did
< BlueMatt> promag: I think we shouldnt be doing the duplicative check at all
< BlueMatt> bitcoinman55: #bitcoin will probably help you more, but, yes, there should be a button somewhere
< promag> but for instance, in the case there is a conflict, you say it will fire TransactionRemovedFromMempool right?
< sipa> instagibbs: if addresstype is bech32, addmultisigaddress should give you a bech32 address
< sipa> and passing bech32 addresses for individual keys to addmultisigaddress should work fine
< instagibbs> oh hmmm, so it only complains if you default with a different kind?
< sipa> you can't pass a P2WSH address to addmultisigaddress
< sipa> because that is not an address that refers to a key
< instagibbs> oh did I get my wires crossed and try a p2wsh
< instagibbs> ah yeah, thought i was testing a p2pkh
< instagibbs> still returning me a nested p2sh
< instagibbs> fwiw
< instagibbs> oh nevermind, typo in startup
< instagibbs> all comments retracted :) good work
< bitcoin-git> [bitcoin] jnewbery opened pull request #11879: [tests] remove redundant univalue_tests.cpp (master...remove_univalue_test) https://github.com/bitcoin/bitcoin/pull/11879
< sipa> Provoostenator: aha, snoei
< Provoostenator> I just got a new machine, so it's a good opportunity to see if any dependencies are missing in the docs...
< Provoostenator> Having some issues with make deploy not showing the icons.
< Provoostenator> Fixed by reboot, nvm.
< BlueMatt> hmm, re: #11873 I'm curious if anyone would maintain it or if it'd just die compared to travis where we at least theoretically work to fix failures
< gribble> https://github.com/bitcoin/bitcoin/issues/11873 | Visual studio Build setup for CI · Issue #11873 · bitcoin/bitcoin · GitHub
< BlueMatt> but it looks like its just a simple travis clone thinggy that runs windows vms instead of linux and is free for oss
< wumpus> BlueMatt: eh didn't the person more or less commit to maintaining MSVC support for forseeable future?
< wumpus> it was one of the first things I asked
< BlueMatt> oh heh
< BlueMatt> so we are gonna add this other travis-y thing to bitcoin/bitcoin?
< BlueMatt> #11854 could prolly get merged
< gribble> https://github.com/bitcoin/bitcoin/issues/11854 | Split up key and script metadata for better type safety by ryanofsky · Pull Request #11854 · bitcoin/bitcoin · GitHub
< * BlueMatt> likes it pre-segwit-wallet, sorry sipa :p
< sipa> ?
< BlueMatt> as in I'd like to see segwit wallet built on 11854, given it was partially the result of my review comments :p
< sipa> oh, no opinion there
< sipa> i'll gladly rebase if it's merged first
< wumpus> BlueMatt: yes I think it's basically good to go, there was some discussion about where to put the MSVC build system that I didn't read in detail yet
< BlueMatt> ah cool
< BlueMatt> also #11870 could probably be merged
< gribble> https://github.com/bitcoin/bitcoin/issues/11870 | wallet: Remove unnecessary mempool lock in ReacceptWalletTransactions by promag · Pull Request #11870 · bitcoin/bitcoin · GitHub
< wumpus> ok
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/5d132e8b9746...22149540f9e7
< bitcoin-git> bitcoin/master 9c8eca7 Russell Yanofsky: Split up key and script metadata for better type safety...
< bitcoin-git> bitcoin/master 2214954 Wladimir J. van der Laan: Merge #11854: Split up key and script metadata for better type safety...
< bitcoin-git> [bitcoin] laanwj closed pull request #11854: Split up key and script metadata for better type safety (master...pr/scriptmet) https://github.com/bitcoin/bitcoin/pull/11854
< BlueMatt> sipa: segwit wallet needs rebase :p
< sipa> BlueMatt: already on it
< BlueMatt> jonasschnelli: do you mind rebasing #11281 before review? Its kind confusing when some code added in intermediary commits is likely to be removed during rebase
< gribble> https://github.com/bitcoin/bitcoin/issues/11281 | Avoid permanent cs_main/cs_wallet lock during RescanFromTime by jonasschnelli · Pull Request #11281 · bitcoin/bitcoin · GitHub
< jonasschnelli> Oh. It needs rebase.. yes. Let me do that
< jonasschnelli> BlueMatt: You mean cleanup the commit history?
< jonasschnelli> The last two commits need squashing... can do now
< BlueMatt> yes, squash
< BlueMatt> thanks
< sipa> BlueMatt: done
< jonasschnelli> BlueMatt: here you go: #11281
< gribble> https://github.com/bitcoin/bitcoin/issues/11281 | Avoid permanent cs_main/cs_wallet lock during RescanFromTime by jonasschnelli · Pull Request #11281 · bitcoin/bitcoin · GitHub
< BlueMatt> thanks
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/22149540f9e7...ef8ba7d73a48
< bitcoin-git> bitcoin/master 5b25293 João Barbosa: wallet: Remove unnecessary mempool lock in ReacceptWalletTransactions
< bitcoin-git> bitcoin/master ef8ba7d Wladimir J. van der Laan: Merge #11870: wallet: Remove unnecessary mempool lock in ReacceptWalletTransactions...
< bitcoin-git> [bitcoin] laanwj closed pull request #11870: wallet: Remove unnecessary mempool lock in ReacceptWalletTransactions (master...2017-12-reaccept-wallet-transactions) https://github.com/bitcoin/bitcoin/pull/11870
< jonasschnelli> BlueMatt: thanks for reviewing #10387, what do you think about https://github.com/bitcoin/bitcoin/pull/10387#issuecomment-343357330
< gribble> https://github.com/bitcoin/bitcoin/issues/10387 | Eventually connect to NODE_NETWORK_LIMITED peers by jonasschnelli · Pull Request #10387 · bitcoin/bitcoin · GitHub
< BlueMatt> jonasschnelli: yes my comment was in response to gmaxwell's comment
< jonasschnelli> BlueMatt: overlooked that comment. Thanks
< cfields> BlueMatt: woohoo @ #10279!
< gribble> https://github.com/bitcoin/bitcoin/issues/10279 | Add a CChainState class to validation.cpp to take another step towards clarifying internal interfaces by TheBlueMatt · Pull Request #10279 · bitcoin/bitcoin · GitHub
< BlueMatt> cfields: heh, lol, yea
< BlueMatt> next is #10692, but want to rebase on #11041 first
< cfields> BlueMatt: that was much easier to review than I anticipated. Sorry for just getting to it.
< gribble> https://github.com/bitcoin/bitcoin/issues/10692 | Make mapBlockIndex and chainActive and all CBlockIndex*es const outside of validation/CChainState by TheBlueMatt · Pull Request #10692 · bitcoin/bitcoin · GitHub
< gribble> https://github.com/bitcoin/bitcoin/issues/11041 | Add LookupBlockIndex by promag · Pull Request #11041 · bitcoin/bitcoin · GitHub
< cfields> BlueMatt: could i convince you to do a quick PR to rename the class members? They're really confusing atm.
< BlueMatt> cfields: I mean you can do it, 10692 needs a *ton* of rebase, so I dont have anything important built on top of it
< cfields> ok
< bitcoin-git> [bitcoin] jnewbery opened pull request #11881: [WIP] [concept] Remove Python2 support (master...remove_python2) https://github.com/bitcoin/bitcoin/pull/11881
< jnewbery> Provoostenator: Your p2p-fullblocktest.py failures are due to timeouts. The assert message isn't very helpful but if you look down the stack you'll see that it's a timeout
< jnewbery> most likely because the re-org test at the end of p2p-fullblocktest.py isn't completing within the required 60 seconds
< jnewbery> Take a look at https://github.com/bitcoin/bitcoin/issues/11632 and see if the suggested change helps you
< jnewbery> instagibbs: achow101: did that change fix it for you?
< jnewbery> I've also completely refactored that test in #11773. Any review of those PRs, starting with #11771 would be greatly appreciated
< gribble> https://github.com/bitcoin/bitcoin/issues/11773 | [tests] Change p2p-fullblocktest to use BitcoinTestFramework by jnewbery · Pull Request #11773 · bitcoin/bitcoin · GitHub
< gribble> https://github.com/bitcoin/bitcoin/issues/11771 | [tests] Change invalidtxrequest to use BitcoinTestFramework by jnewbery · Pull Request #11771 · bitcoin/bitcoin · GitHub
< instagibbs> the refactor of the test fixed it yes
< achow101> jnewbery: 11773 fixed it for me
< jnewbery> great. Thanks!
< bitcoin-git> [bitcoin] jonasschnelli opened pull request #11882: Improve fallback fee situations (master...2017/12/feeest_readyness) https://github.com/bitcoin/bitcoin/pull/11882
< meshcollider> jnewbery: is there anything wrong with modifying bitcoin.conf in run_test() or should that only be done in setup_chain() ?
< jnewbery> meshcollider: by default, the test_framework will start your nodes in self.setup_nodes(), which is called *before* run_test() begins. That means if you don't restart your bitcoin nodes, then they won't see any changes in bitcoin.conf that you make in run_test()
< jnewbery> If you're stop-starting nodes and expect them to pick up changes in bitcoin.conf, then I see no problem with changing it in run_test().
< jnewbery> You can get the datadir with the datadir variable in TestNode
< jonasschnelli> Travis lacks a couple of PRs behind... I wonder if we once have that situation continues, all it requires is a new PR / PR push every 2hs.
< meshcollider> jnewbery: ok sweet, thanks
< bitcoin-git> [bitcoin] MeshCollider opened pull request #11883: Add configuration file/argument testing (master...201712_datadir_tests) https://github.com/bitcoin/bitcoin/pull/11883