1 2014-07-28 00:00:08 richcollins has quit (Client Quit)
   2 2014-07-28 00:00:23 Gyps has joined
   3 2014-07-28 00:05:40 Magnittude has joined
   4 2014-07-28 00:06:28 Gyps has left ()
   5 2014-07-28 00:07:00 copain_reac has joined
   6 2014-07-28 00:07:14 akstunt600 has joined
   7 2014-07-28 00:09:22 kgk has joined
   8 2014-07-28 00:11:14 Gyps has joined
   9 2014-07-28 00:11:33 copain_reac has quit (Ping timeout: 256 seconds)
  10 2014-07-28 00:19:37 Burrito has quit (Quit: Leaving)
  11 2014-07-28 00:19:41 jMyles has joined
  12 2014-07-28 00:22:11 <sipa> jgarzik: bitcoin-tx stripped is still 850 kB here, crazy
  13 2014-07-28 00:22:31 <sipa> there's a ton of util code that's not all that generic really
  14 2014-07-28 00:22:37 <gmaxwell> 0_o
  15 2014-07-28 00:23:02 <sipa> as the script code isn't split between validation and signing, it does include a full script interpreter too...
  16 2014-07-28 00:23:29 <sipa> which pulls in all hash algorithms
  17 2014-07-28 00:24:13 <Luke-Jr> sipa: we should just make .so's and get it over with. we don't need to keep an ABI..
  18 2014-07-28 00:24:49 sahlhoff has joined
  19 2014-07-28 00:24:51 <sipa> Luke-Jr: i don't really care about the binary size itself; i'm surprised by how much code we're still depending on
  20 2014-07-28 00:25:14 <Luke-Jr> sipa: did the linker remove unused code/
  21 2014-07-28 00:25:16 <Luke-Jr> ?
  22 2014-07-28 00:26:09 <sipa> i think our current library definitions for util and core are pretty well following dependency boundaries already
  23 2014-07-28 00:26:14 <jgarzik> sipa, add -flto
  24 2014-07-28 00:26:31 banghouse has joined
  25 2014-07-28 00:26:45 <jgarzik> it will still be too-large, though, agreed on that point
  26 2014-07-28 00:28:59 crunk-juice has joined
  27 2014-07-28 00:29:09 <jgarzik> sipa, -ffunction-sections might help with C++ too
  28 2014-07-28 00:30:23 atgreen` has quit (Ping timeout: 250 seconds)
  29 2014-07-28 00:30:30 <sipa> jgarzik: same size
  30 2014-07-28 00:30:30 Application has quit (Ping timeout: 272 seconds)
  31 2014-07-28 00:30:42 <sipa> 4 kB larger, actually
  32 2014-07-28 00:31:17 <jgarzik> sipa, this is size(1) or ls(1) ?  :)
  33 2014-07-28 00:31:25 <sipa> ls
  34 2014-07-28 00:31:28 <sipa> after strip
  35 2014-07-28 00:31:37 JackH has quit (Ping timeout: 260 seconds)
  36 2014-07-28 00:31:37 MolokoDeck has joined
  37 2014-07-28 00:31:45 osong has joined
  38 2014-07-28 00:32:41 osong is now known as olvr_s
  39 2014-07-28 00:32:54 llllllllll has quit (Remote host closed the connection)
  40 2014-07-28 00:33:37 <sipa> 848 with flto + function sections
  41 2014-07-28 00:33:39 olvr_s is now known as osong
  42 2014-07-28 00:34:00 <jgarzik> huh
  43 2014-07-28 00:34:09 <jgarzik> surprising
  44 2014-07-28 00:34:15 osong is now known as oliversong
  45 2014-07-28 00:34:47 oliversong is now known as olvr_s
  46 2014-07-28 00:34:56 <sipa> flto may result in cross-object inlining, which increases size :)
  47 2014-07-28 00:35:17 arowser has left ()
  48 2014-07-28 00:35:21 <jgarzik> sipa, -Os
  49 2014-07-28 00:35:34 <jgarzik> sipa, for linker and compiler invocation both
  50 2014-07-28 00:35:51 olvr_s is now known as osong
  51 2014-07-28 00:36:06 <jgarzik> sipa, and size(1) is always more accurate
  52 2014-07-28 00:36:17 <sipa> how do i do that with ./configure?
  53 2014-07-28 00:36:37 <sipa> ah, LDFLAGS
  54 2014-07-28 00:36:58 <jgarzik> sipa, CXXFLAGS="-Os" LDFLAGS="-Os" ./configure
  55 2014-07-28 00:36:59 <jgarzik> iirc
  56 2014-07-28 00:37:34 * jgarzik is pretty brain dead after 8-hour-long meeting on satellites
  57 2014-07-28 00:37:43 <Luke-Jr> usually the ./configure goes first?
  58 2014-07-28 00:37:51 <Luke-Jr> eg ./configure CXXFLAGS="-Os" LDFLAGS="-Os"
  59 2014-07-28 00:38:08 <jcorgan> jgarzik: i thought the first two hours were interesting :)
  60 2014-07-28 00:38:33 <jgarzik> Luke-Jr, that's how you set environment variables before an invocation.  the latter approach (configure SYM SYM) depends on the program taking some action with those arguments.  not as reliable.
  61 2014-07-28 00:38:35 akstunt600 has quit (Read error: Connection reset by peer)
  62 2014-07-28 00:38:47 <jgarzik> Luke-Jr, FOO=BAR ./program
  63 2014-07-28 00:38:52 <jgarzik> sets FOO=BAR in ./program's environment
  64 2014-07-28 00:38:58 <sipa> ah, i didn't pass -flto to the linker of course
  65 2014-07-28 00:39:03 <sipa> 590 kB
  66 2014-07-28 00:39:22 akstunt600 has joined
  67 2014-07-28 00:39:50 <Luke-Jr> jgarzik: seems to me that's more likely than it reading the environment, but maybe both work
  68 2014-07-28 00:40:24 <jgarzik> Luke-Jr, "FOO=BAR ./configure" always worked since day one.  "./configure FOO=BAR" is new and doesn't work with all configure scripts
  69 2014-07-28 00:41:05 <Luke-Jr> hm
  70 2014-07-28 00:41:08 <sipa> -Os + lto + function sections: 492 kB
  71 2014-07-28 00:41:28 <jgarzik> sipa, still seems large for what it does
  72 2014-07-28 00:41:36 * jgarzik blames templates ;p
  73 2014-07-28 00:42:24 * sipa blames including: hash function, script evaluation, rpc protocol (?!), netbase (!?!?), ...
  74 2014-07-28 00:42:26 <berndj-blackout> jgarzik, FOO=BAR ./configure didn't/doesn't preserve the variable into config.status. whether you AC_SUBST([FOO]) also matters
  75 2014-07-28 00:43:06 <jgarzik> -ffunction-sections permits splitting foo.o up into one section per function, as the name implies.  which permits the linker to pick apart a .o and only use what is needed.
  76 2014-07-28 00:43:15 <jgarzik> open question whether it works well/at all on C++
  77 2014-07-28 00:44:17 <sipa> HMAC_SHA512 is included, which shouldn't be needed
  78 2014-07-28 00:44:31 <sipa> it's only for bip32 style derivation, which is invoked from nowhere
  79 2014-07-28 00:45:14 <sipa> huh
  80 2014-07-28 00:45:25 <sipa> only the constructor and the finalizer are included, but not the ::Write method
  81 2014-07-28 00:46:37 <sipa> crap, my internal clock is still on eastcoast time it seems :(
  82 2014-07-28 00:47:10 SpicyShibe has quit (Read error: Connection reset by peer)
  83 2014-07-28 00:48:09 owowo has quit (Ping timeout: 250 seconds)
  84 2014-07-28 00:49:19 hmmma has joined
  85 2014-07-28 00:53:32 owowo has joined
  86 2014-07-28 00:56:31 harding has quit (Quit: leaving)
  87 2014-07-28 00:57:38 christophe has joined
  88 2014-07-28 00:57:48 <sipa> jgarzik: stripped sizes of included .o files, sorted: bitcoin-tx 341kB, util 212kB, script 161kB, rpcprotocol 161kB, netbase 88kB, ...
  89 2014-07-28 00:57:56 Qatz has joined
  90 2014-07-28 00:58:30 <sipa> util should be broken up in much smaller pieces (most of which bitcoin-tx doesn't need), script needs to be broken up in script-core, script-eval and script-sign, ...
  91 2014-07-28 00:58:37 <sipa> no idea what we need rpcprotocol for
  92 2014-07-28 00:58:39 <sipa> or netbase
  93 2014-07-28 01:00:03 Qatz is now known as SpicyShibe
  94 2014-07-28 01:00:22 ProfMac has quit (Ping timeout: 246 seconds)
  95 2014-07-28 01:01:05 codice has quit (Ping timeout: 245 seconds)
  96 2014-07-28 01:02:56 codice has joined
  97 2014-07-28 01:07:49 copain_reac has joined
  98 2014-07-28 01:07:59 paxtoncamaro91 has quit (Ping timeout: 250 seconds)
  99 2014-07-28 01:12:25 copain_reac has quit (Ping timeout: 250 seconds)
 100 2014-07-28 01:15:54 kgk has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
 101 2014-07-28 01:21:04 one_zero has joined
 102 2014-07-28 01:21:05 torsthaldo has quit (Quit: Leaving.)
 103 2014-07-28 01:22:31 ericmuyser has joined
 104 2014-07-28 01:23:50 crunk-juice has quit (Remote host closed the connection)
 105 2014-07-28 01:25:36 contrapumpkin has joined
 106 2014-07-28 01:26:09 Aido_ has joined
 107 2014-07-28 01:26:37 copumpkin has quit (Ping timeout: 255 seconds)
 108 2014-07-28 01:29:24 Aido has quit (Ping timeout: 272 seconds)
 109 2014-07-28 01:30:20 Application has joined
 110 2014-07-28 01:31:55 akstunt600 has quit (Read error: Connection reset by peer)
 111 2014-07-28 01:32:25 otila has quit (Ping timeout: 245 seconds)
 112 2014-07-28 01:32:49 akstunt600 has joined
 113 2014-07-28 01:34:35 Application has quit (Ping timeout: 255 seconds)
 114 2014-07-28 01:39:36 Application has joined
 115 2014-07-28 01:44:44 hmsimha has joined
 116 2014-07-28 01:47:46 beachandbytes has joined
 117 2014-07-28 01:57:49 dims has quit (Ping timeout: 250 seconds)
 118 2014-07-28 01:59:07 nullbyte has joined
 119 2014-07-28 01:59:43 dims has joined
 120 2014-07-28 02:01:05 Dr-G2 has joined
 121 2014-07-28 02:01:52 AnoAnon has joined
 122 2014-07-28 02:02:34 richcollins has joined
 123 2014-07-28 02:02:50 CoinHeavy has joined
 124 2014-07-28 02:03:04 da2ce7 has joined
 125 2014-07-28 02:03:14 gb94 has joined
 126 2014-07-28 02:03:39 osong has quit (Remote host closed the connection)
 127 2014-07-28 02:04:15 osong has joined
 128 2014-07-28 02:04:39 crunk-juice has joined
 129 2014-07-28 02:04:42 Dr-G has quit (Ping timeout: 264 seconds)
 130 2014-07-28 02:04:55 zone117x has quit (Read error: Connection reset by peer)
 131 2014-07-28 02:05:02 zone117x has joined
 132 2014-07-28 02:05:30 <BlueMatt> sipa: oh, looks like no one pinged me and I entirely missed a release :(
 133 2014-07-28 02:05:31 <BlueMatt> wow thats bad
 134 2014-07-28 02:08:36 copain_reac has joined
 135 2014-07-28 02:08:37 osong has quit (Ping timeout: 264 seconds)
 136 2014-07-28 02:09:09 <cfields> jgarzik: fyi, ./configure FOO=BAR is almost always preferred, as it is preserved between invocations
 137 2014-07-28 02:10:17 <cfields> oh, heh, exactly what berndj-blackout said :)
 138 2014-07-28 02:11:18 <cfields> jgarzik: also, ffunction-sections needs to be used with gc-sections, otherwise the extras won't be stripped
 139 2014-07-28 02:13:01 copain_reac has quit (Ping timeout: 240 seconds)
 140 2014-07-28 02:15:43 Eiii has quit ()
 141 2014-07-28 02:17:07 pen has joined
 142 2014-07-28 02:18:15 christophe is now known as test123456
 143 2014-07-28 02:18:32 test123456 is now known as christophe
 144 2014-07-28 02:19:05 dims has quit (Ping timeout: 245 seconds)
 145 2014-07-28 02:20:30 cym has quit (Ping timeout: 255 seconds)
 146 2014-07-28 02:22:39 AnoAnon has quit (Read error: Connection reset by peer)
 147 2014-07-28 02:24:48 AnoAnon has joined
 148 2014-07-28 02:25:13 AnoAnon has quit (Max SendQ exceeded)
 149 2014-07-28 02:25:17 akstunt600 has quit (Read error: Connection reset by peer)
 150 2014-07-28 02:25:35 AnoAnon has joined
 151 2014-07-28 02:25:41 banghouse has quit (Remote host closed the connection)
 152 2014-07-28 02:26:01 akstunt600 has joined
 153 2014-07-28 02:26:45 AnoAnon has quit (Client Quit)
 154 2014-07-28 02:28:05 viic has joined
 155 2014-07-28 02:31:36 crunk-juice has quit (Remote host closed the connection)
 156 2014-07-28 02:36:30 Subo1977_ has quit (Ping timeout: 264 seconds)
 157 2014-07-28 02:37:26 <gmaxwell> BlueMatt: I may be remembering incorrectly, but I believe that was just a trivial respin for osx fixes, still probably good to catch up, but I don't  think it matters.
 158 2014-07-28 02:38:09 <BlueMatt> ok, well that makes me feel a bit better
 159 2014-07-28 02:38:27 Subo1977 has joined
 160 2014-07-28 02:39:31 AlienProject has quit (Ping timeout: 240 seconds)
 161 2014-07-28 02:40:03 CoinHeavy has quit (Quit: CoinHeavy)
 162 2014-07-28 02:40:15 banghouse has joined
 163 2014-07-28 02:43:56 richcollins has quit (Quit: richcollins)
 164 2014-07-28 02:48:13 SwampTony has joined
 165 2014-07-28 02:48:13 SwampTony has quit (Client Quit)
 166 2014-07-28 02:48:26 SwampTony has joined
 167 2014-07-28 02:49:55 CoinHeavy has joined
 168 2014-07-28 02:50:41 dub has quit (Ping timeout: 250 seconds)
 169 2014-07-28 02:50:47 peper has quit (Ping timeout: 250 seconds)
 170 2014-07-28 02:51:18 dub has joined
 171 2014-07-28 02:52:01 peper has joined
 172 2014-07-28 02:53:29 CoinHeavy has quit (Client Quit)
 173 2014-07-28 02:53:38 haigent has quit (Ping timeout: 256 seconds)
 174 2014-07-28 02:54:17 haigent has joined
 175 2014-07-28 02:54:54 sl01 has quit (Ping timeout: 272 seconds)
 176 2014-07-28 02:55:30 sl01 has joined
 177 2014-07-28 02:58:15 gb94 has quit (Remote host closed the connection)
 178 2014-07-28 03:01:05 gb94 has joined
 179 2014-07-28 03:01:45 gb94 has quit (Remote host closed the connection)
 180 2014-07-28 03:01:57 gb94 has joined
 181 2014-07-28 03:02:26 weilu has joined
 182 2014-07-28 03:03:39 gb94 has quit (Read error: Connection reset by peer)
 183 2014-07-28 03:04:04 gb94 has joined
 184 2014-07-28 03:04:33 gb94 has quit (Client Quit)
 185 2014-07-28 03:05:30 paxtoncamaro91 has joined
 186 2014-07-28 03:06:19 pen has quit (Ping timeout: 260 seconds)
 187 2014-07-28 03:08:22 atgreen has joined
 188 2014-07-28 03:09:18 crunk-juice has joined
 189 2014-07-28 03:09:23 copain_reac has joined
 190 2014-07-28 03:14:02 copain_reac has quit (Ping timeout: 264 seconds)
 191 2014-07-28 03:15:57 banghouse has quit (Remote host closed the connection)
 192 2014-07-28 03:18:36 akstunt600 has quit (Read error: Connection reset by peer)
 193 2014-07-28 03:19:35 akstunt600 has joined
 194 2014-07-28 03:23:54 HaltingState has joined
 195 2014-07-28 03:25:22 blubberbop has quit (Ping timeout: 256 seconds)
 196 2014-07-28 03:26:50 christophe has quit (Quit: leaving)
 197 2014-07-28 03:30:50 richcollins has joined
 198 2014-07-28 03:38:49 CoinHeavy has joined
 199 2014-07-28 03:40:21 dgenr8 has quit (Quit: dgenr8)
 200 2014-07-28 03:40:59 crunk-juice has quit (Remote host closed the connection)
 201 2014-07-28 03:45:18 [7] has quit (Disconnected by services)
 202 2014-07-28 03:45:33 TheSeven has joined
 203 2014-07-28 03:45:37 mmatthew_43 has joined
 204 2014-07-28 03:50:40 banghouse has joined
 205 2014-07-28 03:51:09 Guest28997 is now known as zcopley
 206 2014-07-28 03:56:27 Gyps has quit (Quit: Gyps)
 207 2014-07-28 03:59:15 dims has joined
 208 2014-07-28 03:59:36 copumpkin has joined
 209 2014-07-28 04:02:17 contrapumpkin has quit (Ping timeout: 250 seconds)
 210 2014-07-28 04:03:24 mappum has joined
 211 2014-07-28 04:03:50 SwampTony has quit (Remote host closed the connection)
 212 2014-07-28 04:10:04 chax has joined
 213 2014-07-28 04:10:06 copain_reac has joined
 214 2014-07-28 04:11:55 akstunt600 has quit (Read error: Connection reset by peer)
 215 2014-07-28 04:12:39 akstunt600 has joined
 216 2014-07-28 04:13:06 Aahzmundus has joined
 217 2014-07-28 04:13:30 Squidicc has joined
 218 2014-07-28 04:13:52 papa2 has joined
 219 2014-07-28 04:14:28 papa3 has quit (Remote host closed the connection)
 220 2014-07-28 04:14:31 copain_reac has quit (Ping timeout: 240 seconds)
 221 2014-07-28 04:14:56 dub has quit (Changing host)
 222 2014-07-28 04:14:56 dub has joined
 223 2014-07-28 04:15:01 rdponticelli has joined
 224 2014-07-28 04:16:31 Squidicuz has quit (Ping timeout: 240 seconds)
 225 2014-07-28 04:18:40 Eiii has joined
 226 2014-07-28 04:19:19 CheckDavid has quit (Quit: Connection closed for inactivity)
 227 2014-07-28 04:23:18 rdponticelli has quit (Ping timeout: 264 seconds)
 228 2014-07-28 04:28:15 Gyps has joined
 229 2014-07-28 04:30:17 chax has quit (Remote host closed the connection)
 230 2014-07-28 04:30:49 chax has joined
 231 2014-07-28 04:31:26 MolokoDeck has quit (Ping timeout: 240 seconds)
 232 2014-07-28 04:31:32 SwampTony has joined
 233 2014-07-28 04:31:33 davispuh has quit (Read error: Connection reset by peer)
 234 2014-07-28 04:33:52 richcollins has quit (Quit: richcollins)
 235 2014-07-28 04:35:30 chax has quit (Ping timeout: 255 seconds)
 236 2014-07-28 04:37:42 MBeth has joined
 237 2014-07-28 04:38:51 <MBeth> hi. can someone tell me what's the point of the superfast bitcoin-only tor exit node? https://twitter.com/sigwinch/status/493541355709546496
 238 2014-07-28 04:42:09 <gmaxwell> MBeth: appears to have no point; if you note: it doesn't have the exit flags, so tor nodes won't use it as an exit (I'm even unable to get tor here to manually exit via it). The traffic stats you're seeing also include relay bandwidth not exit bandwidth.
 239 2014-07-28 04:42:59 ThomasV has joined
 240 2014-07-28 04:43:09 <gmaxwell> The system appears to be connecting out to many (all?) ipv4 reachable nodes and just listening without relaying transactions. It's lying about what software it's running, presumably to monitor transaction origins (similar to what bc.i does— perhaps its even operated by bc.i)
 241 2014-07-28 04:44:01 <MBeth> hm, still very weird
 242 2014-07-28 04:44:05 <MBeth> thank you!
 243 2014-07-28 04:44:14 <gmaxwell> I'd guess the tor exitness is intended to monitor tor using bitcoin users too perhaps to intercept bitcoinj traffic, but its not working as an exit. Alternatively the running of an exit might be an intended cover for why its making so many outbound connections, but that cover fails because of the lack of an exit flag and the detectably weird behavior.
 244 2014-07-28 04:44:45 <gmaxwell> It's not new that people have run spy nodes that attempt to monitor the origins of all transactions. amusingly, on my own systems I'd already iptables banned that subnet due to crappy behavior from it in the past.
 245 2014-07-28 04:44:56 <MBeth> well my first assumption was that it is somehow designed to listen on darkmarket tx
 246 2014-07-28 04:45:06 hmmma has quit (Ping timeout: 272 seconds)
 247 2014-07-28 04:46:15 richcollins has joined
 248 2014-07-28 04:46:40 sirk3901 has joined
 249 2014-07-28 04:46:40 AcesAndEights21 has joined
 250 2014-07-28 04:49:16 raistlinthewiz has quit (Quit: Connection closed for inactivity)
 251 2014-07-28 04:50:01 jchp has quit (Ping timeout: 255 seconds)
 252 2014-07-28 04:52:24 chax has joined
 253 2014-07-28 04:54:07 kazcw has quit (Quit: Leaving.)
 254 2014-07-28 04:54:28 <earlz> So, I'm looking at how to create a non-standard transaction with bitcoinjs-lib... anyone have any hints on how to go about that? I'm not seeing how to manually specify opcodes and such in a transaction using it
 255 2014-07-28 04:54:41 kazcw has joined
 256 2014-07-28 04:55:54 <MBeth> gmaxwell: thank you. I'm really just curious why someone would do this
 257 2014-07-28 04:56:19 Andymeows has quit (Ping timeout: 255 seconds)
 258 2014-07-28 04:56:34 Andymeows has joined
 259 2014-07-28 04:56:52 <MBeth> the general weirdness of it, combined with the pulled blackhat talk would make for a wonderful conspiracy theory
 260 2014-07-28 04:57:14 chax has quit (Ping timeout: 264 seconds)
 261 2014-07-28 05:00:15 banghouse has quit (Remote host closed the connection)
 262 2014-07-28 05:00:54 hmmma has joined
 263 2014-07-28 05:01:12 Dr-G2 is now known as Dr-G
 264 2014-07-28 05:05:15 akstunt600 has quit (Read error: Connection reset by peer)
 265 2014-07-28 05:05:20 sirk3901 has quit (Quit: Leaving.)
 266 2014-07-28 05:05:26 dims has quit (Ping timeout: 240 seconds)
 267 2014-07-28 05:06:13 akstunt600 has joined
 268 2014-07-28 05:06:24 jchp has joined
 269 2014-07-28 05:08:15 Aahzmundus has quit (Ping timeout: 245 seconds)
 270 2014-07-28 05:09:04 Aido_ has quit (Ping timeout: 256 seconds)
 271 2014-07-28 05:09:45 e0s_ has quit (Read error: Connection reset by peer)
 272 2014-07-28 05:09:50 eoss has quit (Read error: Connection reset by peer)
 273 2014-07-28 05:10:49 copain_reac has joined
 274 2014-07-28 05:11:57 Aido has joined
 275 2014-07-28 05:12:16 mmatthew_43 has quit (Remote host closed the connection)
 276 2014-07-28 05:15:15 copain_reac has quit (Ping timeout: 245 seconds)
 277 2014-07-28 05:17:01 jtimon_ has quit (Ping timeout: 240 seconds)
 278 2014-07-28 05:18:40 phoenix54 has quit (Ping timeout: 245 seconds)
 279 2014-07-28 05:19:07 MobiusL has quit (Ping timeout: 264 seconds)
 280 2014-07-28 05:19:49 MBeth has left ()
 281 2014-07-28 05:36:43 SwampTony has quit (Remote host closed the connection)
 282 2014-07-28 05:40:59 dparrish has quit (Ping timeout: 250 seconds)
 283 2014-07-28 05:41:07 dparrish has joined
 284 2014-07-28 05:44:27 da2ce7 has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
 285 2014-07-28 05:51:37 banghouse has joined
 286 2014-07-28 05:56:03 jMyles has quit (Ping timeout: 272 seconds)
 287 2014-07-28 05:58:28 mmatthew_43 has joined
 288 2014-07-28 05:58:39 akstunt600 has quit (Read error: Connection reset by peer)
 289 2014-07-28 05:59:14 neozaru has joined
 290 2014-07-28 05:59:48 akstunt600 has joined
 291 2014-07-28 06:00:50 kmels has quit (Ping timeout: 264 seconds)
 292 2014-07-28 06:07:52 SwampTony has joined
 293 2014-07-28 06:11:21 osong has joined
 294 2014-07-28 06:11:40 copain_reac has joined
 295 2014-07-28 06:12:14 SwampTony has quit (Ping timeout: 264 seconds)
 296 2014-07-28 06:12:24 Aahzmundus has joined
 297 2014-07-28 06:16:02 copain_reac has quit (Ping timeout: 260 seconds)
 298 2014-07-28 06:18:36 ionstorm has quit (Remote host closed the connection)
 299 2014-07-28 06:19:27 SwampTony has joined
 300 2014-07-28 06:19:46 MoALTz_ has quit (Quit: Leaving)
 301 2014-07-28 06:20:06 MolokoDeck has joined
 302 2014-07-28 06:20:08 erasmospunk has quit (Remote host closed the connection)
 303 2014-07-28 06:21:32 HaltingState has quit (Quit: Leaving)
 304 2014-07-28 06:21:42 pierreatwork has joined
 305 2014-07-28 06:22:13 osong has quit (Remote host closed the connection)
 306 2014-07-28 06:23:22 shkaiejb has quit (Quit: Leaving)
 307 2014-07-28 06:28:10 pierreatwork has quit (Ping timeout: 260 seconds)
 308 2014-07-28 06:29:30 osong has joined
 309 2014-07-28 06:34:13 copumpkin has quit ()
 310 2014-07-28 06:34:39 Gyps has quit (Quit: Gyps)
 311 2014-07-28 06:37:08 copumpkin has joined
 312 2014-07-28 06:39:20 richcollins has quit (Quit: richcollins)
 313 2014-07-28 06:39:53 osong has quit (Remote host closed the connection)
 314 2014-07-28 06:40:28 osong has joined
 315 2014-07-28 06:40:56 osong has quit (Read error: Connection reset by peer)
 316 2014-07-28 06:41:23 osong has joined
 317 2014-07-28 06:42:26 ThomasV has quit (Ping timeout: 240 seconds)
 318 2014-07-28 06:47:03 gdm85 has quit (Ping timeout: 260 seconds)
 319 2014-07-28 06:49:56 copain_reac has joined
 320 2014-07-28 06:50:05 sirk3901 has joined
 321 2014-07-28 06:50:13 dims has joined
 322 2014-07-28 06:51:55 akstunt600 has quit (Read error: Connection reset by peer)
 323 2014-07-28 06:52:12 <wumpus> BlueMatt: 0.9.2.1 you mean? that was released a few hours after 0.9.2, with a  macosx font fix and a rare crash on exit fixed, no big deal
 324 2014-07-28 06:52:39 DigiByte has quit (Quit: Leaving)
 325 2014-07-28 06:52:50 akstunt600 has joined
 326 2014-07-28 06:54:46 dims has quit (Ping timeout: 260 seconds)
 327 2014-07-28 06:57:02 otila has joined
 328 2014-07-28 06:57:14 erasmospunk has joined
 329 2014-07-28 06:57:44 lclc has joined
 330 2014-07-28 06:58:11 ychaim has joined
 331 2014-07-28 06:58:58 gdm85 has joined
 332 2014-07-28 07:00:32 sirk3901 has quit (Ping timeout: 240 seconds)
 333 2014-07-28 07:01:35 Elglobo has quit (Ping timeout: 250 seconds)
 334 2014-07-28 07:04:41 OneMiner1 has joined
 335 2014-07-28 07:04:50 Aahzmundus has quit (Ping timeout: 245 seconds)
 336 2014-07-28 07:06:15 mappum has quit (Ping timeout: 255 seconds)
 337 2014-07-28 07:06:58 TheSeven has quit (Disconnected by services)
 338 2014-07-28 07:07:11 [7] has joined
 339 2014-07-28 07:07:39 SwampTony has quit (Ping timeout: 250 seconds)
 340 2014-07-28 07:07:57 SwampTony has joined
 341 2014-07-28 07:08:02 OneMiner has quit (Ping timeout: 240 seconds)
 342 2014-07-28 07:08:16 Elglobo has joined
 343 2014-07-28 07:09:39 Elglobonoob has joined
 344 2014-07-28 07:09:43 sahlhoff has quit (Quit: sahlhoff)
 345 2014-07-28 07:13:50 pen has joined
 346 2014-07-28 07:14:22 Elglobonoob has quit (Ping timeout: 260 seconds)
 347 2014-07-28 07:16:19 Elglobo has quit (Ping timeout: 250 seconds)
 348 2014-07-28 07:19:41 CriticalH has joined
 349 2014-07-28 07:19:47 CriticalH has quit (Client Quit)
 350 2014-07-28 07:20:39 JoannisStribingi has joined
 351 2014-07-28 07:22:43 phoenix54 has joined
 352 2014-07-28 07:23:24 psgs is now known as away!~psgs@2001:41d0:1:68a3::39|psgs
 353 2014-07-28 07:27:16 Raziel has joined
 354 2014-07-28 07:28:07 drawingthesun has joined
 355 2014-07-28 07:28:53 abossard has joined
 356 2014-07-28 07:30:13 edgars_ has quit (Quit: Leaving)
 357 2014-07-28 07:31:44 abossard has quit (Client Quit)
 358 2014-07-28 07:36:12 moarrr has joined
 359 2014-07-28 07:36:27 dipendra has joined
 360 2014-07-28 07:38:07 mmatthew_43 has quit (Remote host closed the connection)
 361 2014-07-28 07:40:53 <SomeoneWeird> wumpus: people were complaining it wasn't up to date
 362 2014-07-28 07:41:46 crunk-juice has joined
 363 2014-07-28 07:45:20 akstunt600 has quit (Read error: Connection reset by peer)
 364 2014-07-28 07:46:18 crunk-juice has quit (Ping timeout: 255 seconds)
 365 2014-07-28 07:46:26 akstunt600 has joined
 366 2014-07-28 07:46:43 copain_reac has quit (Remote host closed the connection)
 367 2014-07-28 07:47:19 copain_reac has joined
 368 2014-07-28 07:48:19 <wumpus> people are always complaining
 369 2014-07-28 07:48:24 Eiii has quit ()
 370 2014-07-28 07:51:50 copain_reac has quit (Ping timeout: 264 seconds)
 371 2014-07-28 07:53:52 <SomeoneWeird> that they are
 372 2014-07-28 07:55:08 ThomasV has joined
 373 2014-07-28 07:57:03 dparrish has quit (Ping timeout: 260 seconds)
 374 2014-07-28 07:57:07 epscy has joined
 375 2014-07-28 07:59:04 RAM518 has joined
 376 2014-07-28 08:01:40 gst has quit (Remote host closed the connection)
 377 2014-07-28 08:01:41 wiretapped has quit (Write error: Connection reset by peer)
 378 2014-07-28 08:01:51 wiretapped has joined
 379 2014-07-28 08:01:59 gst has joined
 380 2014-07-28 08:03:18 dparrish has joined
 381 2014-07-28 08:03:35 Elglobo has joined
 382 2014-07-28 08:04:32 gjs278 has joined
 383 2014-07-28 08:05:07 tarantillo_ has quit (Remote host closed the connection)
 384 2014-07-28 08:05:23 tarantillo_ has joined
 385 2014-07-28 08:06:42 AaronvanW has joined
 386 2014-07-28 08:08:19 derbumi has joined
 387 2014-07-28 08:09:18 <jcorgan> wumpus: understand your comments on #4594--will update in the AM
 388 2014-07-28 08:11:31 nullbyte has quit (Ping timeout: 260 seconds)
 389 2014-07-28 08:12:17 t7 has joined
 390 2014-07-28 08:14:33 psgs is now known as psgs|away
 391 2014-07-28 08:15:30 dipendra has quit (Ping timeout: 256 seconds)
 392 2014-07-28 08:16:12 tarantillo_ has quit (Read error: Connection timed out)
 393 2014-07-28 08:16:32 tarantillo_ has joined
 394 2014-07-28 08:16:48 dparrish has quit (Remote host closed the connection)
 395 2014-07-28 08:16:55 edulix has quit (Ping timeout: 245 seconds)
 396 2014-07-28 08:16:56 dparrish has joined
 397 2014-07-28 08:17:05 copain_reac has joined
 398 2014-07-28 08:20:27 nowan has joined
 399 2014-07-28 08:21:11 da2ce7 has joined
 400 2014-07-28 08:21:19 YoY has quit (Ping timeout: 250 seconds)
 401 2014-07-28 08:22:10 YoY has joined
 402 2014-07-28 08:30:43 copain_reac has quit (Remote host closed the connection)
 403 2014-07-28 08:30:45 banghouse has quit (Remote host closed the connection)
 404 2014-07-28 08:31:19 copain_reac has joined
 405 2014-07-28 08:31:36 Andymeows has quit (Ping timeout: 245 seconds)
 406 2014-07-28 08:33:40 drizztbsd has joined
 407 2014-07-28 08:33:46 da2ce7 has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
 408 2014-07-28 08:35:35 JackH has joined
 409 2014-07-28 08:35:54 copain_reac has quit (Ping timeout: 256 seconds)
 410 2014-07-28 08:38:35 akstunt600 has quit (Read error: Connection reset by peer)
 411 2014-07-28 08:39:31 akstunt600 has joined
 412 2014-07-28 08:40:50 freggles has quit (Remote host closed the connection)
 413 2014-07-28 08:42:09 erasmospunk has quit (Quit: ttm)
 414 2014-07-28 08:44:12 W0rmDr1nk has joined
 415 2014-07-28 08:47:32 GAit has quit (Ping timeout: 240 seconds)
 416 2014-07-28 08:47:49 freggles has joined
 417 2014-07-28 08:49:29 dparrish has quit (Ping timeout: 250 seconds)
 418 2014-07-28 08:49:34 RAM518 has quit (Ping timeout: 260 seconds)
 419 2014-07-28 08:49:34 beachandbytes has quit (Ping timeout: 260 seconds)
 420 2014-07-28 08:49:50 copain_reac has joined
 421 2014-07-28 08:50:19 dparrish has joined
 422 2014-07-28 08:51:28 <copain_reac> i'm having trouble building bitcoind on osx mavericks using brew
 423 2014-07-28 08:51:43 <copain_reac> getting "./json/json_spirit_value.h:20:10: fatal error: 'boost/config.hpp' file not found"
 424 2014-07-28 08:52:21 <copain_reac> despite boost being installed correctly with brew
 425 2014-07-28 08:52:42 CoinHeavy has quit (Quit: CoinHeavy)
 426 2014-07-28 08:53:35 <drizztbsd> copain_reac: set the correct -I
 427 2014-07-28 08:54:14 <copain_reac> drizztbsd: i tried "make -I/usr/local/Cellar/boost/1.55.0_2"
 428 2014-07-28 08:54:22 <copain_reac> didn't appear to help
 429 2014-07-28 08:54:32 <drizztbsd> it's not the correct way
 430 2014-07-28 08:54:35 <drizztbsd> see ./configure --help
 431 2014-07-28 08:54:48 <copain_reac> oh
 432 2014-07-28 08:54:55 <copain_reac> i'll try that tyvm
 433 2014-07-28 08:54:57 <drizztbsd> hint: CXXFLAGS
 434 2014-07-28 08:55:11 <drizztbsd> and LDFLAGS for the -L part
 435 2014-07-28 08:55:41 <copain_reac> yeah, i tried with that too, my problem was that i wasn't passing the options at the correct moments :)
 436 2014-07-28 08:56:36 dparrish has quit (Ping timeout: 240 seconds)
 437 2014-07-28 08:57:02 AcesAndEights21 has quit (Ping timeout: 260 seconds)
 438 2014-07-28 08:59:55 kill\switch has quit (Ping timeout: 264 seconds)
 439 2014-07-28 09:00:39 edulix has joined
 440 2014-07-28 09:04:04 saizai has joined
 441 2014-07-28 09:04:06 dipendra has joined
 442 2014-07-28 09:04:38 kill\switch has joined
 443 2014-07-28 09:04:41 saizai has quit (Client Quit)
 444 2014-07-28 09:06:04 gjj has quit (Remote host closed the connection)
 445 2014-07-28 09:07:12 moarrr has quit ()
 446 2014-07-28 09:08:56 dfletcher has quit (Read error: Connection reset by peer)
 447 2014-07-28 09:09:10 mE\Ta has joined
 448 2014-07-28 09:10:00 dfletcher has joined
 449 2014-07-28 09:10:09 weilu_ has joined
 450 2014-07-28 09:10:23 HansiHE has quit (Ping timeout: 250 seconds)
 451 2014-07-28 09:11:28 ThomasV has quit (Ping timeout: 255 seconds)
 452 2014-07-28 09:12:15 JyZyXEL has quit (Ping timeout: 255 seconds)
 453 2014-07-28 09:12:23 weilu has quit (Ping timeout: 272 seconds)
 454 2014-07-28 09:12:59 JyZyXEL has joined
 455 2014-07-28 09:13:32 dparrish has joined
 456 2014-07-28 09:13:58 ivan` has quit (Quit: ERC Version 5.3 (IRC client for Emacs))
 457 2014-07-28 09:15:47 psgs is now known as away!~psgs@2001:41d0:1:68a3::39|psgs
 458 2014-07-28 09:15:47 plaprade has joined
 459 2014-07-28 09:15:51 AcesAndEights21 has joined
 460 2014-07-28 09:17:07 ivan` has joined
 461 2014-07-28 09:17:27 HansiHE has joined
 462 2014-07-28 09:17:27 RAM518 has joined
 463 2014-07-28 09:18:36 dparrish has quit (Ping timeout: 240 seconds)
 464 2014-07-28 09:19:32 dparrish has joined
 465 2014-07-28 09:20:07 osong has quit ()
 466 2014-07-28 09:22:53 xenog has joined
 467 2014-07-28 09:23:39 gjj has joined
 468 2014-07-28 09:25:12 wallet42 has joined
 469 2014-07-28 09:28:17 msvb-lab has joined
 470 2014-07-28 09:29:08 mappum has joined
 471 2014-07-28 09:31:49 <copain_reac> so i tried this "BOOST_ROOT=/usr/local/Cellar/boost/1.55.0_2 ./configure --with-boost"
 472 2014-07-28 09:31:52 <copain_reac> didn't work either
 473 2014-07-28 09:31:56 akstunt600 has quit (Read error: Connection reset by peer)
 474 2014-07-28 09:31:58 xenog has quit (Quit: Leaving.)
 475 2014-07-28 09:32:51 akstunt600 has joined
 476 2014-07-28 09:37:40 wallet42 has quit (Ping timeout: 256 seconds)
 477 2014-07-28 09:37:45 wallet421 has joined
 478 2014-07-28 09:37:45 wallet421 is now known as wallet42
 479 2014-07-28 09:39:19 dparrish has quit (Ping timeout: 250 seconds)
 480 2014-07-28 09:40:30 dparrish has joined
 481 2014-07-28 09:42:57 fanquake has joined
 482 2014-07-28 09:44:37 torsthaldo has joined
 483 2014-07-28 09:49:00 dparrish has quit (Ping timeout: 256 seconds)
 484 2014-07-28 09:49:09 dparrish has joined
 485 2014-07-28 09:49:21 HANTI is now known as hanti
 486 2014-07-28 09:51:01 <mn3monic> hello, any advice to track confirmations on non-wallet transactions ?
 487 2014-07-28 09:51:28 ValicekB has quit (Ping timeout: 250 seconds)
 488 2014-07-28 09:52:05 llllllllll has joined
 489 2014-07-28 09:54:39 haskoiner has quit (Quit: haskoiner)
 490 2014-07-28 09:55:00 wallet42 has quit (Ping timeout: 255 seconds)
 491 2014-07-28 09:58:06 ValicekB has joined
 492 2014-07-28 09:58:16 xenog has joined
 493 2014-07-28 10:03:36 one_zero has quit ()
 494 2014-07-28 10:04:09 <sipa> use a watch-only wallet
 495 2014-07-28 10:08:35 beachandbytes has joined
 496 2014-07-28 10:08:39 ValicekB has quit (Ping timeout: 260 seconds)
 497 2014-07-28 10:12:08 B51Num1_ has joined
 498 2014-07-28 10:13:04 ValicekB has joined
 499 2014-07-28 10:13:08 B51Num1__ has joined
 500 2014-07-28 10:13:36 xenog has quit (Quit: Leaving.)
 501 2014-07-28 10:14:56 B51Num1 has quit (Ping timeout: 240 seconds)
 502 2014-07-28 10:15:04 B51Num1__ is now known as B51Num1
 503 2014-07-28 10:16:15 RAM518 has quit (Ping timeout: 250 seconds)
 504 2014-07-28 10:16:36 B51Num1_ has quit (Ping timeout: 255 seconds)
 505 2014-07-28 10:16:36 RAM518 has joined
 506 2014-07-28 10:24:08 zone117x has quit (Ping timeout: 256 seconds)
 507 2014-07-28 10:24:59 zone117x has joined
 508 2014-07-28 10:25:15 akstunt600 has quit (Read error: Connection reset by peer)
 509 2014-07-28 10:26:09 akstunt600 has joined
 510 2014-07-28 10:26:21 Zarutian has joined
 511 2014-07-28 10:26:22 smorim has quit (Remote host closed the connection)
 512 2014-07-28 10:27:37 smorim has joined
 513 2014-07-28 10:31:22 banghouse has joined
 514 2014-07-28 10:33:49 haskoiner has joined
 515 2014-07-28 10:36:31 banghouse has quit (Ping timeout: 255 seconds)
 516 2014-07-28 10:40:34 shesek has quit (Ping timeout: 255 seconds)
 517 2014-07-28 10:43:58 Tiraspol has quit (Ping timeout: 256 seconds)
 518 2014-07-28 10:44:15 Tiraspol has joined
 519 2014-07-28 10:44:30 Tiraspol has quit (Changing host)
 520 2014-07-28 10:44:30 Tiraspol has joined
 521 2014-07-28 10:47:02 hmsimha has quit (Ping timeout: 240 seconds)
 522 2014-07-28 10:51:32 jprichardson has joined
 523 2014-07-28 10:53:05 hmmma has quit (Ping timeout: 272 seconds)
 524 2014-07-28 11:00:06 tjopper1 has joined
 525 2014-07-28 11:06:55 papa2 has quit (Remote host closed the connection)
 526 2014-07-28 11:07:30 weilu_ has quit (Remote host closed the connection)
 527 2014-07-28 11:12:05 jchp has quit (Ping timeout: 272 seconds)
 528 2014-07-28 11:12:21 AcesAndEights21 has quit (Ping timeout: 245 seconds)
 529 2014-07-28 11:14:16 psgs is now known as psgs|away
 530 2014-07-28 11:18:35 akstunt600 has quit (Read error: Connection reset by peer)
 531 2014-07-28 11:18:38 lclc has quit (Quit: Konversation terminated!)
 532 2014-07-28 11:19:43 akstunt600 has joined
 533 2014-07-28 11:23:49 Skirmant has joined
 534 2014-07-28 11:25:29 ThomasV has joined
 535 2014-07-28 11:25:39 belcher has joined
 536 2014-07-28 11:27:09 sirk3901 has joined
 537 2014-07-28 11:28:40 Subo1977_ has joined
 538 2014-07-28 11:28:43 Subo1977 has quit (Ping timeout: 264 seconds)
 539 2014-07-28 11:28:53 Khayman is now known as Hasimir
 540 2014-07-28 11:28:55 dipendra has quit (Read error: Connection reset by peer)
 541 2014-07-28 11:30:24 Zarutian has quit (Quit: Zarutian)
 542 2014-07-28 11:30:46 antizionist__ has joined
 543 2014-07-28 11:30:48 xenog has joined
 544 2014-07-28 11:31:55 tjopper2 has joined
 545 2014-07-28 11:33:31 crunk-juice has joined
 546 2014-07-28 11:34:46 tjopper1 has quit (Ping timeout: 260 seconds)
 547 2014-07-28 11:40:07 kill\switch has quit (Ping timeout: 264 seconds)
 548 2014-07-28 11:41:24 moarrr has joined
 549 2014-07-28 11:42:30 copain_reac has quit ()
 550 2014-07-28 11:47:28 fanquake has quit (Quit: fanquake)
 551 2014-07-28 11:49:03 sirk3901 has quit (Quit: Leaving.)
 552 2014-07-28 11:49:21 weilu has joined
 553 2014-07-28 11:49:28 weilu has quit (Remote host closed the connection)
 554 2014-07-28 11:51:15 crunk-juice has quit (Remote host closed the connection)
 555 2014-07-28 11:52:25 kill\switch has joined
 556 2014-07-28 11:55:11 jchp has joined
 557 2014-07-28 11:59:03 dipendra has joined
 558 2014-07-28 12:04:17 Andymeows has joined
 559 2014-07-28 12:04:55 belcher_ has joined
 560 2014-07-28 12:05:05 tjopper1 has joined
 561 2014-07-28 12:05:13 copumpkin has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
 562 2014-07-28 12:07:33 robonerd has quit (Ping timeout: 240 seconds)
 563 2014-07-28 12:07:46 belcher has quit (Ping timeout: 245 seconds)
 564 2014-07-28 12:08:43 robonerd has joined
 565 2014-07-28 12:08:55 lclc has joined
 566 2014-07-28 12:09:05 tjopper2 has quit (Ping timeout: 272 seconds)
 567 2014-07-28 12:11:54 akstunt600 has quit (Read error: Connection reset by peer)
 568 2014-07-28 12:12:18 Andymeows has quit (Ping timeout: 250 seconds)
 569 2014-07-28 12:12:38 rdponticelli has joined
 570 2014-07-28 12:12:46 akstunt600 has joined
 571 2014-07-28 12:15:05 smorim has quit (Remote host closed the connection)
 572 2014-07-28 12:15:35 smorim has joined
 573 2014-07-28 12:15:48 papa has joined
 574 2014-07-28 12:20:27 moarrr has quit ()
 575 2014-07-28 12:20:28 atgreen has quit (Remote host closed the connection)
 576 2014-07-28 12:20:46 Andymeows has joined
 577 2014-07-28 12:30:56 agricocb has quit (Quit: Leaving.)
 578 2014-07-28 12:32:03 copumpkin has joined
 579 2014-07-28 12:32:30 banghouse has joined
 580 2014-07-28 12:37:18 banghouse has quit (Ping timeout: 260 seconds)
 581 2014-07-28 12:38:49 tjopper1 has quit (Quit: Leaving.)
 582 2014-07-28 12:39:26 tjopper1 has joined
 583 2014-07-28 12:40:20 kyuupichan has quit (Remote host closed the connection)
 584 2014-07-28 12:40:39 kyuupichan has joined
 585 2014-07-28 12:41:03 oujh has quit (Ping timeout: 264 seconds)
 586 2014-07-28 12:41:21 kyuupichan has quit (Remote host closed the connection)
 587 2014-07-28 12:42:13 jtimon has joined
 588 2014-07-28 12:42:31 rdponticelli has quit (Ping timeout: 264 seconds)
 589 2014-07-28 12:42:44 oujh has joined
 590 2014-07-28 12:43:01 kyuupichan has joined
 591 2014-07-28 12:43:52 kjj has joined
 592 2014-07-28 12:45:57 hearn has joined
 593 2014-07-28 12:45:58 luktgf has joined
 594 2014-07-28 12:47:56 oujh has quit (Ping timeout: 250 seconds)
 595 2014-07-28 12:48:22 owowo has quit (Ping timeout: 250 seconds)
 596 2014-07-28 12:52:30 owowo has joined
 597 2014-07-28 12:53:49 SwampTony has quit ()
 598 2014-07-28 12:53:59 kyuupichan has quit (Remote host closed the connection)
 599 2014-07-28 12:54:17 kyuupichan has joined
 600 2014-07-28 12:55:24 rdponticelli has joined
 601 2014-07-28 12:55:36 sacrelege has joined
 602 2014-07-28 12:56:49 mr_burdell has quit (Remote host closed the connection)
 603 2014-07-28 12:59:16 CheckDavid has joined
 604 2014-07-28 13:00:48 derbumi has quit (Quit: derbumi)
 605 2014-07-28 13:05:10 Andymeows has quit (Ping timeout: 250 seconds)
 606 2014-07-28 13:05:13 akstunt600 has quit (Read error: Connection reset by peer)
 607 2014-07-28 13:06:21 akstunt600 has joined
 608 2014-07-28 13:06:40 agricocb has joined
 609 2014-07-28 13:09:32 ValicekB has quit (Ping timeout: 255 seconds)
 610 2014-07-28 13:09:49 tjopper1 has quit (Quit: Leaving.)
 611 2014-07-28 13:09:58 Einewton has quit (Read error: Connection reset by peer)
 612 2014-07-28 13:10:02 __nskelsey__ has joined
 613 2014-07-28 13:10:09 jgarzik is now known as home_jg
 614 2014-07-28 13:10:21 tjopper1 has joined
 615 2014-07-28 13:12:12 AnoAnon has joined
 616 2014-07-28 13:12:25 AnoAnon has quit (Max SendQ exceeded)
 617 2014-07-28 13:15:28 copain_reac has joined
 618 2014-07-28 13:15:40 derbumi has joined
 619 2014-07-28 13:15:56 otila has quit (Ping timeout: 240 seconds)
 620 2014-07-28 13:16:19 MiningBuddy- is now known as MiningBuddy
 621 2014-07-28 13:16:21 MiningBuddy has quit (Changing host)
 622 2014-07-28 13:16:21 MiningBuddy has joined
 623 2014-07-28 13:17:33 otila has joined
 624 2014-07-28 13:18:04 ValicekB has joined
 625 2014-07-28 13:18:21 crunk-juice has joined
 626 2014-07-28 13:18:36 BigBitz has quit (Ping timeout: 245 seconds)
 627 2014-07-28 13:25:23 copain_reac has quit (Remote host closed the connection)
 628 2014-07-28 13:28:05 lnovy has joined
 629 2014-07-28 13:28:26 cagedwisdom has quit (Remote host closed the connection)
 630 2014-07-28 13:31:03 home_jg has quit (Ping timeout: 240 seconds)
 631 2014-07-28 13:32:39 Soligor has quit (Ping timeout: 264 seconds)
 632 2014-07-28 13:32:43 Andymeows has joined
 633 2014-07-28 13:33:02 christophe has joined
 634 2014-07-28 13:35:38 otila has quit (Ping timeout: 260 seconds)
 635 2014-07-28 13:37:05 mr_burdell has joined
 636 2014-07-28 13:38:11 luktgf has quit (Ping timeout: 245 seconds)
 637 2014-07-28 13:38:18 copain_reac has joined
 638 2014-07-28 13:41:33 dparrish has quit (Ping timeout: 272 seconds)
 639 2014-07-28 13:41:42 dparrish has joined
 640 2014-07-28 13:43:13 copain_reac has quit (Read error: Connection reset by peer)
 641 2014-07-28 13:43:17 kermit1 has quit (Quit: Leaving.)
 642 2014-07-28 13:43:42 kermit has joined
 643 2014-07-28 13:44:25 home_jg has joined
 644 2014-07-28 13:45:07 Andrewmeows has joined
 645 2014-07-28 13:47:53 maraoz has joined
 646 2014-07-28 13:48:06 Andymeows has quit (Ping timeout: 255 seconds)
 647 2014-07-28 13:49:49 Soligor has joined
 648 2014-07-28 13:50:31 derbumi_ has joined
 649 2014-07-28 13:50:56 copain_reac has joined
 650 2014-07-28 13:51:56 derbumi has quit (Ping timeout: 245 seconds)
 651 2014-07-28 13:51:56 derbumi_ is now known as derbumi
 652 2014-07-28 13:52:29 copain_reac has quit (Read error: Connection reset by peer)
 653 2014-07-28 13:53:20 copain_reac has joined
 654 2014-07-28 13:54:25 luktgf has joined
 655 2014-07-28 13:57:10 <maraoz> anyone got example tx input scripts for all types? (p2pkh, p2pk, p2sh, regular multisig).
 656 2014-07-28 13:58:03 <helo> maraoz: i'd poke around the tests in src/test/
 657 2014-07-28 13:58:20 copain_reac has quit (Read error: Connection reset by peer)
 658 2014-07-28 13:58:34 akstunt600 has quit (Read error: Connection reset by peer)
 659 2014-07-28 13:59:25 akstunt600 has joined
 660 2014-07-28 13:59:41 ionstorm has joined
 661 2014-07-28 14:00:36 <maraoz> thx helo
 662 2014-07-28 14:00:42 <helo> data/ in there has some json files with transaction data
 663 2014-07-28 14:01:06 dims has joined
 664 2014-07-28 14:01:08 copain_reac has joined
 665 2014-07-28 14:02:13 <melvster> yay trezor has shipped http://satoshilabs.com/news/2014-07-28-trezor-shipped/
 666 2014-07-28 14:02:22 <melvster> anyone here going to the launch party?
 667 2014-07-28 14:06:17 Knuk__ has joined
 668 2014-07-28 14:08:35 <hearn> depends when it is - i might g
 669 2014-07-28 14:08:36 <hearn> go
 670 2014-07-28 14:11:06 copain_reac has quit (Read error: Connection reset by peer)
 671 2014-07-28 14:12:11 AcesAndEights21 has joined
 672 2014-07-28 14:12:46 dparrish has quit (Ping timeout: 250 seconds)
 673 2014-07-28 14:13:21 dparrish has joined
 674 2014-07-28 14:15:07 edulix has quit (Ping timeout: 272 seconds)
 675 2014-07-28 14:15:28 edulix has joined
 676 2014-07-28 14:17:01 pen has quit (Ping timeout: 245 seconds)
 677 2014-07-28 14:19:30 christophe has quit (Ping timeout: 260 seconds)
 678 2014-07-28 14:20:05 christophe has joined
 679 2014-07-28 14:23:49 nullbyte has joined
 680 2014-07-28 14:23:49 nullbyte has quit (Changing host)
 681 2014-07-28 14:23:49 nullbyte has joined
 682 2014-07-28 14:23:59 dparrish has quit (Ping timeout: 272 seconds)
 683 2014-07-28 14:25:01 dparrish has joined
 684 2014-07-28 14:27:48 Skirmant_ has joined
 685 2014-07-28 14:27:48 Skirmant has quit (Disconnected by services)
 686 2014-07-28 14:27:50 Skirmant_ is now known as Skirmant
 687 2014-07-28 14:29:57 bsm117532 has left ()
 688 2014-07-28 14:30:22 tjopper2 has joined
 689 2014-07-28 14:31:03 MaxSan1 has quit (Quit: Leaving.)
 690 2014-07-28 14:31:23 <hearn> wumpus: ping
 691 2014-07-28 14:31:46 ValicekB has quit (Ping timeout: 255 seconds)
 692 2014-07-28 14:32:22 tjopper1 has quit (Ping timeout: 250 seconds)
 693 2014-07-28 14:32:56 dgenr8 has joined
 694 2014-07-28 14:33:24 banghouse has joined
 695 2014-07-28 14:34:12 dparrish has quit (Ping timeout: 240 seconds)
 696 2014-07-28 14:34:18 hearn has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
 697 2014-07-28 14:34:30 derbumi has quit (Quit: derbumi)
 698 2014-07-28 14:35:13 DougieBot5000 has joined
 699 2014-07-28 14:35:16 dparrish has joined
 700 2014-07-28 14:35:16 weilu has joined
 701 2014-07-28 14:37:13 derbumi has joined
 702 2014-07-28 14:37:46 derbumi has quit (Client Quit)
 703 2014-07-28 14:38:03 ValicekB has joined
 704 2014-07-28 14:38:10 banghouse has quit (Ping timeout: 260 seconds)
 705 2014-07-28 14:38:46 ThomasV has quit (Ping timeout: 250 seconds)
 706 2014-07-28 14:41:04 <ribasushi> do bitcoin devs have a particular opinion on the gocoin client?
 707 2014-07-28 14:41:19 <ribasushi> (if there is a forum thread I've missed - links welcome)
 708 2014-07-28 14:41:25 banghouse has joined
 709 2014-07-28 14:43:45 Skirmant_ has joined
 710 2014-07-28 14:43:46 Skirmant has quit (Disconnected by services)
 711 2014-07-28 14:43:47 Skirmant_ is now known as Skirmant
 712 2014-07-28 14:44:36 dparrish has quit (Ping timeout: 240 seconds)
 713 2014-07-28 14:44:55 lclc has quit (Quit: Konversation terminated!)
 714 2014-07-28 14:45:44 Skirmant_ has joined
 715 2014-07-28 14:45:44 Skirmant has quit (Disconnected by services)
 716 2014-07-28 14:45:46 Skirmant_ is now known as Skirmant
 717 2014-07-28 14:45:50 chaoswaf1le is now known as ChaosWaffle
 718 2014-07-28 14:51:37 haskoiner_ has joined
 719 2014-07-28 14:51:53 akstunt600 has quit (Read error: Connection reset by peer)
 720 2014-07-28 14:52:07 studybo__ has joined
 721 2014-07-28 14:52:45 xenog has quit (Ping timeout: 256 seconds)
 722 2014-07-28 14:52:46 AcesAndEights21 has quit (Quit: Leaving)
 723 2014-07-28 14:52:51 akstunt600 has joined
 724 2014-07-28 14:54:23 haskoiner has quit (Ping timeout: 272 seconds)
 725 2014-07-28 14:54:23 haskoiner_ is now known as haskoiner
 726 2014-07-28 14:54:31 studybot_ has quit (Ping timeout: 245 seconds)
 727 2014-07-28 14:55:01 pen has joined
 728 2014-07-28 14:55:43 bkbk has joined
 729 2014-07-28 14:55:48 MaxSan has joined
 730 2014-07-28 14:55:59 studybo__ has left ()
 731 2014-07-28 14:56:33 dparrish has joined
 732 2014-07-28 14:56:51 hearn has joined
 733 2014-07-28 15:02:29 ken01203 has joined
 734 2014-07-28 15:02:53 xenog has joined
 735 2014-07-28 15:03:21 ThomasV has joined
 736 2014-07-28 15:04:22 <ken01203> anyone not busy able to msg me, need some help with upgrading a btc clone wallet to 9.2.
 737 2014-07-28 15:08:22 banghouse has quit (Remote host closed the connection)
 738 2014-07-28 15:09:18 ConvivialMatt has joined
 739 2014-07-28 15:11:57 phoenix54 has quit (Quit: phoenix54)
 740 2014-07-28 15:12:23 kmels has joined
 741 2014-07-28 15:12:25 banghouse has joined
 742 2014-07-28 15:12:51 <jcorgan> wumpus: updated #4594 from your feedback
 743 2014-07-28 15:13:27 tjopper1 has joined
 744 2014-07-28 15:14:34 HansiHE has quit (Ping timeout: 260 seconds)
 745 2014-07-28 15:15:16 MolokoDeck has quit (Ping timeout: 250 seconds)
 746 2014-07-28 15:15:51 tjopper2 has quit (Ping timeout: 264 seconds)
 747 2014-07-28 15:16:43 Skirmant has quit (Ping timeout: 264 seconds)
 748 2014-07-28 15:19:26 orperelman has joined
 749 2014-07-28 15:19:43 hearn has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
 750 2014-07-28 15:23:00 Jasmin68k has joined
 751 2014-07-28 15:24:34 HansiHE has joined
 752 2014-07-28 15:26:23 weilu has quit (Remote host closed the connection)
 753 2014-07-28 15:31:29 Sleepnbum has joined
 754 2014-07-28 15:34:09 t7 has quit (Quit: home)
 755 2014-07-28 15:34:13 lclc has joined
 756 2014-07-28 15:34:37 phoenix53 has joined
 757 2014-07-28 15:34:41 dims has quit (Ping timeout: 256 seconds)
 758 2014-07-28 15:35:28 dipendra has quit (Quit: Leaving)
 759 2014-07-28 15:35:36 Gyps has joined
 760 2014-07-28 15:38:09 iwilcox has quit (Remote host closed the connection)
 761 2014-07-28 15:38:48 iwilcox has joined
 762 2014-07-28 15:42:37 Andrewmeows has quit (Ping timeout: 256 seconds)
 763 2014-07-28 15:43:30 ThomasV has quit (Ping timeout: 260 seconds)
 764 2014-07-28 15:45:16 akstunt600 has quit (Read error: Connection reset by peer)
 765 2014-07-28 15:46:04 akstunt600 has joined
 766 2014-07-28 15:47:09 maraoz has quit (Ping timeout: 256 seconds)
 767 2014-07-28 15:47:57 Blxjander has quit (Ping timeout: 240 seconds)
 768 2014-07-28 15:48:26 Jasmin68k has quit (Quit: Leaving.)
 769 2014-07-28 15:48:57 Jasmin68k has joined
 770 2014-07-28 15:49:13 Jasmin68k has quit (Client Quit)
 771 2014-07-28 15:49:21 CheckDavid has quit (Quit: Connection closed for inactivity)
 772 2014-07-28 15:49:40 Jasmin68k has joined
 773 2014-07-28 15:51:23 crunk-juice has quit (Remote host closed the connection)
 774 2014-07-28 15:52:01 pen has quit (Ping timeout: 272 seconds)
 775 2014-07-28 15:52:03 kmels has quit (Ping timeout: 240 seconds)
 776 2014-07-28 15:52:38 Jasmin68k has quit (Client Quit)
 777 2014-07-28 15:52:52 <earlz> So, how does one construct a non-standard transaction, like a any-can-spend transaction ro some such?
 778 2014-07-28 15:53:12 <earlz> I know the pool to broadcast it at, but not how to actually get the hex for it
 779 2014-07-28 15:55:25 <sipa> use a hex editor? :0
 780 2014-07-28 15:55:53 <sipa> (sorry, not a very useful answer, but you'll need some tool for building transactions, and if they're sufficiently non-standard, you'll likely need to do it manually entirely)
 781 2014-07-28 15:56:46 lewellyn has quit (Ping timeout: 250 seconds)
 782 2014-07-28 15:56:46 grubles has quit (Quit: Leaving)
 783 2014-07-28 15:57:36 <earlz> is there no library to help construct them? Like to specify opcodes to put in and all?
 784 2014-07-28 15:58:29 dparrish has quit (Ping timeout: 256 seconds)
 785 2014-07-28 15:59:14 maraoz has joined
 786 2014-07-28 15:59:50 trixisowned is now known as gtfoconnor
 787 2014-07-28 16:00:01 tjopper1 has quit (Quit: Leaving.)
 788 2014-07-28 16:00:03 <jrick> http://godoc.org/github.com/conformal/btcscript#ScriptBuilder will let you build the scripts, and then it's just adding them to inputs or outputs to the tx you're creating
 789 2014-07-28 16:00:10 dparrish has joined
 790 2014-07-28 16:00:42 tjopper1 has joined
 791 2014-07-28 16:01:44 <earlz> go? odd lol
 792 2014-07-28 16:01:55 <earlz> guess it's an excuse to learn some of it
 793 2014-07-28 16:02:18 <sipa> i'm sure BitcoinJ has something similar
 794 2014-07-28 16:02:18 gavinandresen has joined
 795 2014-07-28 16:02:26 <jrick> yeah wouldn't surprise me
 796 2014-07-28 16:02:47 <sipa> and there's python libraries for sure too
 797 2014-07-28 16:03:16 <sipa> bitcoin core will soon have a bitcoin-tx tool which can do some transaction building
 798 2014-07-28 16:03:45 <drizztbsd> sipa: why? :P
 799 2014-07-28 16:04:03 <sipa> mostly as an exercise to modularize our code
 800 2014-07-28 16:05:03 aegis has quit (Ping timeout: 240 seconds)
 801 2014-07-28 16:05:48 <earlz> sipa: is there any in-progress code for that?
 802 2014-07-28 16:06:04 <sipa> yes, https://github.com/bitcoin/bitcoin/pull/4332
 803 2014-07-28 16:06:09 grubles has joined
 804 2014-07-28 16:06:28 <earlz> it'd be nice if signing was easier than "just follow this 19 step guide" lol
 805 2014-07-28 16:06:50 banghouse has quit (Remote host closed the connection)
 806 2014-07-28 16:07:05 <sipa> bitcoin-tx can sign
 807 2014-07-28 16:07:15 <sipa> but only if it recognizes the script, obviously
 808 2014-07-28 16:07:54 banghouse has joined
 809 2014-07-28 16:07:57 <earlz> yea, that still doesn't seem like it'll allow you to use op codes without looking up the hex for it
 810 2014-07-28 16:08:02 <jrick> why does a tx creation tool care about the network?
 811 2014-07-28 16:08:03 <earlz> need like a script assembler heh
 812 2014-07-28 16:08:20 <sipa> jrick: it doesn't?
 813 2014-07-28 16:08:20 <sipa> earlz: it has a script assembler
 814 2014-07-28 16:08:26 <jrick> sipa: that tool in the pr has -regtest and -testnet options
 815 2014-07-28 16:08:31 <sipa> jrick: ah, for addresses
 816 2014-07-28 16:09:07 <jrick> I suppose, but you could gather the intended network from just the address
 817 2014-07-28 16:09:15 <jrick> and bail if you start crossing networks
 818 2014-07-28 16:09:27 <sipa> true, though the base libraries don't work that way
 819 2014-07-28 16:09:30 sirk3901 has joined
 820 2014-07-28 16:09:37 Zarutian has joined
 821 2014-07-28 16:09:38 <sipa> but yes, it wouldn't be too hard
 822 2014-07-28 16:09:40 Jasmin68k has joined
 823 2014-07-28 16:09:47 <davec__> blows me away some people still think Go is "odd".  Everything indicates it is steadily replacing Python. Ohoh shows it is now over 10% of all new open source projets, etc.
 824 2014-07-28 16:09:59 <wumpus> hearn: pong
 825 2014-07-28 16:09:59 <davec__> Ohloh*
 826 2014-07-28 16:10:30 <wumpus> jcorgan: great! thanks for reviving the zeromq work
 827 2014-07-28 16:10:34 gtfoconnor is now known as trixisowned
 828 2014-07-28 16:10:41 <wumpus> davec__: it is odd, but so is c++
 829 2014-07-28 16:10:46 <drizztbsd> zeromq? for what?
 830 2014-07-28 16:11:25 Jasmin68k has quit (Client Quit)
 831 2014-07-28 16:11:55 Jasmin68k has joined
 832 2014-07-28 16:11:58 lewellyn has joined
 833 2014-07-28 16:12:03 <wumpus> drizztbsd: notification of block/transactions
 834 2014-07-28 16:12:54 orperelman has quit (Ping timeout: 260 seconds)
 835 2014-07-28 16:13:01 Magnittude has left ("Leaving")
 836 2014-07-28 16:13:19 <jcorgan> PR #4594 adds publication of validated blocks and transactions over a ZMQ PUB socket
 837 2014-07-28 16:14:01 copain_reac has joined
 838 2014-07-28 16:16:22 W0rmDr1nk has quit (Ping timeout: 250 seconds)
 839 2014-07-28 16:16:31 danielpbarron has quit (Ping timeout: 245 seconds)
 840 2014-07-28 16:16:31 <jcorgan> regarding the zmq dependency, i'll make it so that 1) if libzmq-dev is not detected, the feature is disabled, 2) have a --disable-zmq to manually disable it, and 3) all conditionalized code would be isolated to zmqports.cpp.
 841 2014-07-28 16:16:44 <wumpus> jcorgan: ACK
 842 2014-07-28 16:16:47 Guest89655 has quit (Quit: No Ping reply in 180 seconds.)
 843 2014-07-28 16:16:54 user_asdasd has joined
 844 2014-07-28 16:17:36 <drizztbsd> we should remove bdb dependence :P
 845 2014-07-28 16:17:46 <sipa> there's --disable-wallet for that
 846 2014-07-28 16:17:47 <wumpus> drizztbsd: try configure --disable-wallet
 847 2014-07-28 16:17:58 <wumpus> jcorgan: I'm thinking it should be with[out]-zeromq
 848 2014-07-28 16:18:00 <drizztbsd> ok, but you don't support wallet.dat
 849 2014-07-28 16:18:11 <wumpus> jcorgan: as that's usually used for switching on/off usage of libraries
 850 2014-07-28 16:18:15 <sipa> wallets are highly overrated anyway
 851 2014-07-28 16:18:30 <wumpus> then use an external wallet
 852 2014-07-28 16:18:42 <jcorgan> wumpus: sure.  i'll have to bone up on my autotools though :)
 853 2014-07-28 16:18:57 <drizztbsd> what is the utility of bitcoin-core without wallet?
 854 2014-07-28 16:19:00 maaku has joined
 855 2014-07-28 16:19:18 danielpbarron has joined
 856 2014-07-28 16:19:18 <sipa> drizztbsd: core network router
 857 2014-07-28 16:19:24 <drizztbsd> oh ok, only p2p
 858 2014-07-28 16:19:27 <jcorgan> a trusted source for blockchain data?
 859 2014-07-28 16:19:31 maaku is now known as Guest37940
 860 2014-07-28 16:19:46 <sipa> p2p and rpc
 861 2014-07-28 16:19:56 <jcorgan> (and now zmq :)
 862 2014-07-28 16:20:01 ken01203 has quit (Ping timeout: 256 seconds)
 863 2014-07-28 16:20:19 <sipa> imho, that should be an external program as well
 864 2014-07-28 16:20:25 user__3242332423 has joined
 865 2014-07-28 16:20:34 <sipa> but let's not block useful optional functionality right now because of that wish
 866 2014-07-28 16:21:28 dparrish has quit (Ping timeout: 250 seconds)
 867 2014-07-28 16:21:39 chax has joined
 868 2014-07-28 16:21:52 pen has joined
 869 2014-07-28 16:22:28 user_asdasd has quit (Ping timeout: 260 seconds)
 870 2014-07-28 16:22:44 dparrish has joined
 871 2014-07-28 16:23:53 danielpbarron has quit (Client Quit)
 872 2014-07-28 16:25:22 <wumpus> jcorgan: well IMO zeromq is the best tool for this job, you could do other things like add a listen socket that publishes events in some format, or websocket, but zeromq is quickly becoming a standard for low-level notification (and all those other things could be built on top)
 873 2014-07-28 16:27:44 <home_jg> <jcorgan> regarding the zmq dependency, i'll make it so that 1) if libzmq-dev is not detected, the feature is disabled, 2) have a --disable-zmq to manually disable it, and 3) all conditionalized code would be isolated to zmqports.cpp.
 874 2014-07-28 16:27:47 <home_jg> <<  that's fine
 875 2014-07-28 16:28:04 <wumpus> drizztbsd: it provides some extra security for SPV wallets that connect to it, for example your own node won't lie by omission :)
 876 2014-07-28 16:28:25 <home_jg> wumpus, sipa:  I just disagree with situations that obviously create bitrot.  Signals and conditional linking do not contribute to bitrot, as the code is always built [if the lib is present on system] by default.
 877 2014-07-28 16:28:37 <home_jg> (and obviously create ugly code, like ifdefs)
 878 2014-07-28 16:28:58 <sipa> home_jg: i agree, but i find having bitcoin core be low-dependecy more important
 879 2014-07-28 16:28:59 <home_jg> ENABLE_WALLET is really our only ugly-yet-unavoidable ifdef.  Not concerned that bitrot will occur there, as long as Bitcoin-Qt remains alive etc.
 880 2014-07-28 16:29:15 <wumpus> home_jg: IMO your viewpoint on this is too extreme. Obviousl I agree that the code shouldn't be full of levels of ifdefs
 881 2014-07-28 16:29:24 <home_jg> sipa, optional dependencies are fine
 882 2014-07-28 16:29:30 <home_jg> wumpus, what specifically is too extreme?
 883 2014-07-28 16:29:40 <sipa> i don't understand you standpoint in that case
 884 2014-07-28 16:29:40 <home_jg> sipa, ie. miniupnp etc.
 885 2014-07-28 16:29:53 <sipa> optional dependencies imply not-always-compiled code
 886 2014-07-28 16:29:55 Burrito has joined
 887 2014-07-28 16:31:36 <home_jg> sipa, yes.  enabling by default is sufficient, provided that some other bitcoin devs have zmq-dev pkg on their system.
 888 2014-07-28 16:32:21 <wumpus> home_jg: I've tried to reduce #ifdef WALLET by a lot, there's still some places it is required, for example RPC calls that act differently depending on whether the wallet is enabled or not
 889 2014-07-28 16:32:30 <wumpus> home_jg: over time we need to split those up
 890 2014-07-28 16:33:10 <home_jg> wumpus, agree, though in general that conditional compilation is the lowest priority [for the reason that nearly all the main devs do compile the wallet code]
 891 2014-07-28 16:33:10 <gmaxwell> I'm generally not a fan of code which silently compiles in different ways which result in functional differences. "Why isn't X workting?" "Oh, you need to start over".
 892 2014-07-28 16:33:33 tjopper1 has quit (Read error: Connection reset by peer)
 893 2014-07-28 16:33:47 <wumpus> home_jg: I use builds with and without wallet in different places
 894 2014-07-28 16:34:10 <sipa> home_jg: i always use --disable-wallet :)
 895 2014-07-28 16:34:11 aegis has joined
 896 2014-07-28 16:34:11 <home_jg> wumpus, nod.  that is precisely why it is low priority.
 897 2014-07-28 16:34:13 <gmaxwell> (for ZMQ it's probably the least of all evils; ... but e.g. we should never have 'library' features in our own libraries where the library's user visible features are based on compiletime detection roulette)
 898 2014-07-28 16:34:18 <drizztbsd> wumpus: for electrum too?
 899 2014-07-28 16:34:39 <sipa> drizztbsd: if they want to
 900 2014-07-28 16:34:43 <home_jg> gmaxwell, sure.  But IME the outcome is -worse- if the alternative is simply long lived, rarely compiled code buried inside #ifdef
 901 2014-07-28 16:34:52 <wumpus> home_jg: the parts of AppInit2() that depend on ENABLE_WALLET should ideally be split off to functions that are no-ops with wallet disabled, I think it's the worst offender
 902 2014-07-28 16:35:00 <home_jg> signals are a fine solution to the problem
 903 2014-07-28 16:35:04 <home_jg> wrappers are not the only solution
 904 2014-07-28 16:35:14 banghouse has quit (Remote host closed the connection)
 905 2014-07-28 16:35:24 <gmaxwell> home_jg: Right, though in the long term, perhaps we'll just take ZMQ as a dependency.
 906 2014-07-28 16:35:35 <sipa> home_jg: what we see with -DDEBUG_LOCKORDER for example...
 907 2014-07-28 16:35:37 <home_jg> optional dependency, like miniupnp
 908 2014-07-28 16:36:16 <sipa> while we're at it, maybe deprecate -blocknotify etc when ZMQ is in, and provide a python tool that can run commands based on these...
 909 2014-07-28 16:36:19 <home_jg> sipa, that's one reason why the kernel went to runtime code rewriting.  you can adjust lock behavior at boot in modern kernels.
 910 2014-07-28 16:36:31 <gmaxwell> sipa: yea, my thoughts too. Eventually ZMQ could replace that.
 911 2014-07-28 16:36:40 <home_jg> sipa, in general, "sockets > executing a program"
 912 2014-07-28 16:36:46 <sipa> oh i fully agree
 913 2014-07-28 16:36:47 <home_jg> no forking for network notifications
 914 2014-07-28 16:36:56 <home_jg> N listeners
 915 2014-07-28 16:37:13 <gmaxwell> (if you note, I expressed horror on the introduction of those forking things)
 916 2014-07-28 16:37:24 <wumpus> yes, I agree, all the -notifies should be replaced by ZMQ
 917 2014-07-28 16:37:29 <gmaxwell> (esp wallet notify, block seemed, "confined" enough)
 918 2014-07-28 16:37:31 copain_reac has quit ()
 919 2014-07-28 16:37:40 <home_jg> exec sucks, ZMQ is good
 920 2014-07-28 16:37:46 <home_jg> unclear is ZMQ is best path
 921 2014-07-28 16:38:02 <home_jg> good as option; as sole path forward?
 922 2014-07-28 16:38:04 <gmaxwell> so in any case, I think auto is fine now, but as a direction it should move towards mandatory assuming that zmq support matures and is widely used.
 923 2014-07-28 16:38:12 <wumpus> I'd also like to allow command submission by zmq at some point, instead of through HTTP
 924 2014-07-28 16:38:19 <home_jg> gmaxwell, zmq low level protocol still sucks ;p
 925 2014-07-28 16:38:22 <wumpus> but it obviously needs to be authenticated then
 926 2014-07-28 16:38:33 akstunt600 has quit (Read error: Connection reset by peer)
 927 2014-07-28 16:38:34 <home_jg> do _not_ use ZMQ for anything non-public
 928 2014-07-28 16:38:34 <gmaxwell> because compile-time-feature-roulette is bad, but less bad than untested code.
 929 2014-07-28 16:38:51 <home_jg> if you want to add authentication, don't use ZMQ
 930 2014-07-28 16:39:12 hearn has joined
 931 2014-07-28 16:39:14 <wumpus> ok, never mind then
 932 2014-07-28 16:39:19 <wumpus> only use it for notification
 933 2014-07-28 16:39:38 akstunt600 has joined
 934 2014-07-28 16:39:43 <home_jg> yah, not security.  blockchain/tx/etc. notification, one-to-many, it's great
 935 2014-07-28 16:39:51 user_asdasd has joined
 936 2014-07-28 16:40:10 <gmaxwell> home_jg: would it be better if later versions of ZMQ added reasonable auth?  (I have no opinion on ZMQ, beyond past expierence that toolkits for things like this are usually awful— but also that -notify is horiffic)
 937 2014-07-28 16:40:29 <wumpus> well at least zmq is standardized
 938 2014-07-28 16:40:30 <home_jg> gmaxwell, you have to rev the low level protocol
 939 2014-07-28 16:40:40 <home_jg> analogy: hard fork
 940 2014-07-28 16:40:43 <wumpus> I would be against rolling anything ourselves here
 941 2014-07-28 16:40:48 <sipa> i thought authentication was an explicit non-goal for zm
 942 2014-07-28 16:40:50 <sipa> i thought authentication was an explicit non-goal for zmq
 943 2014-07-28 16:41:00 <gmaxwell> :(
 944 2014-07-28 16:41:24 <gmaxwell> wumpus: I think its standardized in the sense of widely used and compatible with itself.
 945 2014-07-28 16:41:44 <wumpus> there's this curvecp stuff for zmq that implements authentication AFAIK
 946 2014-07-28 16:41:48 <home_jg> Well, if not rev the low level protocol, you can treat it as an IP tunnel
 947 2014-07-28 16:42:04 <wumpus> gmaxwell: yes
 948 2014-07-28 16:42:05 <home_jg> add your own message ordering guarantees, security guarantees, MITM guarantees
 949 2014-07-28 16:42:07 <jcorgan> sipa: iirc, zmq 4.x is adding authentication, but i say we avoid all of that
 950 2014-07-28 16:42:10 <gmaxwell> I'd sure love for there to be a faster interface than the rpc for things like getblock / getrawtransaction / etc. right now collecting data from the blockchain via rpc is painfully slow.
 951 2014-07-28 16:42:21 <home_jg> yeah, rpc sucks for binary
 952 2014-07-28 16:42:27 <wumpus> gmaxwell: IMO zeromq would be great for that
 953 2014-07-28 16:42:28 tombtc has joined
 954 2014-07-28 16:42:38 sabfer has joined
 955 2014-07-28 16:42:40 <wumpus> also, requesting that data doesn't even need to be authenticated
 956 2014-07-28 16:42:46 user__3242332423 has quit (Ping timeout: 245 seconds)
 957 2014-07-28 16:42:55 <gmaxwell> It's true, just not stuff you normally want to serve to the internet.
 958 2014-07-28 16:42:59 <wumpus> getblock gettransaction etc is public information
 959 2014-07-28 16:43:06 <home_jg> I think zmq is fine for public information
 960 2014-07-28 16:43:07 <wumpus> you don't want to serve zeromq to the internet
 961 2014-07-28 16:43:17 <wumpus> isn't it local-only by default?
 962 2014-07-28 16:43:30 <jcorgan> it's whatever you specify
 963 2014-07-28 16:43:44 <jcorgan> default is not to listen at all
 964 2014-07-28 16:44:14 <wumpus> well having an option to serve over the network is fine, for people with a local network that know what they're doing
 965 2014-07-28 16:44:21 <gmaxwell> whats general software security like for ZMQ? if I give a malicious party access and they send random bits in, are they going to scribble over your process ram?
 966 2014-07-28 16:44:27 <jcorgan> let me get this current stuff reworked as discussed, so people can actually test it
 967 2014-07-28 16:44:34 <wumpus> but an open port over the internet is not good w/ ZMQ
 968 2014-07-28 16:44:35 <jcorgan> gmaxwell: no
 969 2014-07-28 16:44:48 <home_jg> <jcorgan> regarding the zmq dependency, i'll make it so that 1) if libzmq-dev is not detected, the feature is disabled, 2) have a --disable-zmq to manually disable it, and 3) all conditionalized code would be isolated to zmqports.cpp.
 970 2014-07-28 16:44:49 <home_jg> ACK
 971 2014-07-28 16:44:53 <wumpus> gmaxwell: well last time I read into ZMQ it certainly wasn't battle-hardened enough to serve stuff over the internet
 972 2014-07-28 16:45:03 <gmaxwell> jcorgan: ± bugs of course, okay, good to hear that its at least not 'intentionally' insecure.
 973 2014-07-28 16:45:12 <home_jg> jcorgan, signals are a good approach, as sipa indicated.
 974 2014-07-28 16:45:19 <home_jg> signals gives us the ability to make the core code generic
 975 2014-07-28 16:45:20 <jcorgan> one step at a time
 976 2014-07-28 16:45:35 <home_jg> and hook in specialized features (-blocknotify | 0mq)
 977 2014-07-28 16:45:35 <wumpus> I do think we should choose one (out-of-process) notification mechanism
 978 2014-07-28 16:46:07 <jcorgan> we're over complicating this, i think
 979 2014-07-28 16:46:21 <home_jg> with signals, who cares?  You mark the events in core code, then let users write plugins.
 980 2014-07-28 16:46:26 <wumpus> the others should be built on top, with external processe that adapt the event from one type to another
 981 2014-07-28 16:46:27 stalled has quit (Ping timeout: 264 seconds)
 982 2014-07-28 16:46:32 AlienProject has joined
 983 2014-07-28 16:46:55 * jcorgan leaves to go update the code before it completely morphs away from him :)
 984 2014-07-28 16:47:19 <home_jg> with signals, you can (a) build in a home grown mechanism, (b) use existing -blocknotify for compatibility, (c) use 0mq, ...
 985 2014-07-28 16:47:47 <home_jg> wean users off of -blocknotify, then delete it, without touching core code.
 986 2014-07-28 16:47:48 <gmaxwell> home_jg: your choice of relatively untested bad solutions! :P
 987 2014-07-28 16:48:00 <gmaxwell> but I do like it as a migration out path, I suppose.
 988 2014-07-28 16:48:31 <home_jg> I do wonder how much call there is for notifications?
 989 2014-07-28 16:48:38 <home_jg> Many people seem to do the half-a-node thing.
 990 2014-07-28 16:49:02 <home_jg> ie. you already have a notification socket, if you simply connect to port 8333
 991 2014-07-28 16:49:19 ConvivialMatt has quit (Quit: ConvivialMatt)
 992 2014-07-28 16:49:42 <home_jg> also, related, notification interface in general does not tell you much if anything about a reorg
 993 2014-07-28 16:50:05 <home_jg> every user of the interface must include code to divine the existence of a reorg
 994 2014-07-28 16:50:23 <gmaxwell> home_jg: well, it's used to trigger things like listsinceblock.
 995 2014-07-28 16:50:26 <jcorgan> so we can define and add an event topic
 996 2014-07-28 16:51:09 justanot1eruser is now known as justanotheruser
 997 2014-07-28 16:51:24 dparrish has quit (Ping timeout: 240 seconds)
 998 2014-07-28 16:51:37 <jcorgan> but if i rework the PR to deal with the dependency handling, can we get this "simplest thing that could possibly work" merged before we design ourselves into something that won't happen for a long time?
 999 2014-07-28 16:52:24 <home_jg> jcorgan, sure
1000 2014-07-28 16:52:28 dparrish has joined
1001 2014-07-28 16:52:59 <home_jg> I think the main change I want right now (which need not block the 0mq PR) is specifically to turn this into a signal,
1002 2014-07-28 16:53:12 <home_jg>             std::string strCmd = GetArg("-blocknotify", "");
1003 2014-07-28 16:53:12 <home_jg>             if (!strCmd.empty()) {
1004 2014-07-28 16:53:12 <home_jg>                 boost::replace_all(strCmd, "%s", hashNewTip.GetHex());
1005 2014-07-28 16:53:12 <home_jg>                 boost::thread t(runCommand, strCmd); // thread runs free
1006 2014-07-28 16:53:35 <home_jg> and get that out of main.cpp
1007 2014-07-28 16:54:30 <home_jg> hmmmmmmm
1008 2014-07-28 16:54:41 <jcorgan> with the zmq port, you just connect and subscribe to the "BLK" topic, and get them sent to you
1009 2014-07-28 16:54:42 <home_jg> 0mq v4 has a new wire level protocol to go along with the crypto.
1010 2014-07-28 16:54:56 <home_jg> promising
1011 2014-07-28 16:55:00 <wumpus> jcorgan: just go on with this, we're talking about the future not now
1012 2014-07-28 16:55:08 <jcorgan> thanks :)
1013 2014-07-28 16:55:09 maraoz has quit (Ping timeout: 256 seconds)
1014 2014-07-28 16:55:11 <wumpus> home_jg: yep, based on curvecp afaik
1015 2014-07-28 16:55:22 <wumpus> home_jg: agree on replacing that with a signal
1016 2014-07-28 16:55:43 maraoz has joined
1017 2014-07-28 16:55:49 <gmaxwell> "oh god, another cryptographic protocol to review ... otoh, thank god its not TLS"
1018 2014-07-28 16:55:59 Blackreign has joined
1019 2014-07-28 16:56:07 richcollins has joined
1020 2014-07-28 16:57:08 <wumpus> home_jg: and yes - better notification on reorgs would be great
1021 2014-07-28 16:57:21 <wumpus> with zmq it's easy to add topics
1022 2014-07-28 16:57:41 <gmaxwell> jcorgan: will you be checking in a simple python example listener too?
1023 2014-07-28 16:57:55 <wumpus> gmaxwell: yes, he has one in contrib/...
1024 2014-07-28 16:58:28 <home_jg> The main issue there is trying to figure out the best data to return, in the event of a reorg.   I like the idea of providing "connect" and "disconnect" stats, ie. return the number of blocks disconnected + connected since last -blocknotify.
1025 2014-07-28 16:58:34 <gmaxwell> Is there a way for something that has RPC access to find out where the ZMQ port is?
1026 2014-07-28 16:58:43 <jcorgan> no, good idea
1027 2014-07-28 16:58:46 jMyles has joined
1028 2014-07-28 16:59:01 dabura667 has joined
1029 2014-07-28 16:59:16 <gmaxwell> (I'm thinking of what the bitcoind-ncurses tool would want)
1030 2014-07-28 16:59:44 <home_jg> or return the number of block hashes "impacted" since last -blocknotify, thereby returning the block hashes from the last branchpoint, for both weak and strong chains
1031 2014-07-28 17:00:09 banghouse has joined
1032 2014-07-28 17:00:19 <wumpus> home_jg: new head hash/height, and hash/height of highest block shared between old and new states
1033 2014-07-28 17:00:36 kmels has joined
1034 2014-07-28 17:00:36 dparrish has quit (Ping timeout: 240 seconds)
1035 2014-07-28 17:01:08 <home_jg> hmm, I suppose returning the block header versus just the block hash would give you reorg detection too
1036 2014-07-28 17:01:29 stalled has joined
1037 2014-07-28 17:01:33 dparrish has joined
1038 2014-07-28 17:01:34 <home_jg> hmm, you'll have that anyway, if you query the block after getting the hash.  might just save one RTT.
1039 2014-07-28 17:02:57 OneMiner has joined
1040 2014-07-28 17:03:00 <home_jg> jcorgan, +1 re discovering zmq port.  please don't add it to "getinfo" kitchen sink though.  I think there is a "getnetworkinfo" or somesuch.
1041 2014-07-28 17:03:17 <jcorgan> just let me know what you want
1042 2014-07-28 17:05:07 <gmaxwell> We should probably add a comment to getinfo source to recommend people avoid adding things there.
1043 2014-07-28 17:05:48 <jcorgan> btw, the zmq endpoint specifier is actually a URL like string, e.g., tcp://127.0.0.1:28322, and doesn't need to be a TCP port, but could also be an IPC transport or "in process shared memory" transport.  So I'll just return the string as is in the RPC call.
1044 2014-07-28 17:06:18 <gmaxwell> jcorgan: yea, ZMQ "url" sounds right to me.
1045 2014-07-28 17:06:53 <jcorgan> -zmqpub=FOO => return "FOO" in RPC
1046 2014-07-28 17:07:55 super3 has quit (Ping timeout: 255 seconds)
1047 2014-07-28 17:07:55 <wumpus> jcorgan: just use the opaque identifier that zmq uses
1048 2014-07-28 17:08:03 <jcorgan> right
1049 2014-07-28 17:08:46 <wumpus> gmaxwell: yes, getinfo is locked
1050 2014-07-28 17:09:24 <wumpus> at this point until unspecified future it exists just for backwards compatiblity
1051 2014-07-28 17:11:43 ThomasV has joined
1052 2014-07-28 17:11:48 <wumpus> adding it to getnetworkinfo is OK with me
1053 2014-07-28 17:12:36 <wumpus> although it is stretching 'network' a bit far, I don't know where to add it otherwise, it's really meta-information about notifications
1054 2014-07-28 17:12:38 <user_asdasd> anyone not busy able to msg me, need some help with upgrading a btc clone wallet to 9.2. prolbably a simple question to some
1055 2014-07-28 17:13:21 <wumpus> user_asdasd: we don't support altcoins here
1056 2014-07-28 17:13:22 <gmaxwell> wumpus: or just "getzmqurl" no need to batch it in with other things.
1057 2014-07-28 17:13:28 <wumpus> gmaxwell: +1
1058 2014-07-28 17:13:34 drizztbsd has quit (Remote host closed the connection)
1059 2014-07-28 17:13:37 <wumpus> gmaxwell: that may be best
1060 2014-07-28 17:14:04 randy-waterhouse has joined
1061 2014-07-28 17:14:39 kermit has quit (Ping timeout: 264 seconds)
1062 2014-07-28 17:14:50 <jcorgan> ACK
1063 2014-07-28 17:16:30 maraoz has quit (Ping timeout: 250 seconds)
1064 2014-07-28 17:17:30 hearn has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
1065 2014-07-28 17:17:34 YoY has quit (Ping timeout: 240 seconds)
1066 2014-07-28 17:18:37 atgreen has joined
1067 2014-07-28 17:18:54 Gyps has quit (Quit: Gyps)
1068 2014-07-28 17:20:18 rdymac has quit (Read error: Connection reset by peer)
1069 2014-07-28 17:21:14 YoY has joined
1070 2014-07-28 17:21:59 pen has quit (Ping timeout: 255 seconds)
1071 2014-07-28 17:22:27 pen has joined
1072 2014-07-28 17:23:00 dparrish has quit (Ping timeout: 250 seconds)
1073 2014-07-28 17:23:49 Chief_Panda has joined
1074 2014-07-28 17:24:16 dparrish has joined
1075 2014-07-28 17:25:45 ionstorm has quit (Ping timeout: 272 seconds)
1076 2014-07-28 17:26:38 rdymac has joined
1077 2014-07-28 17:31:19 maraoz has joined
1078 2014-07-28 17:31:52 akstunt600 has quit (Read error: Connection reset by peer)
1079 2014-07-28 17:32:43 akstunt600 has joined
1080 2014-07-28 17:34:53 freggles has quit (Remote host closed the connection)
1081 2014-07-28 17:35:08 brson has joined
1082 2014-07-28 17:35:14 brson has quit (Client Quit)
1083 2014-07-28 17:35:21 brson has joined
1084 2014-07-28 17:36:00 Tiraspol has quit (Ping timeout: 250 seconds)
1085 2014-07-28 17:36:39 Gyps has joined
1086 2014-07-28 17:36:49 Tiraspol has joined
1087 2014-07-28 17:36:50 YoY has quit (Ping timeout: 255 seconds)
1088 2014-07-28 17:38:14 YoY has joined
1089 2014-07-28 17:42:11 Gyps has quit (Quit: Gyps)
1090 2014-07-28 17:43:51 coinheavy has joined
1091 2014-07-28 17:46:24 AlienProject has quit (Ping timeout: 250 seconds)
1092 2014-07-28 17:47:52 super3 has joined
1093 2014-07-28 17:48:17 Gyps has joined
1094 2014-07-28 17:51:05 Chief_Panda has quit (Quit: Leaving)
1095 2014-07-28 17:51:51 Application has quit (Remote host closed the connection)
1096 2014-07-28 17:52:32 lclc has quit (Quit: Konversation terminated!)
1097 2014-07-28 17:53:10 beachandbytes has quit (Quit: Leaving)
1098 2014-07-28 17:55:08 ryan`c is now known as ryan-c
1099 2014-07-28 17:55:37 delll has joined
1100 2014-07-28 17:56:38 jgarzik has joined
1101 2014-07-28 17:56:38 jgarzik has quit (Changing host)
1102 2014-07-28 17:56:38 jgarzik has joined
1103 2014-07-28 17:57:40 shieye has joined
1104 2014-07-28 17:58:08 chax has quit (Remote host closed the connection)
1105 2014-07-28 17:59:32 Guest37940 has left ("http://quassel-irc.org - Chat comfortably. Anywhere.")
1106 2014-07-28 17:59:53 chax_ has joined
1107 2014-07-28 18:00:43 dabura667 has quit (Quit: Leaving)
1108 2014-07-28 18:02:52 YoY has quit (Ping timeout: 250 seconds)
1109 2014-07-28 18:04:56 maaku has joined
1110 2014-07-28 18:05:38 Starduster_ has joined
1111 2014-07-28 18:06:00 YoY has joined
1112 2014-07-28 18:06:03 agricocb has quit (Read error: Connection reset by peer)
1113 2014-07-28 18:06:11 LooseLarry has joined
1114 2014-07-28 18:06:23 <LooseLarry> hi- is there a way to programmatically remove a public key from a wallet ?
1115 2014-07-28 18:06:27 <LooseLarry> I have too many
1116 2014-07-28 18:06:30 agricocb has joined
1117 2014-07-28 18:06:39 <LooseLarry> I use 'getnewaddress'  to create them programmatically
1118 2014-07-28 18:07:12 <midnightmagic> LooseLarry: #bitcoin is probably a better place to ask about that
1119 2014-07-28 18:07:16 freggles has joined
1120 2014-07-28 18:07:24 <LooseLarry> oh ? ok, I figured 'dev'
1121 2014-07-28 18:07:32 <LooseLarry> since it's a wallet communication RPC issue
1122 2014-07-28 18:07:55 <jgarzik> wumpus, sipa: should uiInterface be used for -blocknotify boost signal?
1123 2014-07-28 18:08:00 * jgarzik guesses "no"
1124 2014-07-28 18:08:33 <sipa> i think uiInterface should turn into whatever will get used for blocknotify :)
1125 2014-07-28 18:08:49 <jgarzik> ok
1126 2014-07-28 18:08:52 <jgarzik> a generic signal bus
1127 2014-07-28 18:08:52 Starduster has quit (Ping timeout: 260 seconds)
1128 2014-07-28 18:09:05 <sipa> net has something like what i mean already
1129 2014-07-28 18:09:21 <jgarzik> yeah, saw that
1130 2014-07-28 18:09:44 <sipa> CNodeSignals
1131 2014-07-28 18:09:53 <sipa> so right now, main really acts as a client to net, which is nice
1132 2014-07-28 18:10:10 <sipa> uiInterface/notify stuff should become clients of an interface exposed by main, i guess
1133 2014-07-28 18:10:21 <jgarzik> sipa, nod.  that was really the genesis of my question.  we have uiinterface and net in separate universes
1134 2014-07-28 18:10:31 <jgarzik> sipa, do I create a third universe, or add to an existing one
1135 2014-07-28 18:10:48 <sipa> i guess add one
1136 2014-07-28 18:10:57 <sipa> and then perhaps convert uiInterface's things to use that one too
1137 2014-07-28 18:11:39 <jgarzik> it feels more like uiInterface
1138 2014-07-28 18:11:53 <jgarzik> as uiInterface feels like "listen for program-wide notifications"
1139 2014-07-28 18:12:11 <jgarzik> so add to uiInterface, then rename uiInterface to remove the "ui" :)
1140 2014-07-28 18:12:17 * jgarzik ponders
1141 2014-07-28 18:12:48 <sipa> ok, just add stuff to uiInterface for now then :)
1142 2014-07-28 18:12:51 <sipa> and then later convert it
1143 2014-07-28 18:13:27 super3 has quit (Ping timeout: 264 seconds)
1144 2014-07-28 18:15:52 mr_burdell has quit (Read error: Connection reset by peer)
1145 2014-07-28 18:16:40 davispuh has joined
1146 2014-07-28 18:16:59 <wumpus> ACK on renaming uiinterface
1147 2014-07-28 18:17:14 BigBitz has joined
1148 2014-07-28 18:18:17 <wumpus> it would be nicer/more localized to have the signals on an object, like with the wallet, but these notifications are global so using uiInterface is fine
1149 2014-07-28 18:19:55 <jcorgan> having autotools PTSD.  that is all.
1150 2014-07-28 18:20:02 <wumpus> we already have a NotifyBlocksChanged on uiInterface
1151 2014-07-28 18:20:27 <wumpus> jcorgan: heh, I always get into fights with autotools too
1152 2014-07-28 18:20:49 <wumpus> luckily we have cfields for that now :)
1153 2014-07-28 18:21:07 <sipa> you have fights with cfields now instead? :p
1154 2014-07-28 18:21:08 <cfields> eh?
1155 2014-07-28 18:21:09 <sipa> *ducks*
1156 2014-07-28 18:21:55 <cfields> somebody wants a fight? i'm always up for those :)
1157 2014-07-28 18:21:58 <wumpus> lol
1158 2014-07-28 18:22:19 <gmaxwell> "no one understands cfields, not even his authors" "whenever there are problems with cfields you just poke at him until it works, and don't worry too much about what you actually changed"
1159 2014-07-28 18:22:29 mr_burdell has joined
1160 2014-07-28 18:22:38 <sipa> we should upgrade to c++fields
1161 2014-07-28 18:23:21 gavinandresen has quit (Quit: gavinandresen)
1162 2014-07-28 18:23:27 richcollins has quit (Quit: richcollins)
1163 2014-07-28 18:23:35 Gyps has quit (Quit: Gyps)
1164 2014-07-28 18:23:37 <cfields> heh, my world is a hellish one that makes no sense. why would you want to come play in it?
1165 2014-07-28 18:23:59 <jgarzik> wumpus, NotifyBlocksChanged is insufficient
1166 2014-07-28 18:24:03 <jgarzik> (and, I noted, unused!)
1167 2014-07-28 18:24:12 <wumpus> jgarzik: why? it's invoked in the same place
1168 2014-07-28 18:24:19 <jgarzik> wumpus, no, different conditions
1169 2014-07-28 18:24:35 <sipa> just make it NotifyNewBestBlock(uint256) or (CBlockIndex*)
1170 2014-07-28 18:24:43 <wumpus> jgarzik: sure, you could put i t within the !fInitialBlockDownload
1171 2014-07-28 18:24:43 <jgarzik> sipa, yes, already done
1172 2014-07-28 18:25:01 <wumpus> jgarzik: the reason it's unused is that it was invoked with too high a frequency during initial sync
1173 2014-07-28 18:25:04 sacrelege has quit (Quit: Leaving)
1174 2014-07-28 18:25:15 <jgarzik> yes
1175 2014-07-28 18:25:15 akstunt600 has quit (Read error: Connection reset by peer)
1176 2014-07-28 18:26:04 <wumpus> it clogged the qt event queue, I suppose the same would happen with zmq :)
1177 2014-07-28 18:26:13 delll has quit (Ping timeout: 255 seconds)
1178 2014-07-28 18:26:16 akstunt600 has joined
1179 2014-07-28 18:27:07 maraoz has quit (Ping timeout: 255 seconds)
1180 2014-07-28 18:27:42 Sauvin has quit (Read error: Connection reset by peer)
1181 2014-07-28 18:27:54 <wumpus> with a fork per event it would be even more fun
1182 2014-07-28 18:28:00 non2a is now known as non2
1183 2014-07-28 18:28:06 <sipa> instant forkbomb
1184 2014-07-28 18:28:12 <wumpus> heh
1185 2014-07-28 18:30:09 Detritus has joined
1186 2014-07-28 18:30:11 haskoiner has quit (Quit: haskoiner)
1187 2014-07-28 18:30:34 Detritus has left ()
1188 2014-07-28 18:31:35 daybyter has joined
1189 2014-07-28 18:32:51 xenog has quit (Ping timeout: 245 seconds)
1190 2014-07-28 18:33:51 BigBitz has quit (Ping timeout: 260 seconds)
1191 2014-07-28 18:34:12 Gyps has joined
1192 2014-07-28 18:36:24 Gyps has quit (Client Quit)
1193 2014-07-28 18:36:40 <jcorgan> wumpus:  i'd like to go back to using --disable-zmq instead of --with-zmq.  The latter is has a more complicated syntax that allows you to specify where the library is located, but with zmq it's all handled with pkgconfig anyway.  the autotools foo for --with is very fragile.
1194 2014-07-28 18:36:49 user_asdasd has left ("Leaving")
1195 2014-07-28 18:37:11 * jgarzik prefers --enable for same reason
1196 2014-07-28 18:37:25 chax_ has quit (Remote host closed the connection)
1197 2014-07-28 18:38:00 chax has joined
1198 2014-07-28 18:38:10 Chief_Panda has joined
1199 2014-07-28 18:38:54 MoALTz has joined
1200 2014-07-28 18:39:34 YoY has quit (Ping timeout: 240 seconds)
1201 2014-07-28 18:39:56 <jcorgan> i'll go with --disable-zmq for now and get the rest of the work done, and we can revisit later
1202 2014-07-28 18:41:02 Application has joined
1203 2014-07-28 18:41:58 phoenixz has joined
1204 2014-07-28 18:42:10 YoY has joined
1205 2014-07-28 18:42:32 chax has quit (Ping timeout: 255 seconds)
1206 2014-07-28 18:43:36 chax has joined
1207 2014-07-28 18:46:55 <wumpus> jcorgan: I disagree but don't want to bikeshed over this
1208 2014-07-28 18:47:52 realazthat has joined
1209 2014-07-28 18:48:01 <wumpus> jcorgan: so just do that if it's easier...
1210 2014-07-28 18:49:07 LooseLarry has quit (Ping timeout: 245 seconds)
1211 2014-07-28 18:49:15 GM0127 has joined
1212 2014-07-28 18:49:26 <wumpus> we're completely inconsistent in that regard anyway, --with-gui, --with-cli is weird
1213 2014-07-28 18:50:08 <wumpus> *that* should have been enable
1214 2014-07-28 18:53:29 chax has quit (Remote host closed the connection)
1215 2014-07-28 18:53:55 chax has joined
1216 2014-07-28 18:54:13 CheckDavid has joined
1217 2014-07-28 18:54:40 <cfields> jcorgan: nit before you get any deeper: please differentiate between the case where the headers/libs aren't available, and when support isn't configured in
1218 2014-07-28 18:54:47 dims_ has joined
1219 2014-07-28 18:55:19 <cfields> oh, looks like i missed part of this conversation already
1220 2014-07-28 18:55:31 <jcorgan> right
1221 2014-07-28 18:55:58 shieye has quit (Quit: WeeChat 0.4.3)
1222 2014-07-28 18:56:07 <cfields> always compile it if support exists. optionally enable/disable at runtime. add a configure switch to disable entirely
1223 2014-07-28 18:56:36 <wumpus> cfields: we were that far already :)
1224 2014-07-28 18:56:53 <cfields> hehe, i see that now
1225 2014-07-28 18:57:10 <cfields> jcorgan: also, watch your link order. I believe as-is it will break with static libs
1226 2014-07-28 18:57:32 <jcorgan> hmm, could use your help on that, but let me get through this first
1227 2014-07-28 18:57:33 YoY has quit (Ping timeout: 256 seconds)
1228 2014-07-28 18:57:37 kermit has joined
1229 2014-07-28 18:57:46 <wumpus> 2014-07-28 18:51:41 receive version message: /Perone:0.0.1/: version 60002, blocks=0, us=0.0.0.0:8333, peer=7016
1230 2014-07-28 18:57:46 <wumpus> 2014-07-28 18:51:43 ProcessMessages(None, 0 bytes) : CHECKSUM ERROR nChecksum=e2e0f65d hdr.nChecksum=00000000
1231 2014-07-28 18:57:51 <cfields> jcorgan: sure, it's easy though. just be sure to stick any on-system libs after any in-tree libs
1232 2014-07-28 18:57:55 <wumpus> lol, someone is using my node for testing
1233 2014-07-28 18:58:17 Trix has joined
1234 2014-07-28 18:58:41 chax has quit (Ping timeout: 256 seconds)
1235 2014-07-28 19:00:40 YoY has joined
1236 2014-07-28 19:01:27 trixisowned has quit (Ping timeout: 264 seconds)
1237 2014-07-28 19:01:38 <cfields> any other osx builders around these days? or still just gavin?
1238 2014-07-28 19:02:52 <wumpus> fyi the code to compute the checksum is here: https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L4242 , which gets the first four bytes of the SHA256 result of the message
1239 2014-07-28 19:03:01 haskoiner has joined
1240 2014-07-28 19:03:41 jgarzik has quit (Ping timeout: 255 seconds)
1241 2014-07-28 19:04:03 <randy-waterhouse> cfields: would you like some more osx test builders?
1242 2014-07-28 19:04:21 <kazcw> wumpus: perone is a branch of protocoin, and it has proper msg checksums implemented. I was just reading its source yesterday since it's a candidate for the weird tor node
1243 2014-07-28 19:04:34 davispuh is now known as _Peacekeeper
1244 2014-07-28 19:04:42 _Peacekeeper is now known as davispuh
1245 2014-07-28 19:05:23 <cfields> randy-waterhouse: the automated process is working and can easily be tested via bots, but it can be used for manual dev hacking as well. So I'm curious to see if it works for other osx devs
1246 2014-07-28 19:05:52 <randy-waterhouse> ok
1247 2014-07-28 19:06:26 <cfields> randy-waterhouse: you dev on osx?
1248 2014-07-28 19:06:34 <randy-waterhouse> can do
1249 2014-07-28 19:07:01 <cfields> well if you feel like giving it a go, sure, it'd be helpful
1250 2014-07-28 19:07:05 <randy-waterhouse> *nixes too
1251 2014-07-28 19:07:49 <cfields> (i'm referring to the new depends system here, the usual build process doesn't apply)
1252 2014-07-28 19:08:16 <randy-waterhouse> ok, i'm autotools dev btw
1253 2014-07-28 19:09:11 <cfields> ah, great. mind hopping over to #bitcoin-build when you have a chance to take it for a spin?
1254 2014-07-28 19:09:25 <randy-waterhouse> can do
1255 2014-07-28 19:10:18 <randy-waterhouse> who's branch ?
1256 2014-07-28 19:12:16 maraoz has joined
1257 2014-07-28 19:14:15 W0rmDr1nk has joined
1258 2014-07-28 19:14:46 <helo> (never heard of the guy)
1259 2014-07-28 19:15:19 xenog has joined
1260 2014-07-28 19:15:22 xenog has quit (Client Quit)
1261 2014-07-28 19:15:40 cris has quit (Ping timeout: 250 seconds)
1262 2014-07-28 19:16:01 xenog has joined
1263 2014-07-28 19:16:24 askuck has joined
1264 2014-07-28 19:16:25 W0rmDr1nk has quit (Remote host closed the connection)
1265 2014-07-28 19:17:04 [7] has quit (Disconnected by services)
1266 2014-07-28 19:17:17 TheSeven has joined
1267 2014-07-28 19:17:21 home_jg is now known as jgarzik
1268 2014-07-28 19:17:30 jgarzik has quit (Changing host)
1269 2014-07-28 19:17:30 jgarzik has joined
1270 2014-07-28 19:18:11 copumpkin has quit (Ping timeout: 260 seconds)
1271 2014-07-28 19:18:32 akstunt600 has quit (Read error: Connection reset by peer)
1272 2014-07-28 19:18:44 ionstorm has joined
1273 2014-07-28 19:19:21 akstunt600 has joined
1274 2014-07-28 19:20:32 derbumi has joined
1275 2014-07-28 19:21:48 W0rmDr1nk has joined
1276 2014-07-28 19:22:27 LooseLarry has joined
1277 2014-07-28 19:28:20 YoY has quit (Ping timeout: 250 seconds)
1278 2014-07-28 19:30:30 Sleepnbum has quit ()
1279 2014-07-28 19:30:51 YoY has joined
1280 2014-07-28 19:31:58 rdymac has quit (Excess Flood)
1281 2014-07-28 19:33:40 Aido has quit (Quit: leaving)
1282 2014-07-28 19:34:04 Aido has joined
1283 2014-07-28 19:34:48 hearn has joined
1284 2014-07-28 19:35:38 rdymac has joined
1285 2014-07-28 19:38:50 dparrish has quit (Remote host closed the connection)
1286 2014-07-28 19:39:12 kermit has quit (Quit: Leaving.)
1287 2014-07-28 19:39:35 neozaru has quit (Remote host closed the connection)
1288 2014-07-28 19:41:30 derbumi has quit (Quit: derbumi)
1289 2014-07-28 19:42:48 neozaru has joined
1290 2014-07-28 19:45:59 Zarutian has quit (Ping timeout: 255 seconds)
1291 2014-07-28 19:47:46 phoenixz has quit (Ping timeout: 245 seconds)
1292 2014-07-28 19:48:21 hmsimha has joined
1293 2014-07-28 19:48:34 blubberbop has joined
1294 2014-07-28 19:50:25 neozaru has quit (Remote host closed the connection)
1295 2014-07-28 19:50:59 neozaru has joined
1296 2014-07-28 19:52:16 Zarutian has joined
1297 2014-07-28 19:53:14 Emzy has joined
1298 2014-07-28 19:57:41 cagedwisdom has joined
1299 2014-07-28 19:58:10 ThomasV has quit (Remote host closed the connection)
1300 2014-07-28 20:02:06 OneMiner has quit (Quit: Leaving)
1301 2014-07-28 20:02:53 OneFixt has quit (Remote host closed the connection)
1302 2014-07-28 20:03:18 OneFixt has joined
1303 2014-07-28 20:04:22 GM0127 has quit (Quit: Leaving)
1304 2014-07-28 20:06:38 non2_ has joined
1305 2014-07-28 20:10:10 non2 has quit (Ping timeout: 255 seconds)
1306 2014-07-28 20:10:11 Zarutian has quit (Quit: Zarutian)
1307 2014-07-28 20:10:22 kermit has joined
1308 2014-07-28 20:11:50 akstunt600 has quit (Read error: Connection reset by peer)
1309 2014-07-28 20:12:51 akstunt600 has joined
1310 2014-07-28 20:15:14 richcollins has joined
1311 2014-07-28 20:15:57 cagedwisdom has quit (Remote host closed the connection)
1312 2014-07-28 20:16:02 dparrish has joined
1313 2014-07-28 20:16:28 sirk3901 has quit (Quit: Leaving.)
1314 2014-07-28 20:17:19 cagedwisdom has joined
1315 2014-07-28 20:18:17 Jasmin68k has quit (Quit: Leaving.)
1316 2014-07-28 20:18:30 Jasmin68k has joined
1317 2014-07-28 20:19:06 Jasmin68k has quit (Client Quit)
1318 2014-07-28 20:19:15 asana has joined
1319 2014-07-28 20:19:50 Jasmin68k has joined
1320 2014-07-28 20:20:27 xenog has quit (Ping timeout: 240 seconds)
1321 2014-07-28 20:20:46 <maraoz> does anyone have an example of a tx containing SIGHASH_SINGLE?
1322 2014-07-28 20:22:17 <maraoz> found it!
1323 2014-07-28 20:22:42 <maraoz> (https://github.com/bitcoin/bitcoin/blob/master/src/test/data/tx_valid.json#L53)
1324 2014-07-28 20:24:08 LooseLarry has quit (Ping timeout: 250 seconds)
1325 2014-07-28 20:24:14 xenog has joined
1326 2014-07-28 20:25:57 dparrish has quit (Ping timeout: 256 seconds)
1327 2014-07-28 20:26:15 dparrish has joined
1328 2014-07-28 20:27:37 Sleepnbum has joined
1329 2014-07-28 20:29:20 ArthurNumbanumba has quit (Ping timeout: 250 seconds)
1330 2014-07-28 20:31:22 scosant has joined
1331 2014-07-28 20:32:24 AlienProject has joined
1332 2014-07-28 20:42:08 ArthurNumbanumba has joined
1333 2014-07-28 20:50:35 Chief_Panda has left ("Leaving")
1334 2014-07-28 20:53:34 ThomasV has joined
1335 2014-07-28 20:55:25 dparrish has quit (Ping timeout: 256 seconds)
1336 2014-07-28 20:55:34 dparrish has joined
1337 2014-07-28 20:56:10 neozaru has quit (Remote host closed the connection)
1338 2014-07-28 21:01:00 kermit has quit (Quit: Leaving.)
1339 2014-07-28 21:01:24 kermit has joined
1340 2014-07-28 21:02:24 SpicyShibe has quit (Read error: Connection reset by peer)
1341 2014-07-28 21:02:49 ionstorm has quit (Ping timeout: 255 seconds)
1342 2014-07-28 21:06:12 AaronvanW has quit (Ping timeout: 245 seconds)
1343 2014-07-28 21:09:10 adlai has quit (Remote host closed the connection)
1344 2014-07-28 21:09:46 adlai has joined
1345 2014-07-28 21:11:14 Qatz has joined
1346 2014-07-28 21:12:24 Jasmin68k has quit (Quit: Leaving.)
1347 2014-07-28 21:14:56 mappum has quit (Ping timeout: 250 seconds)
1348 2014-07-28 21:18:26 LooseLarry has joined
1349 2014-07-28 21:18:44 TheSeven has quit (Ping timeout: 250 seconds)
1350 2014-07-28 21:20:20 Qatz is now known as SpicyShibe
1351 2014-07-28 21:20:27 TheSeven has joined
1352 2014-07-28 21:20:44 benrcole has joined
1353 2014-07-28 21:21:58 W0rmDr1nk has quit (Quit: Leaving)
1354 2014-07-28 21:22:58 Hans-Martin has joined
1355 2014-07-28 21:23:02 daybyter has quit (Quit: Konversation terminated!)
1356 2014-07-28 21:23:39 asana has quit (Ping timeout: 264 seconds)
1357 2014-07-28 21:28:04 <K1773R> mike hearn seems to like censorship, just leaving this here to think about it http://www.reddit.com/r/Bitcoin/comments/2byqz0/mike_hearn_proposes_to_build_vulnerable/
1358 2014-07-28 21:28:23 <K1773R> sad to see this, you are disappointment
1359 2014-07-28 21:30:08 W0rmDr1nk has joined
1360 2014-07-28 21:30:40 sabfer has quit (Remote host closed the connection)
1361 2014-07-28 21:31:07 RazielZ has joined
1362 2014-07-28 21:31:25 <hearn> K1773R: i never claimed to be an anarchist. so if you thought that, sorry to disappoint, but not much i can do about it
1363 2014-07-28 21:32:22 sabfer has joined
1364 2014-07-28 21:33:03 <K1773R> its not about anarchism, its about proposing something that destroys the whole idea behind the project
1365 2014-07-28 21:33:15 Raziel has quit (Ping timeout: 264 seconds)
1366 2014-07-28 21:33:19 RazielZ is now known as Raziel
1367 2014-07-28 21:33:40 <K1773R> just dont do the same wrt bitcoin and this shouldnt be a big issue
1368 2014-07-28 21:33:48 <sipa> #bitcoin please
1369 2014-07-28 21:34:35 ThomasV has quit (Remote host closed the connection)
1370 2014-07-28 21:36:43 sabfer has quit (Remote host closed the connection)
1371 2014-07-28 21:37:06 Namworld has joined
1372 2014-07-28 21:38:51 W0rmDr1nk has quit (Quit: Leaving)
1373 2014-07-28 21:41:13 jps has joined
1374 2014-07-28 21:42:47 tombtc has quit (Quit: Wychodzi)
1375 2014-07-28 21:42:49 hearn has quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
1376 2014-07-28 21:45:20 chax has joined
1377 2014-07-28 21:46:22 agricocb has quit (Quit: Leaving.)
1378 2014-07-28 21:47:59 ThomasV has joined
1379 2014-07-28 21:48:27 kmels has quit (Ping timeout: 260 seconds)
1380 2014-07-28 21:49:22 SpicyShibe has quit (Read error: Connection reset by peer)
1381 2014-07-28 21:52:00 coinheavy has quit (Quit: coinheavy)
1382 2014-07-28 21:52:12 Hans-Martin has quit (Remote host closed the connection)
1383 2014-07-28 21:52:31 coinheavy has joined
1384 2014-07-28 21:53:05 benrcole has quit (Quit: Leaving.)
1385 2014-07-28 21:54:15 Qatz has joined
1386 2014-07-28 21:55:57 blubberbop has quit (Ping timeout: 240 seconds)
1387 2014-07-28 21:56:42 Qatz is now known as SpicyShibe
1388 2014-07-28 21:58:31 akstunt600 has quit (Read error: Connection reset by peer)
1389 2014-07-28 21:59:31 <sipa> ;;nethash
1390 2014-07-28 21:59:32 <gribble> 134309731.399
1391 2014-07-28 21:59:32 akstunt600 has joined
1392 2014-07-28 21:59:48 <sipa> ;;calc (2**80 - 2**79.936155) / 10**6 / 86400 / [nethash]
1393 2014-07-28 21:59:49 <gribble> 4509.79281648
1394 2014-07-28 21:59:56 <sipa> ;;calc (2**80 - 2**79.936155) / 10**9 / 86400 / [nethash]
1395 2014-07-28 21:59:57 <gribble> 4.50979281648
1396 2014-07-28 21:59:59 banghouse has quit (Remote host closed the connection)
1397 2014-07-28 22:07:34 agricocb has joined
1398 2014-07-28 22:10:03 _flow_ has quit (Ping timeout: 244 seconds)
1399 2014-07-28 22:10:19 <jcorgan> cfields: ping
1400 2014-07-28 22:11:18 <samson_> In the bitcoind wiki entry under the section titled 'Theory of Operation' it says "The multithreaded aspect leads to some complexity and the use of certain code patterns to deal with concurrency that may be unfamiliar to many programmers."
1401 2014-07-28 22:11:28 <samson_> What 'code patterns' are used, does anyone have more information on this please ? I've looked but can't find any.
1402 2014-07-28 22:11:30 imagegami1 has joined
1403 2014-07-28 22:12:09 <samson_> I'm looking for information on the thread concurrency aspects of the system
1404 2014-07-28 22:12:28 imagegami has quit (Ping timeout: 250 seconds)
1405 2014-07-28 22:12:29 <sipa> heh, there isn't all that much multithreading in bitcoind
1406 2014-07-28 22:12:41 <cfields> jcorgan: pong
1407 2014-07-28 22:12:44 <sipa> networking is done in a separate thread from message handling
1408 2014-07-28 22:13:00 <samson_> Yes, that's what I thought - mainly networking, any idea what these patterns are ?
1409 2014-07-28 22:13:01 <sipa> with several locks on nodes, network in/out buffers, and core datastructures
1410 2014-07-28 22:13:11 <jcorgan> cfields: i'm done with everything else for the zmq branch, would like to understand your linking comments earlier
1411 2014-07-28 22:13:16 __nskelsey__ has left ()
1412 2014-07-28 22:13:41 <sipa> samson_: just the use of mutexes i guess (i have never seen that piece of the wiki)
1413 2014-07-28 22:13:55 <sipa> and some other synchronization mechanisms
1414 2014-07-28 22:13:56 <cfields> jcorgan: i'll give it a quick build on the tester i'm working on. does it merge with master cleanly?
1415 2014-07-28 22:14:21 <jcorgan> let me push what i've done then, hold on.  yes, i just rebased it on master.
1416 2014-07-28 22:14:22 <samson_> ok thanks
1417 2014-07-28 22:14:29 <cfields> ok
1418 2014-07-28 22:14:40 <jcorgan> ok, done
1419 2014-07-28 22:14:54 _flow_ has joined
1420 2014-07-28 22:15:31 banghouse has joined
1421 2014-07-28 22:15:55 <gmaxwell> samson_: ask this person, https://en.bitcoin.it/w/index.php?title=Bitcoind&diff=next&oldid=15426  ::shrugs::
1422 2014-07-28 22:16:00 <gmaxwell> I'd never seen that page before.
1423 2014-07-28 22:16:17 <gmaxwell> There isn't anything especially clever or unusual wrt conncurrency in bitcoind.
1424 2014-07-28 22:16:38 cym has joined
1425 2014-07-28 22:17:45 benrcole has joined
1426 2014-07-28 22:17:45 <samson_> ok thanks - I also thought this but thought I'd double check with you guys just in case
1427 2014-07-28 22:18:15 sabfer has joined
1428 2014-07-28 22:18:17 pen has quit (Ping timeout: 245 seconds)
1429 2014-07-28 22:18:55 kermit has quit (Quit: Leaving.)
1430 2014-07-28 22:19:21 Transisto has quit ()
1431 2014-07-28 22:19:49 meLon has joined
1432 2014-07-28 22:20:16 meLon has quit (Client Quit)
1433 2014-07-28 22:20:26 <cfields> jcorgan: https://travis-ci.org/theuni/bitcoin/builds/31088951
1434 2014-07-28 22:20:54 kermit has joined
1435 2014-07-28 22:21:27 <jcorgan> what am i looking for
1436 2014-07-28 22:21:29 <cfields> jcorgan: caching isn't in place yet, so builds take ~40min. That tests the the same build configs we use for release, so it'll yell if static linking is busted
1437 2014-07-28 22:21:47 <cfields> oh wait, do i need to --enable something?
1438 2014-07-28 22:21:51 <cfields> heh, and add a lib?
1439 2014-07-28 22:21:53 <cfields> crap.
1440 2014-07-28 22:21:54 <jcorgan> no, that was a recent change
1441 2014-07-28 22:22:12 <jcorgan> it will just warn that zmq was not found, and disable the feature
1442 2014-07-28 22:22:29 <cfields> ok, give me a few min to add it as a dep
1443 2014-07-28 22:22:33 <cfields> i suppose it's linux only?
1444 2014-07-28 22:22:42 Emzy has quit (Quit: Textual IRC Client: www.textualapp.com)
1445 2014-07-28 22:22:59 <jcorgan> um, no, i haven't ever done it, but it zmq is on windows afaik
1446 2014-07-28 22:23:28 <jcorgan> but that way lies madness
1447 2014-07-28 22:23:50 dsnrk has joined
1448 2014-07-28 22:24:27 <jcorgan> you can leave #22 running as it will test the situation where someone doesn't have zmq installed
1449 2014-07-28 22:24:32 agath_pd is now known as agath
1450 2014-07-28 22:26:01 <dsnrk> other than the one on webbtc.com, are there any tools that I can run locally which let you debug a bitcoin script outside of the daemon?
1451 2014-07-28 22:27:48 Gyps has joined
1452 2014-07-28 22:29:29 toffoo has joined
1453 2014-07-28 22:30:13 askuck has quit (Quit: Leaving.)
1454 2014-07-28 22:31:16 Subo1977_ has quit (Remote host closed the connection)
1455 2014-07-28 22:34:21 Transisto has joined
1456 2014-07-28 22:34:44 Subo1977 has joined
1457 2014-07-28 22:34:46 hanti is now known as HANTI
1458 2014-07-28 22:36:02 richcollins has quit (Quit: richcollins)
1459 2014-07-28 22:37:34 sabfer has quit (Quit: Leaving...)
1460 2014-07-28 22:38:23 <cfields> jcorgan: https://travis-ci.org/theuni/bitcoin/builds/31090122
1461 2014-07-28 22:38:32 <cfields> installed for linux only
1462 2014-07-28 22:39:38 ThomasV has quit (Quit: Quitte)
1463 2014-07-28 22:42:23 <jcorgan> thanks
1464 2014-07-28 22:42:49 mr_burdell has quit (Ping timeout: 250 seconds)
1465 2014-07-28 22:43:20 viajero has joined
1466 2014-07-28 22:44:49 HaltingState has joined
1467 2014-07-28 22:51:50 akstunt600 has quit (Read error: Connection reset by peer)
1468 2014-07-28 22:52:36 akstunt600 has joined
1469 2014-07-28 22:55:24 mE\Ta has quit (Ping timeout: 260 seconds)
1470 2014-07-28 23:00:01 Hasimir has quit (Ping timeout: 264 seconds)
1471 2014-07-28 23:01:37 chax has quit (Ping timeout: 245 seconds)
1472 2014-07-28 23:01:47 Hasimir has joined
1473 2014-07-28 23:04:30 Liquid_ has joined
1474 2014-07-28 23:04:52 Liquid_ is now known as Guest27044
1475 2014-07-28 23:06:51 Raziel has quit (Ping timeout: 264 seconds)
1476 2014-07-28 23:08:55 Blackreign has quit ()
1477 2014-07-28 23:10:17 xenog has quit (Ping timeout: 256 seconds)
1478 2014-07-28 23:10:33 chax has joined
1479 2014-07-28 23:11:58 maraoz has quit (Ping timeout: 255 seconds)
1480 2014-07-28 23:13:42 Gyps has quit (Quit: Gyps)
1481 2014-07-28 23:16:16 belcher_ has quit (Read error: Connection reset by peer)
1482 2014-07-28 23:17:55 DougieBot5000 has quit (Quit: Leaving)
1483 2014-07-28 23:25:10 Chief_Panda has joined
1484 2014-07-28 23:28:38 belcher has joined
1485 2014-07-28 23:30:40 wallet42 has joined
1486 2014-07-28 23:31:19 JackH has quit (Quit: JackH)
1487 2014-07-28 23:32:20 benrcole has quit (Quit: Leaving.)
1488 2014-07-28 23:32:24 <cfields> jcorgan: grr, zeromq's build is busted. I've pushed a work-around
1489 2014-07-28 23:32:33 <cfields> jcorgan: do you have any ties with upstream?
1490 2014-07-28 23:38:13 HaltingState has quit (Read error: Connection reset by peer)
1491 2014-07-28 23:39:39 one_zero has joined
1492 2014-07-28 23:41:54 <jcorgan> cfields: nope
1493 2014-07-28 23:42:17 <jcorgan> what broke?
1494 2014-07-28 23:42:33 Vinnie_win has joined
1495 2014-07-28 23:43:00 <cfields> curve_keygen.c needs to be renamed to curve_keygen.cpp
1496 2014-07-28 23:43:42 <cfields> libtool tags it as CC, builds it with CC rather than CXX, the std libs don't get linked in, and the linker pitches a fit
1497 2014-07-28 23:44:00 <jcorgan> you can try zmq3 instead of 4
1498 2014-07-28 23:44:03 banghouse has quit (Remote host closed the connection)
1499 2014-07-28 23:44:20 <sipa> zmq does key generation? :o
1500 2014-07-28 23:45:11 <jcorgan> 2.x is ultrastable, 3.x is the "current" release, and 4.x is all the new fancy stuff
1501 2014-07-28 23:45:12 akstunt600 has quit (Read error: Connection reset by peer)
1502 2014-07-28 23:45:50 <cfields> i just skipped the test/utils builds
1503 2014-07-28 23:46:10 <cfields> (this is exactly why configure needs to have --with-tests --with-keygen, etc,  btw)
1504 2014-07-28 23:46:11 akstunt600 has joined
1505 2014-07-28 23:46:35 * cfields nudges jgarzik
1506 2014-07-28 23:48:03 one_zero has quit ()
1507 2014-07-28 23:48:21 one_zero has joined
1508 2014-07-28 23:51:08 copumpkin has joined
1509 2014-07-28 23:53:27 killakem has quit (Ping timeout: 240 seconds)
1510 2014-07-28 23:54:10 Hobdont134 has joined
1511 2014-07-28 23:57:19 YoY has quit (Ping timeout: 256 seconds)
1512 2014-07-28 23:57:39 asana has joined
1513 2014-07-28 23:58:20 Eiii has joined
1514 2014-07-28 23:58:20 Eiii has quit (Changing host)
1515 2014-07-28 23:58:20 Eiii has joined
1516 2014-07-28 23:58:38 YoY has joined
1517 2014-07-28 23:59:45 banghouse has joined
1518 2014-07-28 23:59:49 chax has quit (Remote host closed the connection)