1 2016-03-19 04:31:24	0|jon_|Having a problem with bitcoin core can anyone help?
 2 2016-03-19 18:08:08	0|GitHub142|[13bitcoin] 15MarcoFalke opened pull request #7720: [qa] rpc-test: Normalize assert() (06master...06Mf1603-qaAssertNorm) 02https://github.com/bitcoin/bitcoin/pull/7720
 3 2016-03-19 19:12:04	0|Chris_Stewart_5|is there a function in bitcoin core to write a transaction's hex to stdout?
 4 2016-03-19 19:14:20	0|sipa|CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss << transaction; printf("Transaction: %s\n", HexStr(ss).c_str());
 5 2016-03-19 19:16:50	0|Chris_Stewart_5|any of the three or do those three lines need to be executed in sequence
 6 2016-03-19 19:17:03	0|Chris_Stewart_5|oh nvm
 7 2016-03-19 19:17:15	0|sipa|in sequence
 8 2016-03-19 19:24:43	0|Chris_Stewart_5|Looks like it worked perfectly, thanks sipa that saved me a lot of time
 9 2016-03-19 19:26:48	0|jonasschnelli|Chris_Stewart_5: Ah. Right. Wasn't looking into this channel.
10 2016-03-19 19:27:18	0|Chris_Stewart_5|Yeah I always like to try and ask in #bitcoin-dev before I ask in this channel :/
11 2016-03-19 19:27:58	0|jonasschnelli|Right. That's good.
12 2016-03-19 19:51:06	0|GitHub127|[13bitcoin] 15MarcoFalke opened pull request #7721: [qa] Use print() in rpc tests (06master...06Mf1603-qaPy3print) 02https://github.com/bitcoin/bitcoin/pull/7721
13 2016-03-19 20:05:58	0|jonasschnelli|cfields: Whats the reason of setting a first_read_cb while also setting the evbuffer_add_cb (https://github.com/theuni/libbtcnet/blob/64ade4933bc7295fb445f26c998634c50b28b4c0/src/connectionbase.cpp#L167)?
14 2016-03-19 20:09:12	0|cfields|jonasschnelli: 2 callbacks are added. one for events, one purely to report read/write chunks
15 2016-03-19 20:10:23	0|jonasschnelli|cfields: Okay. But after you get a callback on first_read_cb(), you redirect to read_cb,.. why exactly?
16 2016-03-19 20:10:31	0|cfields|jonasschnelli: more specifically, for the bufferevents, watermarks are used so that data reads are only reported for each complete message. for the evbuffers, it'll report every time a chunk is read/written from the socket
17 2016-03-19 20:11:51	0|cfields|jonasschnelli: there's a timeout of N seconds before we disconnect from a peer if no data is read/written. After that first read/write, the initial timeout is no longer needed, and we switch to the regular timeout value
18 2016-03-19 20:11:53	0|jonasschnelli|cfields: Okay. I see. evbuffer_add_cb(input, read_data, this); adds an additional callback.
19 2016-03-19 20:12:32	0|jonasschnelli|And the first_read_cb is for the different timeouts
20 2016-03-19 20:12:49	0|cfields|jonasschnelli: sorry, "if no data is *ever read/written"
21 2016-03-19 20:12:59	0|jonasschnelli|Okay. Thanks!
22 2016-03-19 20:13:47	0|cfields|jonasschnelli: thanks for reviewing! Please fire away with questions. I'd like to document it thoroughly, just not quite sure how
23 2016-03-19 20:14:16	0|jonasschnelli|cfields: I'll try now to understand the code,... its a pre-step for the review. :)
24 2016-03-19 20:14:42	0|cfields|it's probably worth commenting every time the callbacks are set.
25 2016-03-19 20:14:52	0|cfields|adding that to the todo
26 2016-03-19 20:43:49	0|madu|hello
27 2016-03-19 20:44:01	0|madu|someone there?
28 2016-03-19 20:44:06	0|sipa|nope, sorry
29 2016-03-19 20:44:11	0|madu|damn
30 2016-03-19 20:44:18	0|madu|thats sad
31 2016-03-19 20:44:31	0|sipa|:)
32 2016-03-19 20:44:37	0|madu|sipa
33 2016-03-19 20:45:02	0|madu|do you know how i can change something in the translation ?
34 2016-03-19 20:45:06	0|madu|of the gui
35 2016-03-19 20:45:39	0|MarcoFalke|translations are done on transifex
36 2016-03-19 20:45:40	0|madu|i changed somethings e.g. in bitcoin_de.ts and used lrelease to update bitcoin_de.qm
37 2016-03-19 20:46:06	0|madu|but the translations does not change
38 2016-03-19 20:47:31	0|MarcoFalke|We only pull them from transifex before every rc:
39 2016-03-19 20:47:33	0|MarcoFalke|https://github.com/bitcoin/bitcoin/commit/68134263e2bf73e3226c24d8fc6145520a3e8624
40 2016-03-19 20:50:56	0|madu|i dont understand
41 2016-03-19 20:51:16	0|madu|every translation will get updated?
42 2016-03-19 20:51:37	0|madu|i just wanna change the translation in my client
43 2016-03-19 20:51:42	0|sipa|MarcoFalke: you're not answering madu's question :)
44 2016-03-19 20:53:17	0|MarcoFalke|I don't understand the question, probably.
45 2016-03-19 20:53:58	0|sipa|MarcoFalke: he's trying to change the translation locally, but it does not seem to have an effect
46 2016-03-19 20:54:11	0|sipa|no release involved abywhere
47 2016-03-19 20:54:14	0|MarcoFalke|After you update the _de.tx file, you need to build the gui again
48 2016-03-19 20:54:32	0|sipa|unfortunately, i don't know anything about gui or translations, so i can't help :)
49 2016-03-19 21:05:25	0|madu|how do I rebuild the gui?
50 2016-03-19 21:05:53	0|madu|I changed the .ts file, through lrelase I got a new .qm file
51 2016-03-19 21:06:30	0|madu|with make clean i cleaned everything and build everything again new with make
52 2016-03-19 21:06:38	0|madu|but still its the same gui
53 2016-03-19 21:15:45	0|madu|hmm
54 2016-03-19 21:24:22	0|madu|hmm
55 2016-03-19 21:24:25	0|madu|now its working
56 2016-03-19 21:24:45	0|madu|dont know why.. but its working.. yess!
57 2016-03-19 21:24:46	0|madu|thanks
58 2016-03-19 21:29:37	0|sipa|madu: congrats :)
59 2016-03-19 21:44:39	0|GitHub128|[13bitcoin] 15MarcoFalke opened pull request #7722: [qa] Use python2/3 syntax (06master...06Mf1603-qaPy2/3) 02https://github.com/bitcoin/bitcoin/pull/7722
60 2016-03-19 21:59:18	0|Luke-Jr|wumpus: are you going to do the v0.10.5 release, or should I take over 0.10 branch?