1 2016-10-09 03:12:43 0|luke-jr|huh, apparently there's a way to fsync just a single directory. I wonder if we should try to use that.
2 2016-10-09 03:14:17 0|luke-jr|$ xfs_io -c fdatasync /mnt/testdir
3 2016-10-09 03:16:01 0|luke-jr|(not limited to xfs)
4 2016-10-09 10:37:29 0|gmaxwell|I've unsubscribed from bitcoin-dev. Feel free to forward me anything the needs my attention.
5 2016-10-09 10:37:54 0|btcdrak|thank jeremyrubin
6 2016-10-09 13:18:20 0|GitHub154|[13bitcoin] 15crowning- opened pull request #8903: Seed insecure_rand during start (06master...06patch-1) 02https://github.com/bitcoin/bitcoin/pull/8903
7 2016-10-09 15:15:55 0|SL__|what port is needed to be opened to run the BU node?
8 2016-10-09 15:16:45 0|achow101|SL__: probably 8333. This channel is for Bitcoin Core only, so discussion about other clients is OT
9 2016-10-09 15:19:24 0|SL__|Ok.. sry just clicked the link on BUs github. But thx anyway. :)
10 2016-10-09 20:11:22 0|GitHub156|[13bitcoin] 15dagurval opened pull request #8904: [qa] Fix compact block shortids for a test case (06master...06shortid-coinbase) 02https://github.com/bitcoin/bitcoin/pull/8904
11 2016-10-09 22:52:45 0|dcousens|(assuming a transaction is to be encoded per BIP141), is witnesses length always == to inputs length? Just reading: "A non-witness program (defined hereinafter) txin MUST be associated with an empty witness field, represented by a 0x00."
12 2016-10-09 22:55:25 0|sipa|confused
13 2016-10-09 22:55:35 0|dcousens|sipa: indeed, I may be :P
14 2016-10-09 22:55:55 0|sipa|i really don't know what you're asking
15 2016-10-09 22:57:05 0|dcousens|wait, lets roll back, is the witness field prefixed with a varint to indicate length? That is probably a mistake that slipped in during a WIP on the code I'm looking at
16 2016-10-09 22:57:16 0|dcousens|(is the witnesses** field)
17 2016-10-09 22:58:08 0|sipa|for each txin, a txinwitness is serialized
18 2016-10-09 22:58:37 0|dcousens|sipa: to rephrase, [nVersion][marker][flag](varint)[txins](varint)[txouts](varint?)[witness][nLockTime]
19 2016-10-09 22:58:56 0|sipa|no, there is no varint before the witnessss
20 2016-10-09 22:59:04 0|dcousens|right, cheers, that explains the confusion :)
21 2016-10-09 22:59:12 0|sipa|it's implicitly the same count as txin count
22 2016-10-09 22:59:19 0|dcousens|yeah, thats what I figured
23 2016-10-09 22:59:20 0|sipa|ok