< wumpus> getting quite tired too
< meshcollider> wumpus: re https://github.com/bitcoin/bitcoin/pull/10793#discussion_r137361636 did you want me to change it?
< meshcollider> or was that just a reply to dcousens
< wumpus> meshcollider: I'd prefer that - I think it'd make sense to restrict that PR what it says in the title; generally changing &vec[i] to vec.data() + i does nothing to avoid UB
< wumpus> which was the idea behind &var[0] to var.data()
< sipa> wumpus: &var[0] is inherently invalid for empty vectorz
< sipa> while var.data() is allowed for empty vectors
< sipa> you're still not allowed to dereference the result of var.data()
< sipa> but with &var[0] it's already invalid, whether you use it not
< wumpus> yes, I know that
< wumpus> that was my point, &var[0] to .data() makes sense, but e.g. &var[42] to var.data()+42 does not
< wumpus> which is what meshcollider has extended to scope to in some places in that PR
< sipa> oh, i see
< meshcollider> yeah I'll revert that
< sipa> well, &var[42] is also invalid for a var of length 42 or less
< sipa> while var.data() + 42 is always valid, as long as you don't use it
< wumpus> still, it's getting used in all those cases
< sipa> okay!
< wumpus> which is UB in any case
< meshcollider> yeah its usually used with memcpy()'s
< meshcollider> fixed
< meshcollider> poor Travis will be having a hard time with all these commits recently lol
< promag> speaking of that, wumpus any idea when you'll check #11006?
< promag> It can save some travis resources
< wumpus> I'm really confused about that one
< wumpus> can't reproduce any problems with it locally, but I'm afraid of bringing back random travis failures. I much prefer it taking somewhat longer to random failures that make people lose trust in the tests
< wumpus> I'm not sure what the problem was back then and if you can remove that workaround now, what made it go away
< promag> I would say merge as it get a couple more ACK, revert later if needed
< promag> I can't figure out if you did that, pass nullptr to timeout
< wumpus> no, I never did that, because it means that bitcoind will never terminate if there are open rpc connectinos
< wumpus> AFAIK
< promag> that is correct, but if the connections are closed then it quits immediately, if not then it will break as it is now
< wumpus> so the timeout is there to force any existing RPC connections to terminate
< promag> right, for instance, some dumb tests, whatever
< wumpus> yes, could be for various reasons, our examples pretty much encourage keeping connections open between commands
< promag> in the best scenario, there are no active events and the loop can exit right away
< wumpus> (which is more efficient than opening a new connection for every commmand, but we don't want this to hold up the shutdown process, people will get confused)
< wumpus> stop means that the process must exit, despite open connections
< wumpus> yes, I agree ideally it should exit immediately if there are no active eventw
< wumpus> and in say, 3 seconds if there are active events
< wumpus> that's why the code is so complicated
< promag> so, on my side I did test with different libevent versions, run test suite multiple times.. no issue so far
< wumpus> yes, but did you try keeping connections open to the daemon after sending stop?
< wumpus> e.g. trying to prevent it from exiting
< wumpus> you've checked that it doesn't quit prematurely, which is great, but only part of the functionality
< wumpus> what if you change the sleep(3) to sleep(1000)
< wumpus> does it wait 1000 seconds to actually exit?
< wumpus> or does it give up after a while
< promag> 1001sec please
< wumpus> lol
< promag> but I guess it will break, because of the current code
< promag> I mean, it's not graceful quit
< promag> err, rebuild, removed worktree
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/645a7ecc0b8d...f65614726de2
< bitcoin-git> bitcoin/master e91b961 flack: Create dependencies.md, and link dependencies file from README & build docs
< bitcoin-git> bitcoin/master f656147 Wladimir J. van der Laan: Merge #10779: Create dependencies.md...
< bitcoin-git> [bitcoin] laanwj closed pull request #10779: Create dependencies.md (master...patch-2) https://github.com/bitcoin/bitcoin/pull/10779
< meshcollider> also wumpus, re #11237, do you want me to fix the weird commit split or leave it as-is
< esotericnonsense> hm. promag: i'm looking at adding tests for the weight field in mempool now. can get it to work for txid2 and txid3 but not txid1. sdaftuar's 'add wtxid to mempool entry output'
< esotericnonsense> also fails on txid1 if I reuse his test.
< bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/f65614726de2...2a56baf395bf
< bitcoin-git> bitcoin/master ca67ddf esneider: Move the AreInputsStandard documentation next to its implementation
< bitcoin-git> bitcoin/master 2a56baf MarcoFalke: Merge #10682: Trivial: Move the AreInputsStandard documentation next to its implementation...
< bitcoin-git> [bitcoin] MarcoFalke closed pull request #10682: Trivial: Move the AreInputsStandard documentation next to its implementation (master...move-doc) https://github.com/bitcoin/bitcoin/pull/10682
< esotericnonsense> i've amended the PR and pointed out the test that fails. my knowledge here is lacking unfortunately.
< meshcollider> esotericnonsense: isn't it failing because txid1 has no witness
< meshcollider> hmm idk
< esotericnonsense> meshcollider: it might be that i'm getting lost in the python framework's definitions
< esotericnonsense> from BIP141 i interpret 'base tx size' as tx.serialize() (because it is equivalent to tx.serialize_without_witness()), and tx.serialize_with_witness() as being total transaction size BIP141
< meshcollider> yeah that sounds right
< esotericnonsense> 'size' in the mempool rpc is virtual tx size (weight/4)
< esotericnonsense> argh. doh. this makes the entire thing pointless. brain fart.
< meshcollider> hmm not quite, virtual size is rounded up to the nearest integer so they're not entirely the same
< esotericnonsense> ah yes that's true.
< sipa> it's (3*size_without_witness + size + 3)/4
< esotericnonsense> size == math.ceil(weight/4) checks out for all three tx in segwit.py. it's just this one for which tx.serialize()*3 + tx.serialize_with_witness() != weight.
< esotericnonsense> hm.
< meshcollider> sipa: where does the extra +3 come from?
< esotericnonsense> meshcollider: it just accomplishes the ceiling function
< esotericnonsense> e.g. (3*nowitness + size + 3)/4 == ceil((3*nowitness+size)/4)
< esotericnonsense> (where the former uses integer division)
< sipa> meshcollider: to round up
< sipa> esotericnonsense: right
< meshcollider> ok yeah so it relies on integer division, that's where I was confused
< meshcollider> Was thinking there might be some reason it was always exactly an integer lol
< esotericnonsense> the problem is that i misinterpreted the original rpc call, so knowing size and weight is not useful for my particular case, which means that my PR is probably pointless :)
< esotericnonsense> (the intention was to know 'is this a segwit tx')
< meshcollider> also kinda relevant is issue #11218, sipa suggested renaming size to vsize
< esotericnonsense> the other PR accomplishes what I need, (just check wtxid against txid)
< esotericnonsense> if it were base size and not vsize, then my check of bsize*4 != weight would work
< jtimon> jnewbery: does BitcoinTestFramework.add_nodes() need to get num_nodes as param, isn't that internal now?
< jtimon> never mind, let me read more...
< meshcollider> can someone with travis powers restart the failed one here, should be unrelated: https://travis-ci.org/bitcoin/bitcoin/jobs/272710677
< meshcollider> can only members with write access restart travis? Seems like that should be a weaker permission, but not really sure how githubs permission model works
< kallewoof> meshcollider: restarted
< meshcollider> thanks :)
< meshcollider> So no IRC meeting this week right?
< meshcollider> is this intended behavior? https://i.imgur.com/juKAf1O.png the credit shows the full 7 BTC which was received by the wallet, but it was received on 2 separate addresses in the same transaction (3 and 4 BTC respectively), because from looking at that transaction details window it looks like the full 7 BTC was received on just that one address
< meshcollider> heh I forgot, everyones in SF so no one will be online at 4:30am sf time
< meshcollider> but I have a feeling this might be what the change to transactiondesc.cpp in #7101 was trying to fix
< esotericnonsense> meshcollider: this is feeling oddly familiar, i think i encountered this years ago when splitting coins
< esotericnonsense> meshcollider: i just tried to test this but forgot that there's special behaviour if you send to your own wallet, doh
< meshcollider> I just ran 2 regtest nodes on the same machine to do this
< meshcollider> just run one with -port=whatever and then addnode=127.0.0.1:whatever in the other nodes config
< esotericnonsense> crafted another one by using -wallet.
< esotericnonsense> this tx, with 4 outputs, 3 to 'wallet2' and 1 to change in 'wallet1', is showing as three seperate entries/rows in the 'wallet2' node.
< meshcollider> yep but if you go into the full details of each row, do they all just give the total, not the individual received by that address?
< esotericnonsense> ah yes.
< esotericnonsense> it's a bit odd in any case. on the 'sending wallet' it apportions the fee arbitrarily to one output.
< meshcollider> indeed
< meshcollider> seems like lots of little bugs are mixed up in this
< esotericnonsense> it's difficult for me to reason about what you even want it to show really :P
< meshcollider> Yeah I guess the fee being attributed to a random output kinda makes sense right, its gotta be shown somewhere and you wouldn't want to make another whole row for it in the table
< meshcollider> its just the full details page, if you open it for any row from the same transaction it should show all inputs from that same transaction right, not just the one. Then it would make sense to have a total on there
< meshcollider> in a similar way to how its shown on the sending node
< meshcollider> like, this makes sense for sending https://i.imgur.com/Oz5X45l.png but this doesn't make sense to me for receiving https://i.imgur.com/H5wHdmJ.png
< bitcoin-git> [bitcoin] practicalswift opened pull request #11264: [doc] Fix broken Markdown table in dependencies.md (master...dependencies-capitalization) https://github.com/bitcoin/bitcoin/pull/11264
< bitcoin-git> [bitcoin] MarcoFalke closed pull request #10731: Escape rather than remove any printable characters in UAs (master...log_more_uacomment) https://github.com/bitcoin/bitcoin/pull/10731
< bitcoin-git> [bitcoin] MarcoFalke closed pull request #10748: [config] Help text cleanup (master...helptextcleanup) https://github.com/bitcoin/bitcoin/pull/10748
< bitcoin-git> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/2a56baf395bf...9c8f3655cc68
< bitcoin-git> bitcoin/master d2be7b2 James Evans: Typo in optionsdialog.ui...
< bitcoin-git> bitcoin/master 9c8f365 Jonas Schnelli: Merge #10911: [qt] Fix typo and access key in optionsdialog.ui...
< bitcoin-git> [bitcoin] jonasschnelli closed pull request #10911: [qt] Fix typo and access key in optionsdialog.ui (master...master) https://github.com/bitcoin/bitcoin/pull/10911
< MarcoFalke> wumpus: Mind to add the git log to the release notes?
< MarcoFalke> I'd like to take a look before tagging final
< bitcoin-git> [bitcoin] laanwj opened pull request #11267: rpc: update cli for estimatefee argument rename (master...2017_09_renamed_estimatefee_arg) https://github.com/bitcoin/bitcoin/pull/11267
< wumpus> MarcoFalke: ah shit, still need to do that, good point. Not sure I have all the tooling here.
< bitcoin-git> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/9c8f3655cc68...ea729d55b4db
< bitcoin-git> bitcoin/master ee4d149 Matt Corallo: Drop upgrade-cancel callback registration for a generic "resumeable"...
< bitcoin-git> bitcoin/master ea729d5 Jonas Schnelli: Merge #10770: Drop upgrade-cancel callback registration for a generic "cancelable"...
< bitcoin-git> [bitcoin] jonasschnelli closed pull request #10770: Drop upgrade-cancel callback registration for a generic "cancelable" (master...2017-07-upgrade-cancel-nits) https://github.com/bitcoin/bitcoin/pull/10770
< bitcoin-git> [bitcoin] MarcoFalke reopened pull request #10748: [config] Help text cleanup (master...helptextcleanup) https://github.com/bitcoin/bitcoin/pull/10748
< bitcoin-git> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/ea729d55b4db...a3624ddb1a3b
< bitcoin-git> bitcoin/master 9b348ff Dan Raviv: Fix memory leaks in qt/guiutil.cpp...
< bitcoin-git> bitcoin/master a3624dd Jonas Schnelli: Merge #11156: Fix memory leaks in qt/guiutil.cpp...
< bitcoin-git> [bitcoin] jonasschnelli closed pull request #11156: Fix memory leaks in qt/guiutil.cpp (master...fix/qt-guiutil-memory-leaks) https://github.com/bitcoin/bitcoin/pull/11156
< bitcoin-git> [bitcoin] jonasschnelli opened pull request #11268: [macOS] remove Growl support, remove unused code (master...2017/09/rm_growl) https://github.com/bitcoin/bitcoin/pull/11268
< MarcoFalke> cfields: Our travis builds are still broken since yesterday (they bumped the trusty image)
< MarcoFalke> I have no idea what is going on
< MarcoFalke> Mind to take a look?
< MarcoFalke> We could reroll to the deprecated image, maybe
< bitcoin-git> [bitcoin] donaloconnor opened pull request #11269: [Trivial Fix] CTxMemPoolEntry::UpdateAncestorState: modifySiagOps param type (master...fix_params_branch) https://github.com/bitcoin/bitcoin/pull/11269
< wumpus> uh oh, the travis upgrade thing happened?
< wumpus> travisgeddon
< MarcoFalke> Yeah, looks like other projects are switichg back to the "deprecated" image
< MarcoFalke> If someone feels like creating a pr: Add `group: deprecated-2017Q3` to .travis.yml
< kanzure> for this meeting i will be typing everyone's messages. thanks.
< aj> kanzure: always wanted to be a relay bot when you grew up?
< sipa> that's a long list!
< wumpus> yes, it's scary :)
< wumpus> and that's already with most trivials and refactors removed
< sipa> is it usually that long for a major release?
< wumpus> a new record every release
< wumpus> unless I screwed something up while generating it and this is the list since 0.3.x instead ;)
< sipa> ha
< sipa> MEETING
< wumpus> lol
< achow101> meeting
< sdaftuar> hi
< achow101> ?
< jnewbery> hi
< meshcollider> Hello :)
< gmaxwell> #bitcoin-core-dev Meeting: wumpus sipa gmaxwell jonasschnelli morcos luke-jr btcdrak sdaftuar jtimon cfields petertodd kanzure bluematt instagibbs phantomcircuit codeshark michagogo marcofalke paveljanik NicolasDorier jl2012 achow101
< instagibbs> hi
< BlueMatt> no?
< bitcoin-git> [bitcoin] laanwj opened pull request #11270: travis: Use deprecated trusty image (master...2017_09_travis_deprecated_image) https://github.com/bitcoin/bitcoin/pull/11270
< MarcoFalke> wha?
< CodeShark> are we doing this meeting? lol
< MarcoFalke> topics ... ?
< cfields> hi
< BlueMatt> we already said we were not doing meeting this week
< BlueMatt> iirc
< * sipa> suggests: lunch
< BlueMatt> ^^^
< wumpus> lol did you ac tually start the meeting?
< achow101> no one started it yet
< cdecker> The one time I could participate...
< jonasschnelli> hi
< achow101> how about we meet irl ad kanzure transcribes to irc
< achow101> s/ad/and/
< gmaxwell> We can tell sdaftuar all the great work we came up with for him to handle.
< BlueMatt> yea, sdaftuar is building segwit-wallet, right?
< BlueMatt> and sipa is being force-nominated wallet maintainer, so gets to review all of it :p
< luke-jr> I thought we would meet IRL, and kanzure transcribe it all to IRC
< * sdaftuar> hides
< meshcollider> lol
< kanzure> hi.
< kanzure> yeah i'm fine wit hthat
< sdaftuar> if you can predict the times i'll chime in and type that up as well that'd be great k thanks
< bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/a3624ddb1a3b...e7f125562fbb
< bitcoin-git> bitcoin/master 3b69a08 MeshCollider: Fix division by zero in time remaining
< bitcoin-git> bitcoin/master c8d38ab MeshCollider: Refactor tipUpdate as per style guide
< bitcoin-git> bitcoin/master e7f1255 Wladimir J. van der Laan: Merge #11237: qt: Fixing division by zero in time remaining...
< bitcoin-git> [bitcoin] laanwj closed pull request #11237: qt: Fixing division by zero in time remaining (master...201709_fix_estimated_time) https://github.com/bitcoin/bitcoin/pull/11237
< jtimon> perhaps a short summary of how are things going in the phisical meeting instead of the IRC meeting?
< jtimon> or kanzure's option sounds good too
< kanzure> there's various text from last few days, although not as much as zurich
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/e7f125562fbb...2f0d3e604aa9
< bitcoin-git> bitcoin/master 061297f jjz: Ensure that data types are consistent...
< bitcoin-git> bitcoin/master 2f0d3e6 Wladimir J. van der Laan: Merge #11232: Ensure that data types are consistent...
< meshcollider> wumpus: #11265 can be closed now that #11237 was merged, GitHub must not understand a comma separated list of issues being fixed
< bitcoin-git> [bitcoin] laanwj closed pull request #11232: Ensure that data types are consistent (master...master) https://github.com/bitcoin/bitcoin/pull/11232
< instagibbs> kanzure, are the digests published already
< wumpus> meshcollider: thanks for letting me know
< kanzure> there's one or two vulnerabilities that i shouldn't publish
< instagibbs> meshcollider, sdaftuar and anyone else not physically present, please bring up topics of choice if you have them.
< jtimon> so what topics have you been talking about there?
< jtimon> I assume 0.15.1 has bee na big topic
< kanzure> signature aggregation
< kanzure> coin selection
< wumpus> 0.15.1 (segwit wallet) was a big topic, yes
< kanzure> rescans
< gmaxwell> I think we know what we're doing for segwit wallet.
< gmaxwell> after discussion pieter proposed a quick path for it that basically does an addwitness on every address in the wallet.
< gmaxwell> Which we concluded didn't create any more debt than we already have, since people aleady can do that.
< gmaxwell> (We also spent a while talking about ways that things could be handled in the future and have good ideas there too)
< meshcollider> gmaxwell: would this happen if the user decides to do a full wallet upgrade to segwit?
< meshcollider> No mix between segwit and non-segwit right?
< kanzure> i wanted to cause more discussion about rolling utxo hashes but one of the necessary people seems to be absent today
< gmaxwell> meshcollider: we must support mixed wallets already because people already have them.
< kanzure> also jonasschnelli gave a talk on bip150 and bip151 the other day http://diyhpl.us/wiki/transcripts/sf-bitcoin-meetup/2017-09-04-jonas-schenlli-bip150-bip151/
< wumpus> mixed wallets are pretty much a neccesity
< gmaxwell> we won't be supporting 'segwit only' in 0.15.1 at least just because it's a bigger change. (rather than the couple line core change needed to just auto-addwitness to everything)
< gmaxwell> kanzure: that talk will have a video online in a bit.
< meshcollider> addwitness newaddresses or existing addresses too?
< gmaxwell> But perhaps in the future we will have wallets that are segwit only except for imported keys.
< gmaxwell> meshcollider: all due to backup recovery.
< michagogo> fakeping :-(
< gmaxwell> if you only do 'new' then you need a way of storing where you started doing that.
< meshcollider> Right, makes sense yep 👍
< kanzure> luke-jr wanted to talk about #7533 and #10391
< MarcoFalke> (scroll up a bit)
< MarcoFalke> for the yaml
< jtimon> any talks about creating a testnet for developing and testing signature aggregation? (shameless escuse to review beg https://github.com/bitcoin/bitcoin/pull/8994 )
< kanzure> signature aggregation will land in libsecp256k1 at some point
< jtimon> yeah, still too early to create a testnet, on the bright side I'm reading a lot of test code every time I rebase that...
< meshcollider> I'll review that a bit later today jtimon, I like the sound of it
< meshcollider> Any new bugs reported in rc3?
< jtimon> meshcollider: awesome!
< meshcollider> This segfault issue with Qt keeps coming up, #11262 yesterday is the third issue I've seen
< jonasschnelli> Yes. The segfault things is ugly... it seems to happen for self-compiled Bitcoin-Qts only. So it could be a Qt5.5 bug. Couldn't track it down so far
< jonasschnelli> hmm... good point.
< wumpus> yes the crashes in the sorting of the transaction list are vaguely worrying
< wumpus> seems some rare race condition
< jtimon> end meeting?
< kanzure> it's endless
< jtimon> thanks for the summary, looking forward to see the talks and transcripts
< kanzure> there's not as much text, but there's some.
< meshcollider> Are there any PRs for things like segwit wallet ready for review yet, are they incoming next few days or what
< MarcoFalke> cfields: With group edge `pyenv versions` is empty: https://travis-ci.org/MarcoFalke/bitcoin/jobs/273047509/config
< bitcoin-git> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/2f0d3e604aa9...e6ab88a4524a
< bitcoin-git> bitcoin/master 5cb3da0 Marko Bencun: keystore GetKeys(): return result instead of writing to reference...
< bitcoin-git> bitcoin/master fe09b01 Marko Bencun: add missing lock to crypter GetKeys()...
< bitcoin-git> bitcoin/master e6ab88a Wladimir J. van der Laan: Merge #10916: add missing lock to crypter GetKeys()...
< bitcoin-git> [bitcoin] laanwj closed pull request #10916: add missing lock to crypter GetKeys() (master...GetKeys) https://github.com/bitcoin/bitcoin/pull/10916
< wumpus> so if everyone is ok with the pull list in https://github.com/bitcoin-core/bitcoin-devwiki/wiki/Pulls-listing-for-0.15.0-(temporary) I'm going to paste it into the relnotes for 0.15.0 and tag final, if anyone still plans on looking through it (to find misattributions and such) let me know
< bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/e6ab88a4524a...52f8877525d5
< bitcoin-git> bitcoin/master fa40b0e MarcoFalke: travis: Assert default datadir isn't created, Run scripted diff only once
< bitcoin-git> bitcoin/master 52f8877 MarcoFalke: Merge #11260: travis: Assert default datadir isn't created, Run scripted diff only once...
< sipa> i'd like to see #11174 addressed
< bitcoin-git> [bitcoin] MarcoFalke closed pull request #11260: travis: Assert default datadir isn't created, Run scripted diff only once (master...Mf1708-travisYaml) https://github.com/bitcoin/bitcoin/pull/11260
< meshcollider> #11245 got tagged for 0.15.0 four hours ago, what's happening there
< meshcollider> If the issue isnt present in rc3 then there isn't much point including the fix in 0.15.0 release notes, but we don't know if it really got fixed
< bitcoin-git> [bitcoin] theuni opened pull request #11271: travis: filter out pyenv (master...travis-fix-pyenv) https://github.com/bitcoin/bitcoin/pull/11271
< MarcoFalke> wumpus: I will look at the pull list
< bitcoin-git> [bitcoin] laanwj closed pull request #11270: travis: Use deprecated trusty image (master...2017_09_travis_deprecated_image) https://github.com/bitcoin/bitcoin/pull/11270
< bitcoin-git> [bitcoin] laanwj closed pull request #11245: [0.15] Mention offscreen issue in release notes (0.15...201709_offscreen_release_note) https://github.com/bitcoin/bitcoin/pull/11245
< kyzeeruz> Hello world!
< meshcollider> What's needed for 11174 re: rescanning?
< meshcollider> I can make a PR if no one else is going to
< kyzeeruz> what is PR?
< meshcollider> Pull request
< meshcollider> But it sounded like gmaxwell was leaving a mental note for himself
< kyzeeruz> Is there somebody can give me a free web link to learn bitcoin coding?
< meshcollider> I think you're in the wrong channel, try #bitcoin :)
< bitcoin-git> [bitcoin] rawodb closed pull request #11177: Support for SegWit Addresses in RPC calls and change addresses (master...pr/rpc_getsegwitaddresses) https://github.com/bitcoin/bitcoin/pull/11177
< kyzeeruz> I want to create and build a bitcoin web game or either transforming an online game while playing earn a real bitcoin on it live online.
< bitcoin-git> [bitcoin] jonasschnelli opened pull request #11272: CKeystore/CCrypter: move relevant implementation out of the header (master...2017/09/wallet_refact) https://github.com/bitcoin/bitcoin/pull/11272
< meshcollider> Is the meeting over?
< bitcoin-git> [bitcoin] Xekyo opened pull request #11273: WIP: Ignore old format estimation file (master...ignoreOldFeeEstimates) https://github.com/bitcoin/bitcoin/pull/11273
< kyzeeruz> Is there any possible to use an old computer as a main miner to generate bitcoin?
< michagogo> meshcollider: it didn't happen
< michagogo> despite the ping
< jonasschnelli> meshcollider: because most of the devs are working in the same physical location right now, the meeting was not really happening...
< michagogo> kyzeeruz: short answer: no. Anyway, this is the wrong place
< jonasschnelli> yeah.. next week it will be again in the normal fashion
< jonasschnelli> sorry about that.
< kyzeeruz> thanks michagogo
< meshcollider> Ok sweet, just confused about the ping and thought it was started :)
< meshcollider> Hope the last day of SF goes well then
< bitcoin-git> [bitcoin] mess110 opened pull request #11274: [tests] Cleanup wildcard imports in functional tests (master...cleanup-wildcard-in-functional-tests) https://github.com/bitcoin/bitcoin/pull/11274
< kyzeeruz> What repositories maen?
< sipa> kyzeeruz: #bitcoin please
< esotericnonsense> is it expected that pruning can become a limiting factor in IBD? testing now and by increasing my prune size (essentially, temporarily disabling it) it seems to have increased sync rate by approx 30%
< esotericnonsense> the cache seems to flush on each pruning event
< esotericnonsense> testing ramdisk with prune=5000 vs ssd with prune=50000 -> 30% faster off the ssd (and seemingly improving as dbcache increases)
< MarcoFalke> wumpus: Pull list looks fine
< wumpus> MarcoFalke: thanks for checking
< BlueMatt> gah, mk229797 shows up on an issue and tells someone to download a datadir snapshot
< BlueMatt> I assume its not a real person...wumpus wanna ban that account?
< BlueMatt> hmm, maybe not?
< wumpus> banned
< BlueMatt> seems like a person, but thats a strange response
< BlueMatt> eh, whatever
< BlueMatt> they'll come here and complain if they're real
< wumpus> right, it was definitely not ok
< wumpus> hm, strange, I pushed the PR list in the release notes to the 0.15 branch and github's bot didnt trigger
< BlueMatt> :O
< wumpus> maybe it's overloaded
< BlueMatt> github has had a lot of notification delays of late...there's been a few days where their email was super slow for a few hours
< wumpus> I hope it's not our fault for merging so much :)
< BlueMatt> heh, I hope it is :p
< BlueMatt> (though other projects are larger...)
< bitcoin-git> [bitcoin] jonasschnelli opened pull request #11276: Update CONTRIBUTRING.md to reduce unnecesarry review workload (master...2017/09/cont) https://github.com/bitcoin/bitcoin/pull/11276
< wumpus> the IRC bot is definitely backlogged
< bitcoin-git> [bitcoin] laanwj closed pull request #11205: Make fixed CAmounts and related sanity function constexpr (master...refactor/constexpr-amount) https://github.com/bitcoin/bitcoin/pull/11205
< bitcoin-git> [bitcoin] MarcoFalke closed pull request #11274: [tests] Cleanup wildcard imports in functional tests (master...cleanup-wildcard-in-functional-tests) https://github.com/bitcoin/bitcoin/pull/11274
< bitcoin-git> [bitcoin] ryanofsky opened pull request #11277: Fix uninitialized URI in batch RPC requests (master...pr/mb) https://github.com/bitcoin/bitcoin/pull/11277
< bitcoin-git> [bitcoin] laanwj pushed 1 new commit to 0.15: https://github.com/bitcoin/bitcoin/commit/d4c9d00e7e79958dea9586f927778dba2be8230a
< bitcoin-git> bitcoin/0.15 d4c9d00 Wladimir J. van der Laan: doc: Add PRs list to release notes...
< bitcoin-git> [bitcoin] MarcoFalke pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/52f8877525d5...638e6c59da4f
< bitcoin-git> bitcoin/master aa2e0f0 Cory Fields: travis: filter out pyenv
< bitcoin-git> bitcoin/master 638e6c5 MarcoFalke: Merge #11271: travis: filter out pyenv...
< bitcoin-git> [bitcoin] MarcoFalke closed pull request #11271: travis: filter out pyenv (master...travis-fix-pyenv) https://github.com/bitcoin/bitcoin/pull/11271
< bitcoin-git> [bitcoin] MarcoFalke opened pull request #11279: doc: Add missing contributors to release notes (0.15...Mf1708-doc015rel) https://github.com/bitcoin/bitcoin/pull/11279
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to 0.15: https://github.com/bitcoin/bitcoin/compare/d4c9d00e7e79...adcc788f2a89
< bitcoin-git> bitcoin/0.15 fad16a9 MarcoFalke: doc: Add missing contributors to release notes...
< bitcoin-git> bitcoin/0.15 adcc788 Wladimir J. van der Laan: Merge #11279: doc: Add missing contributors to release notes...
< bitcoin-git> [bitcoin] laanwj closed pull request #11279: doc: Add missing contributors to release notes (0.15...Mf1708-doc015rel) https://github.com/bitcoin/bitcoin/pull/11279
< meshcollider> in #11174, it says to add release notes for rescanning an encrypted wallet
< meshcollider> is that basically putting https://github.com/bitcoin/bitcoin/issues/11249 into the release notes
< MarcoFalke> meshcollider: pulls welcome :)
< meshcollider> yeah I'm working on it at the moment but I'm just trying to work out what gmaxwell's mental note meant ;)
< meshcollider> < gmaxwell> mental note: we need release notes on the topup stuff and instructions for rescanning
< meshcollider> Also should this be a new section in the release notes? 'Notes for 0.15.0' or something?
< wumpus> maybe at the beginning, after the upgrade/compatibility instructions
< bitcoin-git> [bitcoin] MeshCollider opened pull request #11280: [0.15] Final to-do's for 0.15.0 release notes (0.15...201709_release_note_015_todo) https://github.com/bitcoin/bitcoin/pull/11280
< bitcoin-git> [bitcoin] laanwj closed pull request #10756: net processing: swap out signals for an interface class (master...no-net-signals2) https://github.com/bitcoin/bitcoin/pull/10756
< bitcoin-git> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/723e5806578b...efb4383ef6c6
< bitcoin-git> bitcoin/master 592404f MeshCollider: Changing &vec[0] to vec.data(), what 9804 missed
< bitcoin-git> bitcoin/master efb4383 Wladimir J. van der Laan: Merge #10793: Changing &var[0] to var.data()...
< bitcoin-git> [bitcoin] laanwj closed pull request #10793: Changing &var[0] to var.data() (master...prefer-vector-data) https://github.com/bitcoin/bitcoin/pull/10793
< wumpus> can people please review https://github.com/bitcoin/bitcoin/pull/11280? (final release notes updates for 0.15.0)
< meshcollider> especially sipa and gmaxwell since they added the todo list :)
< wumpus> yes
< wumpus> I think this is the first time that tagging a release is blocked on the release notes :)
< sipa> haha
< bitcoin-git> [bitcoin] jonasschnelli opened pull request #11281: Avoid pemanent cs_main/cs_wallet lock during RescanFromTime (master...2017/09/rescan_locks) https://github.com/bitcoin/bitcoin/pull/11281
< bitcoin-git> [bitcoin] MarcoFalke pushed 9 new commits to master: https://github.com/bitcoin/bitcoin/compare/efb4383ef6c6...791a0e6ddade
< meshcollider> hmm i'm not sure how to fix instagibbs comment, it would sound weird to just say "(this is not a regression)" right
< bitcoin-git> bitcoin/master 9c76ba1 John Newbery: [wallet] Rename InitLoadWallet() to OpenWallets()...
< bitcoin-git> bitcoin/master 1b9cee6 John Newbery: [wallet] Rename WalletVerify() to VerifyWallets()...
< bitcoin-git> bitcoin/master 2da5eaf John Newbery: [wallet] Add FlushWallets() function to wallet/init.cpp
< bitcoin-git> [bitcoin] MarcoFalke closed pull request #10767: [wallet] Clarify wallet initialization / destruction interface (master...walletinit2) https://github.com/bitcoin/bitcoin/pull/10767
< meshcollider> actually dw I think I've got it
< meshcollider> All good to go? Cancel travis again if you want :)
< luke-jr> wumpus: well, to be fair, IMO it *should* be blocked on the hiding GUI issue <.<
< meshcollider> wouldn't that require an rc4 though?
< luke-jr> yes :/
< meshcollider> According to discussion in #11245 it might have been fixed somehow upstream or something
< meshcollider> no one is really sure so I don't think blocking release on that would be worth it, the fix can get in to 0.15.1 anyway