1 2018-03-30 02:00:20	0|luke-jr|sipa: any obvious way to perhaps make the dnsseed.dat files compress and/or xdelta better? with 1.2 GB every day, it's starting to add up (~200 GB since 2012, compressed)
  2 2018-03-30 02:00:54	0|luke-jr|maybe there's some kind of sorting that would help
  3 2018-03-30 02:06:36	0|sipa|luke-jr: the file is 276 MiB for me
  4 2018-03-30 02:47:20	0|luke-jr|sipa: 1.2 GB for me XD
  5 2018-03-30 02:48:24	0|luke-jr|and the xdelta for today to yesterday is 295 MB
  6 2018-03-30 02:53:09	0|midnightmagic|is there that much churn?
  7 2018-03-30 02:54:42	0|luke-jr|dunno, I guess if I started over, mine would look closer to sipa's, but it seems more useful to have the diversity of whatever old data is in there
  8 2018-03-30 04:08:41	0|jtimon|thoughts on https://github.com/bitcoin/bitcoin/pull/10757#issuecomment-377440180 ? specially @MarcoFalke and @aj
  9 2018-03-30 04:23:42	0|ProfMac|Not totally unrelated to dnsseed.dat, I wrote my first awk script and have been looking at debug.log to see who is connecting to me.  I especially looked at IPv6 addresses, and I notice a lot of alias addresses for the same machine.  I assume my data is almost identical to the peers.dat data.
 10 2018-03-30 04:25:00	0|ProfMac|https://gist.github.com/a-mcintosh/8f3e87973483fd2cba98de0079bf0327#file-prime-awk
 11 2018-03-30 05:01:34	0|aj|jtimon: sorry, i keep forgetting to send you test case code for getblockstats
 12 2018-03-30 05:02:51	0|jtimon|aj: feel free to open a pr with my commits plus your tests, I really think it's the best wat to test it in concept but never wrote or seen the code
 13 2018-03-30 05:06:02	0|jtimon|and of course if you do ping me for review and testing
 14 2018-03-30 05:13:27	0|aj|BlueMatt: iceweasel rebranding was trademark issues (maybe "can't use firefox trademark if you ship old shit" though, i forget; thought it was just that debian did patches though), but they did away with that and introduced "extended support releases", so firefox-esr is in debian stable these days, and iceweasel is long gone
 15 2018-03-30 06:14:26	0|jimpo|Do people think that the best-effort getrawtransaction lookup from CCoinsCacheView if the txindex is disabled is a useful thing?
 16 2018-03-30 06:14:55	0|jimpo|As opposed to requiring either the txindex for the RPC to work or passing in the block_hash argument?
 17 2018-03-30 06:21:18	0|sipa|see #3220
 18 2018-03-30 06:21:20	0|gribble|https://github.com/bitcoin/bitcoin/issues/3220 | Getrawtransaction working partially without -txindex is confusing · Issue #3220 · bitcoin/bitcoin · GitHub
 19 2018-03-30 06:25:17	0|jimpo|Ah, thx
 20 2018-03-30 07:40:47	0|aj|>>> 515792/2016.*(32+4)
 21 2018-03-30 07:40:47	0|aj|jtimon: ule>
 22 2018-03-30 07:40:47	0|aj|TypeError: can't multiply sequence by non-int of type 'float'
 23 2018-03-30 07:40:52	0|aj|grr
 24 2018-03-30 07:41:03	0|aj|jtimon: https://github.com/jtimon/bitcoin/pull/11/commits
 25 2018-03-30 07:47:28	0|jtimon|aj: looks very good at a glance, I'm going to bed but I will check it out and test it
 26 2018-03-30 07:48:06	0|aj|jtimon: yeah, feel free to squash and tidy it up to your preferred style, but i think the approach should work fine
 27 2018-03-30 07:48:46	0|jtimon|yeah, thanks
 28 2018-03-30 07:48:58	0|aj|jtimon: np, sorry for taking so long to get back to it :)
 29 2018-03-30 07:50:04	0|jtimon|np, I didn't have time to code it myself either, but this looks cool
 30 2018-03-30 08:00:14	0|bitcoin-git|[13bitcoin] 15promag opened pull request #12836: Make WalletInitInterface and DummyWalletInit private (06master...062018-03-walletinit) 02https://github.com/bitcoin/bitcoin/pull/12836
 31 2018-03-30 08:18:18	0|promag|aj: did you delete the GH comment?
 32 2018-03-30 08:19:04	0|aj|promag: yeah, the compile i was running with that change failed
 33 2018-03-30 08:19:41	0|promag|that PR is mostly moving code
 34 2018-03-30 08:19:54	0|promag|but I think we could make g_wallet_init_interface const
 35 2018-03-30 08:19:55	0|aj|promag: yeah, it looks very good
 36 2018-03-30 08:20:31	0|aj|promag: since it doesn't have any member variables, i guess that's right?
 37 2018-03-30 08:20:58	0|aj|promag: would need to mark all the functions const too which is arguably a bit weird
 38 2018-03-30 08:21:24	0|promag|I don't mean const in that way
 39 2018-03-30 08:21:45	0|promag|I mean, don't allow g_wallet_init_interface to take a new value
 40 2018-03-30 08:22:11	0|promag|let's see what others say
 41 2018-03-30 08:22:29	0|aj|promag: i think marking it const-pointer fails because it can get optimised away in the module its declared in, while other modules stil try referencing it? (that's what the compile failure looked like anyway)
 42 2018-03-30 08:23:36	0|aj|promag: it all got confusing anyway, which is why i deleted my comment :)
 43 2018-03-30 08:23:44	0|promag|:) ok
 44 2018-03-30 09:01:35	0|promag|aj: see https://github.com/bitcoin/bitcoin/pull/12836/commits/208fad6b5e6c5f19a917e0dd06a75927281f31eb
 45 2018-03-30 09:02:48	0|bitcoin-git|[13bitcoin] 15joemphilips opened pull request #12837: fix type mistmatch in `listreceivedbyaddress` (06master...06fix_listreceivedbyaddress_type) 02https://github.com/bitcoin/bitcoin/pull/12837
 46 2018-03-30 10:29:05	0|bitcoin-git|[13bitcoin] 15laanwj pushed 4 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/3b62a9138657...ff48f6267128
 47 2018-03-30 10:29:06	0|bitcoin-git|13bitcoin/06master 1499f6d48 15Matt Corallo: Revert "test: Update trust git root"....
 48 2018-03-30 10:29:06	0|bitcoin-git|13bitcoin/06master 14de7e931 15Matt Corallo: Add Marco-expired-key-signed-commits to allow-revsig-commits
 49 2018-03-30 10:29:07	0|bitcoin-git|13bitcoin/06master 149471576 15Matt Corallo: [verify-commits] Add some additional useful documentation.
 50 2018-03-30 10:29:55	0|bitcoin-git|[13bitcoin] 15laanwj closed pull request #12822: Revert 7deba93bdc76616011a9f493cbc203d60084416f and fix expired-key-sigs properly (06master...06master) 02https://github.com/bitcoin/bitcoin/pull/12822
 51 2018-03-30 11:04:54	0|bitcoin-git|13bitcoin/06master 1476a9aac 15Pieter Wuille: Move compressor utility functions out of class
 52 2018-03-30 11:04:54	0|bitcoin-git|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/ff48f6267128...d2d7267e235a
 53 2018-03-30 11:04:55	0|bitcoin-git|13bitcoin/06master 14d2d7267 15Wladimir J. van der Laan: Merge #12752: [MOVEONLY] Move compressor utility functions out of class...
 54 2018-03-30 11:05:35	0|bitcoin-git|[13bitcoin] 15laanwj closed pull request #12752: [MOVEONLY] Move compressor utility functions out of class (06master...06201803_movecompress) 02https://github.com/bitcoin/bitcoin/pull/12752
 55 2018-03-30 11:10:50	0|bitcoin-git|13bitcoin/06master 14a7c45bc 15Pieter Wuille: Add native support for serializing char arrays without FLATDATA...
 56 2018-03-30 11:10:50	0|bitcoin-git|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/d2d7267e235a...8203c4c42ed8
 57 2018-03-30 11:10:51	0|bitcoin-git|13bitcoin/06master 148203c4c 15Wladimir J. van der Laan: Merge #12740: Add native support for serializing char arrays without FLATDATA...
 58 2018-03-30 11:11:27	0|bitcoin-git|[13bitcoin] 15laanwj closed pull request #12740: Add native support for serializing char arrays without FLATDATA (06master...06201803_chararray) 02https://github.com/bitcoin/bitcoin/pull/12740
 59 2018-03-30 12:58:36	0|bitcoin-git|[13bitcoin] 15laanwj opened pull request #12839: test: Remove travis checkout depth (06master...062018_03_travis_depth) 02https://github.com/bitcoin/bitcoin/pull/12839
 60 2018-03-30 13:44:47	0|Chris_Stewart_5|MarcoFalke: Can you kick travis on #8469? I think the failure is unrelated?
 61 2018-03-30 13:44:49	0|gribble|https://github.com/bitcoin/bitcoin/issues/8469 | [POC] Introducing property based testing to Core by Christewart · Pull Request #8469 · bitcoin/bitcoin · GitHub
 62 2018-03-30 14:09:00	0|jnewbery|Chris_Stewart_5: kicked travis
 63 2018-03-30 14:12:28	0|Chris_Stewart_5|danke schon
 64 2018-03-30 14:17:33	0|bitcoin-git|13bitcoin/06master 149df1a9c 15Wladimir J. van der Laan: test: Remove travis checkout depth...
 65 2018-03-30 14:17:33	0|bitcoin-git|[13bitcoin] 15laanwj pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/8203c4c42ed8...40f4baffa211
 66 2018-03-30 14:17:34	0|bitcoin-git|13bitcoin/06master 1440f4baf 15Wladimir J. van der Laan: Merge #12839: test: Remove travis checkout depth...
 67 2018-03-30 14:18:13	0|bitcoin-git|[13bitcoin] 15laanwj closed pull request #12839: test: Remove travis checkout depth (06master...062018_03_travis_depth) 02https://github.com/bitcoin/bitcoin/pull/12839
 68 2018-03-30 15:26:15	0|BlueMatt|aj: yea, it was "cant use firefox trademark if you dont do X, Y, Z" where one of those, iirc, was "if you ship out-of-date shit and then try to backport changes"
 69 2018-03-30 15:40:10	0|bitcoin-git|13bitcoin/06master 148394300 15Roman Zeyde: [Tests] fix a typo in TestNode.assert_start_raises_init_error()...
 70 2018-03-30 15:40:10	0|bitcoin-git|[13bitcoin] 15MarcoFalke pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/40f4baffa211...de7e58684176
 71 2018-03-30 15:40:11	0|bitcoin-git|13bitcoin/06master 14de7e586 15MarcoFalke: Merge #12810: [Tests] Fix a typo at assert_start_raises_init_error() and use specific exception for initialization error...
 72 2018-03-30 15:40:34	0|bitcoin-git|[13bitcoin] 15MarcoFalke pushed 3 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/de7e58684176...5e53b80b0280
 73 2018-03-30 15:40:35	0|bitcoin-git|13bitcoin/06master 140c17e27 15MarcoFalke: init: Remove help text for non-existent -fuzzmessagestest arg
 74 2018-03-30 15:40:35	0|bitcoin-git|13bitcoin/06master 141360844 15MarcoFalke: contrib: Fix check-doc script regexes
 75 2018-03-30 15:40:36	0|bitcoin-git|13bitcoin/06master 145e53b80 15MarcoFalke: Merge #12820: contrib: Fix check-doc script regexes...
 76 2018-03-30 15:40:56	0|18WAAOAGJ|[13bitcoin] 15MarcoFalke closed pull request #12810: [Tests] Fix a typo at assert_start_raises_init_error() and use specific exception for initialization error (06master...06fix-blocksdir-test) 02https://github.com/bitcoin/bitcoin/pull/12810
 77 2018-03-30 15:40:57	0|17SAAXTEF|[13bitcoin] 15MarcoFalke closed pull request #12820: contrib: Fix check-doc script regexes (06master...06Mf1803-qaCheckDocRegex) 02https://github.com/bitcoin/bitcoin/pull/12820
 78 2018-03-30 15:40:58	0|gribble|https://github.com/bitcoin/bitcoin/issues/12810 | [Tests] Fix a typo at assert_start_raises_init_error() and use specific exception for initialization error by romanz · Pull Request #12810 · bitcoin/bitcoin · GitHub
 79 2018-03-30 15:41:00	0|gribble|https://github.com/bitcoin/bitcoin/issues/12820 | contrib: Fix check-doc script regexes by MarcoFalke · Pull Request #12820 · bitcoin/bitcoin · GitHub
 80 2018-03-30 15:41:03	0|bitcoin-git|13bitcoin/06master 146a318e4 15practicalswift: Reduce variable scopes
 81 2018-03-30 15:41:03	0|bitcoin-git|[13bitcoin] 15MarcoFalke pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/5e53b80b0280...be299c4a4725
 82 2018-03-30 15:41:04	0|bitcoin-git|13bitcoin/06master 14be299c4 15MarcoFalke: Merge #12780: Reduce variable scopes...
 83 2018-03-30 15:41:10	0|bitcoin-git|[13bitcoin] 15MarcoFalke closed pull request #12780: Reduce variable scopes (06master...06limit-variable-scopes) 02https://github.com/bitcoin/bitcoin/pull/12780
 84 2018-03-30 15:46:02	0|bitcoin-git|[13bitcoin] 15MarcoFalke pushed 3 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/be299c4a4725...4490871ed7eb
 85 2018-03-30 15:46:03	0|bitcoin-git|13bitcoin/06master 144f872b2 15Evan Klitzke: Add additional tests for GetBoolArg()...
 86 2018-03-30 15:46:03	0|bitcoin-git|13bitcoin/06master 14f7683cb 15Evan Klitzke: Track negated arguments in the argument paser....
 87 2018-03-30 15:46:04	0|bitcoin-git|13bitcoin/06master 144490871 15MarcoFalke: Merge #12713: Track negated options in the option parser...
 88 2018-03-30 15:46:43	0|bitcoin-git|[13bitcoin] 15MarcoFalke closed pull request #12713: Track negated options in the option parser (06master...06bool-option-parsing) 02https://github.com/bitcoin/bitcoin/pull/12713
 89 2018-03-30 15:57:52	0|bitcoin-git|[13bitcoin] 15MarcoFalke pushed 2 new commits to 06master: 02https://github.com/bitcoin/bitcoin/compare/4490871ed7eb...243c9bb79a3c
 90 2018-03-30 15:57:53	0|bitcoin-git|13bitcoin/06master 14243c9bb 15MarcoFalke: Merge #12804: [tests] Fix intermittent rpc_net.py failure....
 91 2018-03-30 15:57:53	0|bitcoin-git|13bitcoin/06master 145a67c05 15John Newbery: [tests] Fix intermittent rpc_net.py failure....
 92 2018-03-30 15:58:44	0|bitcoin-git|[13bitcoin] 15MarcoFalke closed pull request #12804: [tests] Fix intermittent rpc_net.py failure. (06master...06rpc_net_py_fix) 02https://github.com/bitcoin/bitcoin/pull/12804
 93 2018-03-30 16:37:16	0|BlueMatt|cfields: you probably have an opinion here: https://github.com/bitcoin/bitcoin/pull/11857#discussion_r178187241
 94 2018-03-30 16:37:31	0|BlueMatt|sipa: I dont see what your comment has to do with the pr here: https://github.com/bitcoin/bitcoin/pull/11857#issuecomment-377421311
 95 2018-03-30 16:49:03	0|sipa|BlueMatt: on my phone, hard to check
 96 2018-03-30 16:49:33	0|sipa|is it my comment on the utxo lookup in getrawtransaction
 97 2018-03-30 16:49:36	0|sipa|?
 98 2018-03-30 16:51:07	0|BlueMatt|yes, your comment was "I dont like utxo lookup in getrawtransaction", the pr is about the utxo db itself
 99 2018-03-30 16:51:14	0|BlueMatt|it doesnt touch the interface to it
100 2018-03-30 16:52:58	0|sipa|jimpo made some comment somewhere about whether it was useful to have the utxo based lookup
101 2018-03-30 16:53:02	0|sipa|and i commented on that
102 2018-03-30 16:53:56	0|sipa|but from my phone i couldn't directly respond to the review comment, so it probably became a top level comment on the pr
103 2018-03-30 16:54:40	0|BlueMatt|ah, I see the discussion thread, anyway, his point about the pr being large is well-made, then you followed up with "well, you could add a new rpc command"
104 2018-03-30 16:54:46	0|BlueMatt|anyway, whatever, i was just confused
105 2018-03-30 16:56:37	0|sipa|i wasn't suggesting anything change in the PR itself; just giving my opinion on the usefulness of that feature :)
106 2018-03-30 16:56:44	0|sipa|i can delete it if it:s confusing
107 2018-03-30 16:57:16	0|BlueMatt|nah, all good
108 2018-03-30 17:01:39	0|bitcoin-git|[13bitcoin] 15promag opened pull request #12842: Prevent concurrent savemempool (06master...062018-03-concurrent-savemempool) 02https://github.com/bitcoin/bitcoin/pull/12842
109 2018-03-30 17:15:15	0|bitcoin-git|[13bitcoin] 15jnewbery opened pull request #12843: [tests] Test starting bitcoind with -h and -version (06master...06test_help) 02https://github.com/bitcoin/bitcoin/pull/12843
110 2018-03-30 19:22:48	0|U039bmz|.-.            .-.
111 2018-03-30 19:22:48	0|U039bmz|.-.            .-.
112 2018-03-30 19:22:48	0|U039bmz|.-.            .-.
113 2018-03-30 19:22:48	0|U039bmz|.-.            .-.
114 2018-03-30 19:22:53	0|U039bmz|/   \          /   \
115 2018-03-30 19:22:53	0|U039bmz|/   \          /   \
116 2018-03-30 19:22:53	0|U039bmz|/   \          /   \
117 2018-03-30 19:22:53	0|U039bmz|/   \          /   \
118 2018-03-30 19:22:57	0|U039bmz||   _ \        / _   |
119 2018-03-30 19:22:57	0|U039bmz||   _ \        / _   |
120 2018-03-30 19:22:57	0|U039bmz||   _ \        / _   |
121 2018-03-30 19:22:57	0|U039bmz||   _ \        / _   |
122 2018-03-30 19:23:01	0|U039bmz|;  | \ \      / / |  ;
123 2018-03-30 19:23:01	0|U039bmz|;  | \ \      / / |  ;
124 2018-03-30 19:23:01	0|U039bmz|;  | \ \      / / |  ;
125 2018-03-30 19:23:01	0|U039bmz|;  | \ \      / / |  ;
126 2018-03-30 19:23:04	0|U039bmz|\  \ \ \_.._/ / /  /
127 2018-03-30 19:23:04	0|U039bmz|\  \ \ \_.._/ / /  /
128 2018-03-30 19:23:04	0|U039bmz|\  \ \ \_.._/ / /  /
129 2018-03-30 19:23:04	0|U039bmz|\  \ \ \_.._/ / /  /
130 2018-03-30 19:23:10	0|U039bmz|'. '.;'    ';,' .'
131 2018-03-30 19:23:10	0|U039bmz|'. '.;'    ';,' .'
132 2018-03-30 19:23:10	0|U039bmz|'. '.;'    ';,' .'
133 2018-03-30 19:23:10	0|U039bmz|'. '.;'    ';,' .'
134 2018-03-30 19:23:15	0|U039bmz|'./ _    _ \.'
135 2018-03-30 19:23:15	0|U039bmz|'./ _    _ \.'
136 2018-03-30 19:23:15	0|U039bmz|'./ _    _ \.'
137 2018-03-30 19:23:15	0|U039bmz|'./ _    _ \.'
138 2018-03-30 19:23:17	0|U039bmz|.'  a __ a  '.
139 2018-03-30 19:23:17	0|U039bmz|.'  a __ a  '.
140 2018-03-30 19:23:17	0|U039bmz|.'  a __ a  '.
141 2018-03-30 19:23:17	0|U039bmz|.'  a __ a  '.
142 2018-03-30 19:23:21	0|U039bmz|'--./ _,   \/   ,_ \.--'
143 2018-03-30 19:23:21	0|U039bmz|'--./ _,   \/   ,_ \.--'
144 2018-03-30 19:23:21	0|U039bmz|'--./ _,   \/   ,_ \.--'
145 2018-03-30 19:23:21	0|U039bmz|'--./ _,   \/   ,_ \.--'
146 2018-03-30 19:23:28	0|U039bmz|----|   \   /\   /   |----
147 2018-03-30 19:23:28	0|U039bmz|----|   \   /\   /   |----
148 2018-03-30 19:23:28	0|U039bmz|----|   \   /\   /   |----
149 2018-03-30 19:23:28	0|U039bmz|----|   \   /\   /   |----
150 2018-03-30 19:23:30	0|U039bmz|.--'\   '-'  '-'    /'--.
151 2018-03-30 19:23:30	0|U039bmz|.--'\   '-'  '-'    /'--.
152 2018-03-30 19:23:30	0|U039bmz|.--'\   '-'  '-'    /'--.
153 2018-03-30 19:23:30	0|U039bmz|.--'\   '-'  '-'    /'--.
154 2018-03-30 19:23:33	0|U039bmz|_>.__  -- _.-  `;
155 2018-03-30 19:23:33	0|U039bmz|_>.__  -- _.-  `;
156 2018-03-30 19:23:33	0|U039bmz|_>.__  -- _.-  `;
157 2018-03-30 19:23:33	0|U039bmz|_>.__  -- _.-  `;
158 2018-03-30 19:23:37	0|U039bmz|.' _     __/     _/
159 2018-03-30 19:23:37	0|U039bmz|.' _     __/     _/
160 2018-03-30 19:23:37	0|U039bmz|.' _     __/     _/
161 2018-03-30 19:23:37	0|U039bmz|.' _     __/     _/
162 2018-03-30 19:23:42	0|U039bmz|/    '.,:".-\    /:,
163 2018-03-30 19:23:42	0|U039bmz|/    '.,:".-\    /:,
164 2018-03-30 19:23:42	0|U039bmz|/    '.,:".-\    /:,
165 2018-03-30 19:23:42	0|U039bmz|/    '.,:".-\    /:,
166 2018-03-30 19:23:46	0|U039bmz||      \.'   `""`'.\\
167 2018-03-30 19:23:46	0|U039bmz||      \.'   `""`'.\\
168 2018-03-30 19:23:46	0|U039bmz||      \.'   `""`'.\\
169 2018-03-30 19:23:46	0|U039bmz||      \.'   `""`'.\\
170 2018-03-30 19:23:49	0|U039bmz|'-,.__/  _   .-.  ;|_
171 2018-03-30 19:23:49	0|U039bmz|'-,.__/  _   .-.  ;|_
172 2018-03-30 19:23:49	0|U039bmz|'-,.__/  _   .-.  ;|_
173 2018-03-30 19:23:49	0|U039bmz|'-,.__/  _   .-.  ;|_
174 2018-03-30 19:23:53	0|U039bmz|/` `|| _/ `\/_  \_|| `\
175 2018-03-30 19:23:53	0|U039bmz|/` `|| _/ `\/_  \_|| `\
176 2018-03-30 19:23:53	0|U039bmz|/` `|| _/ `\/_  \_|| `\
177 2018-03-30 19:23:53	0|U039bmz|/` `|| _/ `\/_  \_|| `\
178 2018-03-30 19:23:56	0|U039bmz||    ||/ \-./` \ / ||   |
179 2018-03-30 19:23:56	0|U039bmz||    ||/ \-./` \ / ||   |
180 2018-03-30 19:23:56	0|U039bmz||    ||/ \-./` \ / ||   |
181 2018-03-30 19:23:56	0|U039bmz||    ||/ \-./` \ / ||   |
182 2018-03-30 19:24:00	0|U039bmz|\   ||__/__|___|__||  /
183 2018-03-30 19:24:00	0|U039bmz|\   ||__/__|___|__||  /
184 2018-03-30 19:24:00	0|U039bmz|\   ||__/__|___|__||  /
185 2018-03-30 19:24:00	0|U039bmz|\   ||__/__|___|__||  /
186 2018-03-30 19:24:04	0|U039bmz|\_ |_Happy Easter_| /
187 2018-03-30 19:24:04	0|U039bmz|\_ |_Happy Easter_| /
188 2018-03-30 19:24:04	0|U039bmz|\_ |_Happy Easter_| /
189 2018-03-30 19:24:04	0|U039bmz|\_ |_Happy Easter_| /
190 2018-03-30 19:24:08	0|U039bmz|jgs .'  \ =  _= _ = _= /`\
191 2018-03-30 19:24:08	0|U039bmz|jgs .'  \ =  _= _ = _= /`\
192 2018-03-30 19:24:08	0|U039bmz|jgs .'  \ =  _= _ = _= /`\
193 2018-03-30 19:24:08	0|U039bmz|jgs .'  \ =  _= _ = _= /`\
194 2018-03-30 19:24:12	0|U039bmz|/     `-;----=--;--'   \
195 2018-03-30 19:24:12	0|U039bmz|/     `-;----=--;--'   \
196 2018-03-30 19:24:12	0|U039bmz|/     `-;----=--;--'   \
197 2018-03-30 19:24:12	0|U039bmz|/     `-;----=--;--'   \
198 2018-03-30 19:24:16	0|U039bmz|\    _.-'        '.    /
199 2018-03-30 19:24:16	0|U039bmz|\    _.-'        '.    /
200 2018-03-30 19:24:16	0|U039bmz|\    _.-'        '.    /
201 2018-03-30 19:24:16	0|U039bmz|\    _.-'        '.    /
202 2018-03-30 20:50:48	0|jimpo|BlueMatt: The fact that the block index may not be synced to fs before a BlockConnected/BlockDisconnected callback is quite annoying
203 2018-03-30 20:51:22	0|jimpo|Makes the interface quite difficult to work with/reason about
204 2018-03-30 21:23:44	0|BlueMatt|jimpo: true, but otherwise block connection would be way slower :/
205 2018-03-30 21:24:00	0|BlueMatt|jimpo: there is a separate callback for the wallet that indicates things have been flushed
206 2018-03-30 21:24:12	0|BlueMatt|so you kinda have to go the direction of the wallet and use a locator
207 2018-03-30 21:26:35	0|jimpo|Yeah, the locator is probably the way to go
208 2018-03-30 21:26:45	0|jimpo|What is the flushed callback?