1 2013-08-21 00:00:05 <petertodd> beats me
   2 2013-08-21 00:01:27 <gmaxwell> okay, looking at the code I think 'full' is perhaps misleading ther.
   3 2013-08-21 00:02:06 <sipa> i figure it means full (filtered) blocks, rather than just headers
   4 2013-08-21 00:02:16 <sipa> having passed the birthday of the wallet
   5 2013-08-21 00:02:20 <petertodd> seems to definitely be a 0.8.4 issue - just compiled 0.8.3 and it immediately works
   6 2013-08-21 00:02:24 <petertodd> same machine
   7 2013-08-21 00:03:07 <gmaxwell> sipa: yep.
   8 2013-08-21 00:03:10 <sipa> bah
   9 2013-08-21 00:03:22 <gmaxwell> this is why we test.
  10 2013-08-21 00:04:46 <CodeShark> gmaxwell: you mean software doesn't usually just work perfectly the first time you build it?
  11 2013-08-21 00:05:00 <petertodd> CodeShark: that only happens with haskell, and solder
  12 2013-08-21 00:05:03 <gmaxwell> petertodd: good thing you seem to have a reliable repro... I suppose you can just start backing out patches?
  13 2013-08-21 00:05:31 <petertodd> gmaxwell: just about to try it minus your bloom one
  14 2013-08-21 00:07:56 <CodeShark> gmaxwell: not familiar with solder - are you talking about PCBs?
  15 2013-08-21 00:07:57 <petertodd> ok, so the issue is the bloom patch
  16 2013-08-21 00:08:02 <petertodd> CodeShark: yup :)
  17 2013-08-21 00:08:47 <CodeShark> soldering is more analogous to compiling/linking than to writing code
  18 2013-08-21 00:09:18 bmcgee has joined
  19 2013-08-21 00:09:45 <gmaxwell> petertodd: do at least give it another try too.
  20 2013-08-21 00:09:57 bmcgee has quit (Client Quit)
  21 2013-08-21 00:10:01 <CodeShark> before soldering presumably you have built working prototypes on breadboards
  22 2013-08-21 00:10:46 <petertodd> gmaxwell: working on it
  23 2013-08-21 00:11:56 mattco has quit (Ping timeout: 252 seconds)
  24 2013-08-21 00:12:02 <gmaxwell> CodeShark: solder works the first time because you just define the product as working. :P
  25 2013-08-21 00:13:12 wamatt has quit (Quit: wamatt)
  26 2013-08-21 00:13:37 <gmaxwell> hm.
  27 2013-08-21 00:13:49 <gmaxwell> great.
  28 2013-08-21 00:15:00 <petertodd> oh, I see it, I think filterclear ends up with the filter in the full state...
  29 2013-08-21 00:15:16 <petertodd> due to: CBloomFilter() : isFull(true) {}
  30 2013-08-21 00:15:48 dparrish has quit (Ping timeout: 264 seconds)
  31 2013-08-21 00:16:00 dparrish has joined
  32 2013-08-21 00:16:08 <petertodd> well, specifically pfrom->pfilter = new CBloomFilter();, which winds up setting isFull
  33 2013-08-21 00:18:34 macboz has joined
  34 2013-08-21 00:19:46 <gmaxwell> petertodd: does it call filterclear and then start using the filter again?
  35 2013-08-21 00:20:43 jtimon has quit (Ping timeout: 245 seconds)
  36 2013-08-21 00:26:40 one_zero has quit (Ping timeout: 246 seconds)
  37 2013-08-21 00:27:00 <jgarzik> hrm.  As expected, pubkey order in a P2SH-bound script is set in stone at addmultisig time
  38 2013-08-21 00:27:24 hsmiths has quit (Quit: Nettalk6 - www.ntalk.de)
  39 2013-08-21 00:27:26 <jgarzik> (meaning all parties must addmultisig the pubkeys in same order, to get same scripthash)
  40 2013-08-21 00:28:07 * jgarzik had hoped there was a sort() or something, to make that a bit less sensitive to ordering input variance
  41 2013-08-21 00:29:51 <gavinandresen> jgarzik: there is not on the principle that there might be a use-case for needing a particular order
  42 2013-08-21 00:29:56 hsmiths has joined
  43 2013-08-21 00:30:18 <CodeShark> the ordering makes the check of keys linear rather than O(n^2)
  44 2013-08-21 00:30:25 <gavinandresen> … if you want it sorted, you can sort yourself...
  45 2013-08-21 00:30:46 <jgarzik> indeed
  46 2013-08-21 00:30:59 <gavinandresen> CodeShark: ?  the low level signature checking is O(N), because signatures must match order of the keys
  47 2013-08-21 00:31:16 toffoo has joined
  48 2013-08-21 00:31:21 <CodeShark> isn't that what I just said?
  49 2013-08-21 00:31:30 * jgarzik must add multisig and P2SH support to node-libcoin (i.e. a modern version of bitcoinjs-server)
  50 2013-08-21 00:31:34 <gavinandresen> CodeShark: sorry, thought you were saying opposite
  51 2013-08-21 00:31:50 <jgarzik> in order to support such in txtool (a tool that helps you pass around multi-party transactions for signing)
  52 2013-08-21 00:32:35 <jgarzik> bitcoinjs-server (the node.js version of bitcoinjs-lib. confused yet?) was quite creaky and ancient.  Nothing put pubkeyhash transactions, basically.
  53 2013-08-21 00:32:37 <CodeShark> adding a cannonical sorting to all pubkeys might have been a good idea if for no other reason than ruling out permutations
  54 2013-08-21 00:33:10 <CodeShark> that's to say, rejecting any transaction where the order isn't correct
  55 2013-08-21 00:34:11 <CodeShark> a 4 pubkey multisig can have up to 24 different p2sh addresses
  56 2013-08-21 00:34:45 <jgarzik> I am thinking that sorting is needed in my tools, at least, to reduce human error.
  57 2013-08-21 00:35:34 <gavinandresen> CodeShark: meh.  With one key you get … three? … addresses  (regular, P2SH, and 1-of-1 multisig P2SH)
  58 2013-08-21 00:35:57 <CodeShark> gavinandresen: don't forget pay-to-pubkey :)
  59 2013-08-21 00:36:11 <gavinandresen> mmm.  Can't express that as an address, though
  60 2013-08-21 00:36:50 <gavinandresen> oh-- yeah, 4 (p2sh pay to pubkey and p2sh pay-to-hash)
  61 2013-08-21 00:37:12 <sipa> pay to compressed pubkey and to uncompressed pubkey!
  62 2013-08-21 00:37:15 <CodeShark> the script is ugly - but that's for another day :p
  63 2013-08-21 00:37:17 <gavinandresen> sigh
  64 2013-08-21 00:37:34 <sipa> oh and hybrid pubkey while we're at it
  65 2013-08-21 00:37:39 <gavinandresen> shudder
  66 2013-08-21 00:37:51 <jgarzik> My main issue is that txtool will be used "around the office" by people to approve multisig transactions, and occasionally figure out where to send multisig payments (generating a p2sh address).  Need to make it hard for bitcoin-ignorant CPA to screw up, IOW.  :)
  67 2013-08-21 00:37:58 <gavinandresen> haven't we banned hybrid pubkeys yet?
  68 2013-08-21 00:38:11 <sipa> gavinandresen: they're not relayed
  69 2013-08-21 00:38:29 <sipa> same as non-DER signatures
  70 2013-08-21 00:38:35 <CodeShark> jgarzik: I've actually been working on a protocol for sharing partially constructed and partially signed transactions and negotiating signatures
  71 2013-08-21 00:38:53 <CodeShark> sounds very similar to what you're doing :)
  72 2013-08-21 00:40:18 <gavinandresen> gmaxwell petertodd : let me know when you figure out if the bloom patch is broken or not.
  73 2013-08-21 00:40:28 <petertodd> gavinandresen: broken, but we've since fixed it
  74 2013-08-21 00:40:34 greyyy has quit (Ping timeout: 250 seconds)
  75 2013-08-21 00:40:46 <gmaxwell> Sorry about the rc1 misfire, it was my mistake.
  76 2013-08-21 00:41:23 <gavinandresen> no worries, we all screw up
  77 2013-08-21 00:41:25 wamatt has joined
  78 2013-08-21 00:41:37 <jgarzik> CodeShark, heh, outside of BIP 10, we've just been thinking in terms of human networking ("hey, sign this bitcoin transaction <pgp signature>")
  79 2013-08-21 00:41:47 <gavinandresen> … trick is to not all screw up at the same time....
  80 2013-08-21 00:42:02 <jgarzik> the trick is to not break mainnet
  81 2013-08-21 00:42:27 <sipa> while driving 88 mph
  82 2013-08-21 00:42:32 <gavinandresen> on two wheels
  83 2013-08-21 00:42:47 * jgarzik -> baby bedtime
  84 2013-08-21 00:42:49 yubrew_ has joined
  85 2013-08-21 00:42:53 <petertodd> sipa: mind slowing down a fraction? oil's leaking out of the engine I'm working on again
  86 2013-08-21 00:43:13 <petertodd> gavinandresen: oh, and shift to the other two wheels in a minute so I can change them
  87 2013-08-21 00:43:13 BTCOxygen has quit (Ping timeout: 256 seconds)
  88 2013-08-21 00:43:20 one_zero has joined
  89 2013-08-21 00:44:24 <gmaxwell> petertodd: this match what you're testing? https://github.com/bitcoin/bitcoin/pull/2919
  90 2013-08-21 00:44:55 <petertodd> gmaxwell: did you try compiling that?
  91 2013-08-21 00:45:18 <gmaxwell> why would I do that? :P
  92 2013-08-21 00:45:37 <petertodd> gmaxwell: well, I guess technically it would break gitian...
  93 2013-08-21 00:45:38 <gmaxwell> I'd break my run of awesome screwups.
  94 2013-08-21 00:45:41 agnostic98 has quit (Remote host closed the connection)
  95 2013-08-21 00:46:29 <petertodd> Hang on, one more issue...
  96 2013-08-21 00:46:49 <gmaxwell> petertodd: I have no clue what you're talking about.
  97 2013-08-21 00:46:51 * gmaxwell whistles.
  98 2013-08-21 00:47:08 <petertodd> oh, wait, no my screw up
  99 2013-08-21 00:47:16 <sipa> now it's my turn
 100 2013-08-21 00:47:28 * gmaxwell guesses he should try compiling it sooner or later.
 101 2013-08-21 00:48:36 <sipa> ever read http://r6.ca/blog/20120708T122219Z.html?
 102 2013-08-21 00:48:50 Diablo-D3 has quit (Quit: This computer has gone to sleep)
 103 2013-08-21 00:50:03 ericmuyser has quit (Remote host closed the connection)
 104 2013-08-21 00:51:13 <gmaxwell> I've certantly written code which I just pattern matched and didn't really understand. It's surprisingly easy to do that when you use induction to write a recursive function for something.
 105 2013-08-21 00:51:38 <gmaxwell> "here are the trivial edge cases it can be in" "oh. program runs"
 106 2013-08-21 00:52:06 Administrator has joined
 107 2013-08-21 00:52:06 Administrator has quit (Client Quit)
 108 2013-08-21 00:52:21 <gmaxwell> thats even more powerful in haskell, I guess.
 109 2013-08-21 00:52:43 arcbot-7713_ has joined
 110 2013-08-21 00:55:15 paracyst has joined
 111 2013-08-21 00:56:36 BTCOxygen has joined
 112 2013-08-21 00:57:17 Diablo-D3 has joined
 113 2013-08-21 01:00:59 jevin has quit (Quit: Textual IRC Client: www.textualapp.com)
 114 2013-08-21 01:01:24 awishformore has quit (Read error: Connection reset by peer)
 115 2013-08-21 01:01:42 btsec has quit (Ping timeout: 268 seconds)
 116 2013-08-21 01:04:58 digitalmagus2 has quit (Ping timeout: 264 seconds)
 117 2013-08-21 01:05:00 msvb-lab has quit (Ping timeout: 264 seconds)
 118 2013-08-21 01:06:22 <petertodd> ok, my android wallet finished syncing, and everything looks ok
 119 2013-08-21 01:07:38 <gmaxwell> I'm syncing a multibit wallet here, though with bitcoin in valgrind it only goes at about 20 blocks/sec.
 120 2013-08-21 01:07:48 <petertodd> lol
 121 2013-08-21 01:09:57 <gavinandresen> how do you tell multibit to sync from your local bitcoind?
 122 2013-08-21 01:12:01 btcbtc has quit (Quit: btcbtc)
 123 2013-08-21 01:12:48 jevin has joined
 124 2013-08-21 01:15:40 AusBitBank has joined
 125 2013-08-21 01:17:00 yubrew has quit (Ping timeout: 264 seconds)
 126 2013-08-21 01:19:30 mattco has joined
 127 2013-08-21 01:20:26 PRab has joined
 128 2013-08-21 01:21:38 Eiii has quit (Read error: Connection reset by peer)
 129 2013-08-21 01:21:38 msvb-lab has joined
 130 2013-08-21 01:22:54 <gmaxwell> add peers=127.0.0.1
 131 2013-08-21 01:22:59 <gmaxwell> to multibit.properties
 132 2013-08-21 01:23:07 <gmaxwell> (thats like a connect=)
 133 2013-08-21 01:24:09 <gavinandresen> gmaxwell: cool.  (now I just have to figure out where multibit.properties lives on OSX...)
 134 2013-08-21 01:25:18 <sipa> all you need is a cisco router and port forward for 8333 :p
 135 2013-08-21 01:25:35 <gmaxwell> hahaha
 136 2013-08-21 01:25:56 <gmaxwell> gavinandresen: did you see that the other day? someone's upnp router routed all his outbound :8333 back to his node. :)
 137 2013-08-21 01:26:14 <sipa> so he'd see his connection count go suddenly to 2, and back to 0
 138 2013-08-21 01:26:45 <CodeShark> gavinandresen: try ~/Library/Application Support/MultiBit
 139 2013-08-21 01:26:56 <Diablo-D3> gmaxwell: wtf?
 140 2013-08-21 01:27:01 <gavinandresen> CodeShark: mmm, just found https://github.com/jim618/multibit/issues/37
 141 2013-08-21 01:27:56 normanrichards has quit (Quit: normanrichards)
 142 2013-08-21 01:36:41 ll has quit (Ping timeout: 240 seconds)
 143 2013-08-21 01:48:13 <gavinandresen> gmaxwell: I'm importing a key with a small bitcoin balance into my multibit wallet, sync looks OK (my bitcoind is sending merkleblocks)...
 144 2013-08-21 01:48:56 ll has joined
 145 2013-08-21 01:52:15 normanrichards has joined
 146 2013-08-21 01:54:55 TheLordOfTime has quit (Write error: Connection reset by peer)
 147 2013-08-21 01:55:45 mattco has quit (Ping timeout: 256 seconds)
 148 2013-08-21 01:59:54 mattco has joined
 149 2013-08-21 01:59:56 ielo has quit (Ping timeout: 264 seconds)
 150 2013-08-21 02:01:23 stephantual has joined
 151 2013-08-21 02:04:08 stephantua has quit (Ping timeout: 240 seconds)
 152 2013-08-21 02:05:15 Goonie_ has joined
 153 2013-08-21 02:05:28 nsillik has quit (Quit: nsillik)
 154 2013-08-21 02:06:32 Goonie has quit (Ping timeout: 256 seconds)
 155 2013-08-21 02:08:00 chorao has quit (Ping timeout: 264 seconds)
 156 2013-08-21 02:09:05 mattco has quit (Ping timeout: 252 seconds)
 157 2013-08-21 02:12:07 sacrelege has quit (Ping timeout: 248 seconds)
 158 2013-08-21 02:13:40 hnz_ has joined
 159 2013-08-21 02:15:33 hnz has quit (Ping timeout: 260 seconds)
 160 2013-08-21 02:16:08 mappum has quit (Ping timeout: 245 seconds)
 161 2013-08-21 02:16:53 chorao has joined
 162 2013-08-21 02:19:56 mappum has joined
 163 2013-08-21 02:23:24 sserrano44 has quit (Quit: Computer has gone to sleep.)
 164 2013-08-21 02:25:41 mattco has joined
 165 2013-08-21 02:28:13 chorao has quit (Ping timeout: 245 seconds)
 166 2013-08-21 02:28:37 Applicat_ has quit (Ping timeout: 260 seconds)
 167 2013-08-21 02:29:13 chorao has joined
 168 2013-08-21 02:30:00 <warren> crap.  Multibit doesn't have coin control...
 169 2013-08-21 02:30:19 mattco has quit (Ping timeout: 256 seconds)
 170 2013-08-21 02:31:50 sserrano44 has joined
 171 2013-08-21 02:34:49 <gavinandresen> warren: it has multiple wallet support, which is better than coin control imho
 172 2013-08-21 02:35:17 <gavinandresen> warren: I deleted the 0.8.4rc1 tag, will tag rc2 soon
 173 2013-08-21 02:35:19 TheLordOfTime has joined
 174 2013-08-21 02:37:16 Subo1977_ has joined
 175 2013-08-21 02:39:00 johnsoft has quit (Read error: Connection reset by peer)
 176 2013-08-21 02:40:27 Subo1977 has quit (Ping timeout: 240 seconds)
 177 2013-08-21 02:40:43 <warren> gavinandresen: setting up live demos for the talk in 1.5 hours
 178 2013-08-21 02:40:46 johnsoft has joined
 179 2013-08-21 02:40:57 <warren> I guess I'll use multibit because it's fast.
 180 2013-08-21 02:41:13 <CodeShark> what are you demoing, warren?
 181 2013-08-21 02:41:38 bk128 has joined
 182 2013-08-21 02:41:40 <warren> CodeShark: explaining bitcoin, payment processors, risks and benefits, technology, regulatory environment to a bunch of local business and law people
 183 2013-08-21 02:41:57 <CodeShark> ah, good luck :)
 184 2013-08-21 02:42:08 <warren> someone willing to donate me like 0.1 BTC?  I'll use it from a new wallet to donate to wikipedia during the demo.
 185 2013-08-21 02:44:05 chorao has quit (Ping timeout: 256 seconds)
 186 2013-08-21 02:44:17 <sipa> warren: sure
 187 2013-08-21 02:44:25 <warren> sipa: 19YZ9wzsdjUwwF9aEM9cRh661G4VhVvGnc
 188 2013-08-21 02:44:30 <warren> sipa: thanks!
 189 2013-08-21 02:44:49 chorao has joined
 190 2013-08-21 02:44:49 chorao has quit (Changing host)
 191 2013-08-21 02:44:49 chorao has joined
 192 2013-08-21 02:45:56 <warren> I tried to sync the full blockchain using 0.8.x but my laptop overheats and kills itself each time =)
 193 2013-08-21 02:46:40 sacrelege has joined
 194 2013-08-21 02:48:49 <warren> hmm, does multibit not see tx's until it hits a block?
 195 2013-08-21 02:49:23 <warren> I see it on blockchain.info but not multibit.
 196 2013-08-21 02:51:46 <warren> this is worrisome, multibit still doesn't see it.
 197 2013-08-21 02:52:51 <warren> does multibit only see it after 6 confirmations?
 198 2013-08-21 02:54:13 <CodeShark> that would not make sense
 199 2013-08-21 02:54:29 <warren> yeah, first time i'm using this client, and it isn't seeing the tx that sipa just sent
 200 2013-08-21 02:54:40 <warren> I rather not demo using blockchain.info (would encourage its use)
 201 2013-08-21 02:54:46 chorao has quit (Ping timeout: 264 seconds)
 202 2013-08-21 02:54:54 <CodeShark> why not just use Bitcoin-Qt?
 203 2013-08-21 02:55:07 <warren> I have trouble syncing the blockchain without laptop overheating =)
 204 2013-08-21 02:55:10 chorao has joined
 205 2013-08-21 02:55:19 <lianj> warren: youre on osx? don't show this ugly multibit ui i see on the screenshots
 206 2013-08-21 02:55:29 <warren> lianj: linux
 207 2013-08-21 02:55:51 <CodeShark> warren: sync it on another machine and then just copy over the datadir
 208 2013-08-21 02:56:00 <warren> there's no time before the demo ...
 209 2013-08-21 02:56:28 <warren> ok, I had to resync the chain with multibit and now it see's sipa's tx
 210 2013-08-21 02:56:37 <warren> hopefully it works when I demo using a payment processor
 211 2013-08-21 02:57:12 bitnumus has quit (Ping timeout: 264 seconds)
 212 2013-08-21 02:57:38 <warren> heading out
 213 2013-08-21 02:57:50 <CodeShark> have fun :)
 214 2013-08-21 02:58:31 bitnumus has joined
 215 2013-08-21 02:58:32 bitnumus is now known as Guest74220
 216 2013-08-21 03:00:38 bk128 has quit (Quit: bk128)
 217 2013-08-21 03:02:04 c0rw1n has joined
 218 2013-08-21 03:03:25 btcbtc has joined
 219 2013-08-21 03:04:10 agath has quit (Ping timeout: 246 seconds)
 220 2013-08-21 03:04:24 agath has joined
 221 2013-08-21 03:04:42 Application has joined
 222 2013-08-21 03:05:34 Applicat_ has joined
 223 2013-08-21 03:08:24 Eiii has joined
 224 2013-08-21 03:09:04 Application has quit (Ping timeout: 246 seconds)
 225 2013-08-21 03:12:22 naituida has joined
 226 2013-08-21 03:14:03 justusranvier has quit (Remote host closed the connection)
 227 2013-08-21 03:16:29 justusranvier has joined
 228 2013-08-21 03:16:40 <gavinandresen>  * [new tag]         v0.8.4rc2 -> v0.8.4rc2   … I'm firing up my gitian builds
 229 2013-08-21 03:16:48 chorao has quit (Ping timeout: 256 seconds)
 230 2013-08-21 03:17:07 robocoin_ is now known as robocoin
 231 2013-08-21 03:17:18 chorao has joined
 232 2013-08-21 03:18:18 freewil has quit (Ping timeout: 276 seconds)
 233 2013-08-21 03:19:17 TheSeven has quit (Disconnected by services)
 234 2013-08-21 03:19:26 [7] has joined
 235 2013-08-21 03:19:51 bk128 has joined
 236 2013-08-21 03:21:39 bk128 has quit (Client Quit)
 237 2013-08-21 03:29:06 naituida has quit (Quit: Page closed)
 238 2013-08-21 03:29:43 mappum has quit (Ping timeout: 246 seconds)
 239 2013-08-21 03:31:06 CobaltBlueD has quit (Remote host closed the connection)
 240 2013-08-21 03:32:19 CobaltBlueD has joined
 241 2013-08-21 03:35:00 vigilyn has quit (Read error: Connection reset by peer)
 242 2013-08-21 03:35:14 vigilyn has joined
 243 2013-08-21 03:41:08 <CobaltBlueD> ugh  WHy would AMU Mh/s not directly correlate to U/m over an extended period of time?
 244 2013-08-21 03:49:10 bk128 has joined
 245 2013-08-21 03:53:41 Krellan_ has quit (Remote host closed the connection)
 246 2013-08-21 03:54:12 chorao has quit (Ping timeout: 264 seconds)
 247 2013-08-21 03:55:02 chorao has joined
 248 2013-08-21 03:55:26 eoss has joined
 249 2013-08-21 03:55:27 eoss has quit (Changing host)
 250 2013-08-21 03:55:27 eoss has joined
 251 2013-08-21 03:56:43 chorao has quit (Client Quit)
 252 2013-08-21 03:59:21 bk128 has quit (Quit: bk128)
 253 2013-08-21 04:05:50 saivann has quit ()
 254 2013-08-21 04:07:16 <warren> well, I hope multibit works
 255 2013-08-21 04:07:18 <warren> presenting soon
 256 2013-08-21 04:08:43 <Cusipzzz> whatever you do, don't youtube 'presentation disasters' :)
 257 2013-08-21 04:10:02 DaQatz has quit (Remote host closed the connection)
 258 2013-08-21 04:15:30 oleganza_ has joined
 259 2013-08-21 04:17:30 PrimeStunna has joined
 260 2013-08-21 04:17:30 mrkent has joined
 261 2013-08-21 04:17:30 mrkent has quit (Changing host)
 262 2013-08-21 04:17:30 mrkent has joined
 263 2013-08-21 04:22:05 viperhr1 has quit (Read error: No route to host)
 264 2013-08-21 04:22:38 qbasicer has quit (Read error: Connection reset by peer)
 265 2013-08-21 04:22:44 viperhr1 has joined
 266 2013-08-21 04:24:14 sacrelege has quit (Ping timeout: 256 seconds)
 267 2013-08-21 04:24:38 <warren> Hey, someone know where is that explaination of how the repeated random number allows you to find k?
 268 2013-08-21 04:24:40 <warren> need URL
 269 2013-08-21 04:24:59 CanaryInTheMine has quit (Quit: Page closed)
 270 2013-08-21 04:25:58 noobdev has joined
 271 2013-08-21 04:26:39 agricocb has quit (Ping timeout: 256 seconds)
 272 2013-08-21 04:26:51 mappum has joined
 273 2013-08-21 04:27:11 <Cusipzzz> http://www.nilsschneider.net/2013/01/28/recovering-bitcoin-private-keys.html  ?
 274 2013-08-21 04:27:35 c0rw1n has quit (Remote host closed the connection)
 275 2013-08-21 04:29:00 <BlueMatt> Cusipzzz: "This transaction was generated by a hardware bitcoin wallet"
 276 2013-08-21 04:29:37 <Cusipzzz> oh, looking for the android one?
 277 2013-08-21 04:29:56 <BlueMatt> I was just saying that link wasnt about anything people are using in production
 278 2013-08-21 04:30:57 K1773R has quit (Read error: Operation timed out)
 279 2013-08-21 04:31:49 <Cusipzzz> that was the one that woke me up to the potential issue if your randomness sucks
 280 2013-08-21 04:32:23 <BlueMatt> my randomness?
 281 2013-08-21 04:32:33 <Cusipzzz> anyone's*
 282 2013-08-21 04:32:50 setkeh has quit (Quit: Play Nice i Can Still see you)
 283 2013-08-21 04:32:55 <BlueMatt> well, ok, yes
 284 2013-08-21 04:33:03 <BlueMatt> and android's...
 285 2013-08-21 04:33:30 random_cat has quit (Remote host closed the connection)
 286 2013-08-21 04:34:23 setkeh has joined
 287 2013-08-21 04:34:41 random_cat has joined
 288 2013-08-21 04:39:43 K1773R has joined
 289 2013-08-21 04:40:30 DaQatz has joined
 290 2013-08-21 04:42:46 agricocb has joined
 291 2013-08-21 04:52:37 sserrano44 has quit (Quit: Computer has gone to sleep.)
 292 2013-08-21 04:52:46 MobPhone has joined
 293 2013-08-21 04:53:23 chorao has joined
 294 2013-08-21 04:56:14 stephantual has quit (Quit: Zzzzz..zzzzz)
 295 2013-08-21 04:56:45 stephantual has joined
 296 2013-08-21 04:57:37 agricocb has quit (Remote host closed the connection)
 297 2013-08-21 04:58:15 agricocb has joined
 298 2013-08-21 04:59:23 PrimeStunna_ has joined
 299 2013-08-21 05:02:20 PrimeStunna has quit (Ping timeout: 264 seconds)
 300 2013-08-21 05:02:21 PrimeStunna_ is now known as PrimeStunna
 301 2013-08-21 05:14:15 moarrr has joined
 302 2013-08-21 05:14:48 normanrichards has quit (Quit: normanrichards)
 303 2013-08-21 05:16:10 chorao has quit (Ping timeout: 260 seconds)
 304 2013-08-21 05:19:41 stephantual has quit (Quit: Zzzzz..zzzzz)
 305 2013-08-21 05:20:10 <phantomcircuit> lol
 306 2013-08-21 05:20:30 <phantomcircuit> initial block download on windows 8 is slower than on debian in a vm on windows 8
 307 2013-08-21 05:20:33 <phantomcircuit> how is that even possible
 308 2013-08-21 05:20:41 stephantual has joined
 309 2013-08-21 05:22:00 <weex> sounds like a rhetorical question
 310 2013-08-21 05:24:21 <phantomcircuit> weex, im actually seriously interested in how that's possible
 311 2013-08-21 05:24:26 <phantomcircuit> but i suspect i wont ever know
 312 2013-08-21 05:26:39 stephantual has quit (Quit: Zzzzz..zzzzz)
 313 2013-08-21 05:33:01 Coincidental has quit (Remote host closed the connection)
 314 2013-08-21 05:33:38 malaimo has quit (Ping timeout: 245 seconds)
 315 2013-08-21 05:35:46 sserrano44 has joined
 316 2013-08-21 05:35:46 malaimo has joined
 317 2013-08-21 05:39:18 Coincidental has joined
 318 2013-08-21 05:46:08 <CodeShark> thread contention issues/priorities?
 319 2013-08-21 05:46:51 <CodeShark> less efficient context switching?
 320 2013-08-21 05:47:39 <CodeShark> less efficient implementations of core libraries?
 321 2013-08-21 05:47:59 melvster has joined
 322 2013-08-21 05:50:37 BTCOxygen has joined
 323 2013-08-21 05:50:37 BTCOxygen is now known as Guest92401
 324 2013-08-21 05:50:37 Guest92401 has quit (Killed (hobana.freenode.net (Nickname regained by services)))
 325 2013-08-21 05:50:37 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 326 2013-08-21 05:54:27 random_cat has quit (Ping timeout: 240 seconds)
 327 2013-08-21 05:56:06 paracyst has quit ()
 328 2013-08-21 05:57:01 sserrano44 has quit (Quit: Computer has gone to sleep.)
 329 2013-08-21 05:57:39 random_cat has joined
 330 2013-08-21 05:57:41 sserrano44 has joined
 331 2013-08-21 06:03:59 sserrano44 has quit (Quit: Textual IRC Client: www.textualapp.com)
 332 2013-08-21 06:05:37 sserrano44 has joined
 333 2013-08-21 06:07:07 wiretapped has quit (Ping timeout: 240 seconds)
 334 2013-08-21 06:08:22 wiretapped has joined
 335 2013-08-21 06:19:26 Guest74220 has left ()
 336 2013-08-21 06:23:01 mappum has quit (Ping timeout: 264 seconds)
 337 2013-08-21 06:24:01 sserrano44 has quit (Quit: Computer has gone to sleep.)
 338 2013-08-21 06:25:42 BTCOxygen is now known as Guest30797
 339 2013-08-21 06:25:42 BTCOxygen has joined
 340 2013-08-21 06:25:42 Guest30797 has quit (Killed (adams.freenode.net (Nickname regained by services)))
 341 2013-08-21 06:25:43 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 342 2013-08-21 06:29:38 chorao has joined
 343 2013-08-21 06:29:54 warren has quit (Ping timeout: 260 seconds)
 344 2013-08-21 06:31:50 warren has joined
 345 2013-08-21 06:35:28 paybitcoin has joined
 346 2013-08-21 06:36:03 stephantual has joined
 347 2013-08-21 06:36:50 stingsay` has quit (Read error: Connection timed out)
 348 2013-08-21 06:38:01 paybitcoin1 has quit (Ping timeout: 264 seconds)
 349 2013-08-21 06:41:03 ericmuyser has joined
 350 2013-08-21 06:41:54 stingsay` has joined
 351 2013-08-21 06:42:51 noobdev has quit (Ping timeout: 250 seconds)
 352 2013-08-21 06:43:50 stephantual has quit (Quit: Zzzzz..zzzzz)
 353 2013-08-21 06:44:09 arcbot-7713_ has quit (Ping timeout: 250 seconds)
 354 2013-08-21 06:48:40 stephantual has joined
 355 2013-08-21 06:48:57 stephantual has quit (Read error: Connection reset by peer)
 356 2013-08-21 06:49:08 stephantual has joined
 357 2013-08-21 06:49:21 reneg has joined
 358 2013-08-21 06:49:31 stephantual has quit (Read error: Connection reset by peer)
 359 2013-08-21 06:50:58 stephantual has joined
 360 2013-08-21 06:55:32 sgstair has quit (Ping timeout: 256 seconds)
 361 2013-08-21 06:55:56 sgstair has joined
 362 2013-08-21 06:56:50 johnsoft has quit (Quit: Leaving.)
 363 2013-08-21 06:57:10 idstam has quit ()
 364 2013-08-21 07:00:28 abrkn\ has joined
 365 2013-08-21 07:02:51 abrkn has quit (Ping timeout: 264 seconds)
 366 2013-08-21 07:04:07 <dugo> debian downloaded from the bitcoind on host maybe?
 367 2013-08-21 07:07:21 paybitcoin1 has joined
 368 2013-08-21 07:08:56 jtimon has joined
 369 2013-08-21 07:09:08 wamatt has quit (Quit: wamatt)
 370 2013-08-21 07:09:42 paybitcoin has quit (Ping timeout: 276 seconds)
 371 2013-08-21 07:12:18 coeus has quit (Ping timeout: 276 seconds)
 372 2013-08-21 07:12:34 egis has joined
 373 2013-08-21 07:13:03 Eiii has quit ()
 374 2013-08-21 07:21:37 nethershaw has quit (Read error: Connection reset by peer)
 375 2013-08-21 07:21:41 sivu_ has left ()
 376 2013-08-21 07:21:55 sivu has joined
 377 2013-08-21 07:24:18 johnsoft has joined
 378 2013-08-21 07:26:20 BTCOxygen has quit (Ping timeout: 246 seconds)
 379 2013-08-21 07:26:59 BTCOxygen has joined
 380 2013-08-21 07:26:59 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 381 2013-08-21 07:28:37 <gavinandresen> Review of 0.8.4 release notes welcome: https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.4/test/
 382 2013-08-21 07:29:34 <gavinandresen> SHASUMS and announcement will happen after other gitian builders wake up and we make sure the builds match.
 383 2013-08-21 07:31:34 <petertodd> looks good to me
 384 2013-08-21 07:32:22 BTCOxygen is now known as Guest3056
 385 2013-08-21 07:32:22 BTCOxygen has joined
 386 2013-08-21 07:32:22 Guest3056 has quit (Killed (adams.freenode.net (Nickname regained by services)))
 387 2013-08-21 07:32:22 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 388 2013-08-21 07:33:38 Krellan_ has joined
 389 2013-08-21 07:33:44 macboz has quit (Quit: Leaving)
 390 2013-08-21 07:33:48 nethershaw has joined
 391 2013-08-21 07:35:24 macboz has joined
 392 2013-08-21 07:35:50 yubrew_ has quit (Remote host closed the connection)
 393 2013-08-21 07:36:55 macboz has quit (Client Quit)
 394 2013-08-21 07:46:23 abrkn\ has quit ()
 395 2013-08-21 07:46:59 BTCOxygen has quit (Ping timeout: 246 seconds)
 396 2013-08-21 07:48:48 BTCOxygen has joined
 397 2013-08-21 07:50:41 bmcgee has joined
 398 2013-08-21 07:53:06 toffoo has quit ()
 399 2013-08-21 07:55:25 oleganza_ has quit (Quit: oleganza_)
 400 2013-08-21 07:55:58 t7 has joined
 401 2013-08-21 07:59:31 OPrime has joined
 402 2013-08-21 08:01:30 swulf-- has joined
 403 2013-08-21 08:02:24 btcbtc has quit (Ping timeout: 256 seconds)
 404 2013-08-21 08:04:09 pecket has quit (Ping timeout: 264 seconds)
 405 2013-08-21 08:04:51 stephantual has quit (Quit: Zzzzz..zzzzz)
 406 2013-08-21 08:07:33 _ingsoc has joined
 407 2013-08-21 08:11:01 BTCOxygen has quit (Ping timeout: 264 seconds)
 408 2013-08-21 08:11:20 BTCOxygen has joined
 409 2013-08-21 08:12:18 namnatulco has joined
 410 2013-08-21 08:12:34 jchp has joined
 411 2013-08-21 08:12:50 pigeons is now known as Guest45037
 412 2013-08-21 08:12:50 MobGod has joined
 413 2013-08-21 08:13:12 Coincide_ has joined
 414 2013-08-21 08:14:13 pecket has joined
 415 2013-08-21 08:15:07 Squid_ has joined
 416 2013-08-21 08:16:01 Coincidental has quit (Ping timeout: 270 seconds)
 417 2013-08-21 08:16:40 Squidicuz has quit (Ping timeout: 274 seconds)
 418 2013-08-21 08:16:50 Guest7870 has joined
 419 2013-08-21 08:17:27 The_Fly has joined
 420 2013-08-21 08:17:28 erska has joined
 421 2013-08-21 08:17:57 ido has joined
 422 2013-08-21 08:18:03 Internet13 has joined
 423 2013-08-21 08:18:10 pierre` has joined
 424 2013-08-21 08:19:29 neofutur has joined
 425 2013-08-21 08:19:59 awishformore has joined
 426 2013-08-21 08:26:31 EmLeX has quit (Ping timeout: 248 seconds)
 427 2013-08-21 08:27:48 Apexseals has quit (Ping timeout: 245 seconds)
 428 2013-08-21 08:28:05 BlackPrapor has joined
 429 2013-08-21 08:28:37 agnostic98 has joined
 430 2013-08-21 08:28:41 Apexseals has joined
 431 2013-08-21 08:29:01 chorao has quit (Ping timeout: 264 seconds)
 432 2013-08-21 08:30:29 Namworld has quit ()
 433 2013-08-21 08:30:43 Coincide_ has quit (Remote host closed the connection)
 434 2013-08-21 08:37:45 eoss has quit (Remote host closed the connection)
 435 2013-08-21 08:38:25 stephantual has joined
 436 2013-08-21 08:41:27 Darwerft has joined
 437 2013-08-21 08:42:02 Darwerft has quit (Client Quit)
 438 2013-08-21 08:45:26 agnostic98 has quit (Read error: Connection reset by peer)
 439 2013-08-21 08:45:45 agnostic98 has joined
 440 2013-08-21 08:46:04 BTCOxygen is now known as Guest7299
 441 2013-08-21 08:46:04 BTCOxygen has joined
 442 2013-08-21 08:46:04 Guest7299 has quit (Killed (asimov.freenode.net (Nickname regained by services)))
 443 2013-08-21 08:46:04 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 444 2013-08-21 08:46:34 BlackPrapor has quit (Ping timeout: 276 seconds)
 445 2013-08-21 08:51:07 BTCOxygen has joined
 446 2013-08-21 08:51:07 BTCOxygen is now known as Guest20226
 447 2013-08-21 08:51:07 Guest20226 has quit (Killed (adams.freenode.net (Nickname regained by services)))
 448 2013-08-21 08:51:07 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 449 2013-08-21 08:52:19 <xeroc> since when does bitcoin use gitian?
 450 2013-08-21 08:53:29 <moarrr> hasnt it always?
 451 2013-08-21 08:53:38 DBordello has quit (Excess Flood)
 452 2013-08-21 08:54:05 <phantomcircuit> xeroc, for a long time now a number of people have done gitian builds
 453 2013-08-21 08:54:21 <phantomcircuit> it's important to be able to trust the binaries
 454 2013-08-21 08:54:26 DBordello has joined
 455 2013-08-21 08:54:29 <phantomcircuit> since most people dont build from source
 456 2013-08-21 08:55:47 guruvan has quit (Ping timeout: 240 seconds)
 457 2013-08-21 08:56:37 meLon has quit (Ping timeout: 264 seconds)
 458 2013-08-21 08:56:47 wiretapped has quit (Ping timeout: 240 seconds)
 459 2013-08-21 08:57:20 BGL has quit (Ping timeout: 246 seconds)
 460 2013-08-21 08:57:41 oru has quit (Ping timeout: 246 seconds)
 461 2013-08-21 08:58:18 meLon has joined
 462 2013-08-21 08:58:25 agricocb has quit (Ping timeout: 264 seconds)
 463 2013-08-21 08:58:52 wiretapped has joined
 464 2013-08-21 08:59:15 oru has joined
 465 2013-08-21 08:59:15 oru has quit (Changing host)
 466 2013-08-21 08:59:15 oru has joined
 467 2013-08-21 08:59:16 agricocb has joined
 468 2013-08-21 08:59:39 PrimeStunna has quit (Quit: PrimeStunna)
 469 2013-08-21 08:59:49 guruvan has joined
 470 2013-08-21 08:59:50 BlackPrapor has joined
 471 2013-08-21 09:00:58 c0rw1n has joined
 472 2013-08-21 09:03:38 Applicat_ has quit (Ping timeout: 245 seconds)
 473 2013-08-21 09:06:23 Application has joined
 474 2013-08-21 09:08:53 BTCOxygen has quit (Ping timeout: 246 seconds)
 475 2013-08-21 09:10:21 Thepok has joined
 476 2013-08-21 09:14:39 BTCOxygen has joined
 477 2013-08-21 09:16:02 stephantual has quit (Quit: Zzzzz..zzzzz)
 478 2013-08-21 09:16:07 fanquake has joined
 479 2013-08-21 09:17:48 mattco has joined
 480 2013-08-21 09:22:17 mattco has quit (Ping timeout: 256 seconds)
 481 2013-08-21 09:22:51 BGL has joined
 482 2013-08-21 09:24:17 Applicat_ has joined
 483 2013-08-21 09:24:34 stephantual has joined
 484 2013-08-21 09:25:09 mrkent has quit (Ping timeout: 264 seconds)
 485 2013-08-21 09:25:36 Applica__ has joined
 486 2013-08-21 09:26:08 agnostic98 has quit (Remote host closed the connection)
 487 2013-08-21 09:26:15 <xeroc> i see .. good to see :-)
 488 2013-08-21 09:26:22 <xeroc> yhea .. shure
 489 2013-08-21 09:26:34 <warren> btw, used multibit during the live demo. GAH.  I hate it.
 490 2013-08-21 09:26:51 <warren> It works, just it makes me nervous.
 491 2013-08-21 09:26:59 <xeroc> i remember a chat with some guy who claimed that btc does not use gitian .. some while ago .. maybe he was misinformed :-)
 492 2013-08-21 09:27:13 <xeroc> ^.^
 493 2013-08-21 09:27:52 Application has quit (Ping timeout: 248 seconds)
 494 2013-08-21 09:29:06 Applicat_ has quit (Ping timeout: 260 seconds)
 495 2013-08-21 09:30:42 mattco has joined
 496 2013-08-21 09:35:09 Subo1977_ has quit (Remote host closed the connection)
 497 2013-08-21 09:35:36 Subo1977 has joined
 498 2013-08-21 09:38:46 Susi_22 has joined
 499 2013-08-21 09:42:07 mattco has quit (Ping timeout: 256 seconds)
 500 2013-08-21 09:42:22 PRab_ has joined
 501 2013-08-21 09:43:11 ie6 has quit (Ping timeout: 246 seconds)
 502 2013-08-21 09:43:47 mattco has joined
 503 2013-08-21 09:44:50 stephantual has quit (Quit: Zzzzz..zzzzz)
 504 2013-08-21 09:45:10 PRab has quit (Ping timeout: 264 seconds)
 505 2013-08-21 09:46:36 Guest57898 has quit (Quit: Ex-Chat)
 506 2013-08-21 09:46:53 Guest57898 has joined
 507 2013-08-21 09:47:02 Guest57898 has quit (Read error: Connection reset by peer)
 508 2013-08-21 09:47:17 graingert has joined
 509 2013-08-21 09:48:08 mattco has quit (Ping timeout: 248 seconds)
 510 2013-08-21 09:48:13 swulf-- has quit (Ping timeout: 245 seconds)
 511 2013-08-21 09:48:38 Susi_22 has quit ()
 512 2013-08-21 09:49:35 Susi_22 has joined
 513 2013-08-21 09:54:11 Susi_22 has quit (Client Quit)
 514 2013-08-21 09:54:53 Susi_22 has joined
 515 2013-08-21 09:56:10 Susi_22 has quit (K-Lined)
 516 2013-08-21 09:56:30 mattco has joined
 517 2013-08-21 09:56:52 Goonie_ has quit (Ping timeout: 256 seconds)
 518 2013-08-21 09:58:00 Strolch has joined
 519 2013-08-21 09:59:14 ie6 has joined
 520 2013-08-21 10:01:18 mattco has quit (Ping timeout: 260 seconds)
 521 2013-08-21 10:01:47 mattco has joined
 522 2013-08-21 10:05:37 a_meteorite has quit (Ping timeout: 264 seconds)
 523 2013-08-21 10:06:23 Strolch has quit (K-Lined)
 524 2013-08-21 10:07:50 CodeShark has quit (Remote host closed the connection)
 525 2013-08-21 10:07:58 <sipa> ;;genrate 71
 526 2013-08-21 10:08:00 <gribble> The expected generation output, at 71.0 Mhps, given difficulty of 50810339.0483, is 0.000702738130377 BTC per day and 2.92807554324e-05 BTC per hour.
 527 2013-08-21 10:08:09 Strolch has joined
 528 2013-08-21 10:09:12 Strolch has quit (K-Lined)
 529 2013-08-21 10:10:38 EmLeX has joined
 530 2013-08-21 10:10:41 KINLO9911 has joined
 531 2013-08-21 10:11:07 Goonie has joined
 532 2013-08-21 10:13:07 KINLO9911 has quit (K-Lined)
 533 2013-08-21 10:16:33 Samuel_o has joined
 534 2013-08-21 10:16:56 porquilho has joined
 535 2013-08-21 10:17:47 Samuel_o has quit (K-Lined)
 536 2013-08-21 10:19:56 K87KL has joined
 537 2013-08-21 10:20:25 K87KL has quit (K-Lined)
 538 2013-08-21 10:20:31 ielo has joined
 539 2013-08-21 10:24:16 ielo has quit (Read error: Operation timed out)
 540 2013-08-21 10:25:30 stephantual has joined
 541 2013-08-21 10:27:54 ie6 has quit (Ping timeout: 260 seconds)
 542 2013-08-21 10:27:59 agnostic98 has joined
 543 2013-08-21 10:30:59 _ingsoc has quit (Quit: leaving)
 544 2013-08-21 10:31:17 danda_ has joined
 545 2013-08-21 10:32:57 agnostic98 has quit (Ping timeout: 264 seconds)
 546 2013-08-21 10:33:49 DaQatz has quit (Ping timeout: 264 seconds)
 547 2013-08-21 10:34:25 stephantual has quit (Ping timeout: 256 seconds)
 548 2013-08-21 10:35:00 danda has quit (Ping timeout: 256 seconds)
 549 2013-08-21 10:38:56 ielo has joined
 550 2013-08-21 10:40:56 ie6 has joined
 551 2013-08-21 10:41:28 c0rw1n has quit (Ping timeout: 248 seconds)
 552 2013-08-21 10:44:28 _ingsoc has joined
 553 2013-08-21 10:45:46 ielo has quit (Ping timeout: 256 seconds)
 554 2013-08-21 10:57:20 PRab_ has left ()
 555 2013-08-21 11:03:52 GordonG3kko has quit (Remote host closed the connection)
 556 2013-08-21 11:04:13 michagogo has joined
 557 2013-08-21 11:06:49 GordonG3kko has joined
 558 2013-08-21 11:12:06 egis has quit (Quit: Leaving)
 559 2013-08-21 11:18:11 one_zero has quit ()
 560 2013-08-21 11:20:38 gritball_ has quit (Read error: Connection reset by peer)
 561 2013-08-21 11:21:44 gritball has joined
 562 2013-08-21 11:28:25 agnostic98 has joined
 563 2013-08-21 11:29:49 michagogo has quit (Remote host closed the connection)
 564 2013-08-21 11:29:55 ie6 has quit (Quit: Leaving)
 565 2013-08-21 11:30:07 michagogo has joined
 566 2013-08-21 11:30:39 stephantual has joined
 567 2013-08-21 11:33:13 agnostic98 has quit (Ping timeout: 264 seconds)
 568 2013-08-21 11:33:39 Guest45037 has left ()
 569 2013-08-21 11:34:07 Jasmin68k has joined
 570 2013-08-21 11:35:11 stephantual has quit (Ping timeout: 246 seconds)
 571 2013-08-21 11:35:44 yubrew has joined
 572 2013-08-21 11:36:43 fanquake_ has joined
 573 2013-08-21 11:38:59 rdymac_ has joined
 574 2013-08-21 11:39:05 rdymac_ has quit (Client Quit)
 575 2013-08-21 11:39:26 fanquake has quit (Ping timeout: 256 seconds)
 576 2013-08-21 11:40:17 pigeons has joined
 577 2013-08-21 11:43:22 fanquake_ has quit (Ping timeout: 264 seconds)
 578 2013-08-21 11:43:34 Jasmin68k has quit (Quit: Leaving.)
 579 2013-08-21 11:44:56 _ingsoc has quit (Quit: leaving)
 580 2013-08-21 11:49:40 stephantual has joined
 581 2013-08-21 11:50:54 stephantual has quit (Read error: Connection reset by peer)
 582 2013-08-21 11:51:08 stephantual has joined
 583 2013-08-21 11:55:04 paybitcoin has joined
 584 2013-08-21 11:55:10 ielo has joined
 585 2013-08-21 11:56:32 <Luke-Jr> xeroc: gitian was basically created for bitcoin
 586 2013-08-21 11:56:37 paybitcoin1 has quit (Ping timeout: 264 seconds)
 587 2013-08-21 11:56:46 fanquake has joined
 588 2013-08-21 11:57:45 <michagogo> Luke-Jr: It was? o_O
 589 2013-08-21 11:58:08 <michagogo> Or do you mean "for the kind of usage that bitcoin needs"?
 590 2013-08-21 11:58:08 <Luke-Jr> michagogo: at least, until very recently nobody else had any interest in using it O.o
 591 2013-08-21 11:58:32 <Luke-Jr> michagogo: I don't know if devrandom had some behind-closed-doors other use for it.
 592 2013-08-21 12:02:55 c0rw1n has joined
 593 2013-08-21 12:03:22 <gjs278>  think it actually was created for bitcoin, nobody else I know uses it
 594 2013-08-21 12:03:31 <gjs278> when I google gitian all I get back is bitcoin results
 595 2013-08-21 12:04:03 <gjs278> when I first saw it mentioned here I thought it was something other projects were using but nope, just this
 596 2013-08-21 12:13:02 normanrichards has joined
 597 2013-08-21 12:13:52 <c0rw1n> what's gitian?
 598 2013-08-21 12:14:03 <c0rw1n> ive seen that word here before
 599 2013-08-21 12:14:14 <c0rw1n> ;;google gitian
 600 2013-08-21 12:14:14 <gribble> Gitian: a secure software distribution method: <http://gitian.org/>; devrandom/gitian-builder · GitHub: <https://github.com/devrandom/gitian-builder>; bitcoin/gitian.sigs · GitHub: <https://github.com/bitcoin/gitian.sigs>
 601 2013-08-21 12:14:17 <Luke-Jr> c0rw1n: build framework that produces bit-for-bit identical binaries
 602 2013-08-21 12:14:34 <c0rw1n> oh fuck yes
 603 2013-08-21 12:14:45 <Luke-Jr> c0rw1n: thus, everyone can prove the downloads on bitcoin.org are accurate to the code, and not with some trojan added
 604 2013-08-21 12:14:53 <c0rw1n> again : oh fuck yes
 605 2013-08-21 12:16:28 i2pRelay has quit (Remote host closed the connection)
 606 2013-08-21 12:16:35 <c0rw1n> it waitwhat oh my fsm
 607 2013-08-21 12:17:08 <c0rw1n> hm
 608 2013-08-21 12:17:14 i2pRelay has joined
 609 2013-08-21 12:18:00 <c0rw1n> does it check if the binary is correct? if yes, against what?
 610 2013-08-21 12:18:14 <c0rw1n> i mean, where does the check come from?
 611 2013-08-21 12:18:19 <Luke-Jr> against PGP signatures of everyone else who built it
 612 2013-08-21 12:18:38 <Luke-Jr> https://github.com/bitcoin/gitian.sigs
 613 2013-08-21 12:18:59 <c0rw1n> wait
 614 2013-08-21 12:19:14 <c0rw1n> just that i finish nerdgasming
 615 2013-08-21 12:20:15 <kinlo> :p
 616 2013-08-21 12:20:22 <c0rw1n> okay i'm calmed down
 617 2013-08-21 12:20:24 <c0rw1n> somewhat
 618 2013-08-21 12:21:24 <c0rw1n> i don't wanna get capslocked ascii all over the channel
 619 2013-08-21 12:21:41 <c0rw1n> finally someone does it right
 620 2013-08-21 12:25:30 BTCOxygen has quit (Ping timeout: 260 seconds)
 621 2013-08-21 12:25:40 BTCOxygen has joined
 622 2013-08-21 12:26:34 <c0rw1n> (well the publishing server is still raidable, and hosted -or at least DNSed- in the US, but then : one piece at a time. SOMEone WILL do the distributed browserver thing some day, and gitian exemplifies a method of distributed signage of binaries, which would be needed in that too, in some form, for trust-free operation of distributed web-apps.)
 623 2013-08-21 12:31:45 fanquake has left ()
 624 2013-08-21 12:39:50 <marcusw> I don't think it's possible for a trust-free webapp...
 625 2013-08-21 12:40:00 <marcusw> unless you hosted it locally yourself
 626 2013-08-21 12:40:16 peetaur2 has joined
 627 2013-08-21 12:40:48 yubrew has quit (Remote host closed the connection)
 628 2013-08-21 12:41:39 <c0rw1n> i mean a trust-free web-app that serves itself from the browser, and the swarm somehow signs it. With a sybim-resistant DHT maintained by invisible pink unicorns and all.
 629 2013-08-21 12:41:41 BlackPrapor has quit (Ping timeout: 246 seconds)
 630 2013-08-21 12:42:00 t7 has joined
 631 2013-08-21 12:43:15 <marcusw> >sybim-resistant DHT
 632 2013-08-21 12:43:23 <marcusw> >invisible pink unicorns
 633 2013-08-21 12:43:43 <marcusw> those are of equal feasibility
 634 2013-08-21 12:44:07 <c0rw1n> yup
 635 2013-08-21 12:44:16 <c0rw1n> there are parts of ideas
 636 2013-08-21 12:44:26 <c0rw1n> someone smarter than me will figure it out
 637 2013-08-21 12:45:50 joesmoe has quit (Excess Flood)
 638 2013-08-21 12:45:53 <c0rw1n> could get a double-recursive homomorphic thing. would be horrifically slow, but might get towards there
 639 2013-08-21 12:46:17 shesek has joined
 640 2013-08-21 12:46:24 joesmoe has joined
 641 2013-08-21 12:46:38 <marcusw> I don't know any of these words
 642 2013-08-21 12:48:12 ThomasV has joined
 643 2013-08-21 12:48:47 <c0rw1n> http://crypto.stanford.edu/craig/craig-thesis.pdf
 644 2013-08-21 12:49:21 <michagogo> ;;google gitian -bitcoin -litecoin
 645 2013-08-21 12:49:21 <gribble> devrandom/gitian-builder · GitHub: <https://github.com/devrandom/gitian-builder>; Gitian: a source-control oriented distribution: <http://gitian.org/howto.html>; gitian | The Tor Blog: <https://blog.torproject.org/category/tags/gitian>
 646 2013-08-21 12:49:38 <michagogo> ;;google gitian -bitcoin -litecoin -site:gitian.org -inurl:devrandom
 647 2013-08-21 12:49:39 <gribble> gitian | The Tor Blog: <https://blog.torproject.org/category/tags/gitian>; android-secim in Gitian - Gitorious: <http://gitorious.org/gitian/android-secim>; GITian's Secret Confessions Expressions Crushes | Facebook: <https://www.facebook.com/klsgitconfess>
 648 2013-08-21 12:49:56 <c0rw1n> yes i've gone and read what gitian is
 649 2013-08-21 12:50:15 <c0rw1n> had no idea it was used by all these alreaday
 650 2013-08-21 12:50:19 forgot has joined
 651 2013-08-21 12:50:42 <michagogo> That was a response to gjs278's "think it actually...nope, just this"
 652 2013-08-21 12:50:51 yubrew has joined
 653 2013-08-21 12:50:55 <c0rw1n> ah ok
 654 2013-08-21 12:51:00 <michagogo> Hah, that tor blod article was posted yesterday
 655 2013-08-21 12:51:03 <michagogo> blog*
 656 2013-08-21 12:51:22 <c0rw1n> didn't see it gjs's line
 657 2013-08-21 12:51:34 <c0rw1n> (still don't, mebbe it was /msg)
 658 2013-08-21 12:51:46 yubrew has quit (Remote host closed the connection)
 659 2013-08-21 12:52:58 <michagogo> [15:02:37] * Joins: c0rw1n
 660 2013-08-21 12:52:58 <michagogo> [15:03:04] <gjs[no ping]278>  think it actually was...
 661 2013-08-21 12:53:08 normanrichards has quit (Quit: normanrichards)
 662 2013-08-21 12:53:22 <michagogo> c0rw1n: It was the first thing you saw after joining
 663 2013-08-21 12:53:27 <michagogo> (it's 3 lines)
 664 2013-08-21 12:53:33 <c0rw1n> ah that one sry yes
 665 2013-08-21 12:53:39 <michagogo> c0rw1n: Also, I know you say it because you reacted to it :-P
 666 2013-08-21 12:53:43 <michagogo> s/say/saw/
 667 2013-08-21 12:54:00 darsie has joined
 668 2013-08-21 12:54:10 <darsie> hi
 669 2013-08-21 12:54:39 <c0rw1n> i really need to stop doing caffeine in that kind of amounts ... if it's screwing with my memory and reading, it's clearly counter-roductive
 670 2013-08-21 12:54:44 <c0rw1n> gah typos
 671 2013-08-21 12:54:52 <darsie> Can you please implement an ETA/time to sync display
 672 2013-08-21 12:55:07 <c0rw1n> darsie it can't really be done
 673 2013-08-21 12:55:14 CheckDavid has joined
 674 2013-08-21 12:55:14 <c0rw1n> thee's one, sort of, already
 675 2013-08-21 12:55:31 <michagogo> darsie: The client can't know how big the blocks are, nor how fast the peer will send them
 676 2013-08-21 12:56:17 <darsie> You can average over the last few blocks and estimate with that. Sure it will vary.
 677 2013-08-21 12:56:25 <c0rw1n> technically, you could manage your own mining pool, and ensure you send your tx to that
 678 2013-08-21 12:56:44 <c0rw1n> might be just a little expensive
 679 2013-08-21 12:56:58 <michagogo> darsie: You can't really, though
 680 2013-08-21 12:57:09 <michagogo> Since you might get several small blocks and then several big blocks
 681 2013-08-21 12:57:23 <michagogo> Especially when doing IBD
 682 2013-08-21 12:57:24 <darsie> I did it manually, just yesterday.
 683 2013-08-21 12:57:37 <darsie> or average over the last few minutes.
 684 2013-08-21 12:58:32 melvster has quit (Remote host closed the connection)
 685 2013-08-21 12:59:08 <darsie> I did:
 686 2013-08-21 12:59:11 <darsie> echo >>x `date +%s` 252531
 687 2013-08-21 12:59:19 <darsie> cat x
 688 2013-08-21 12:59:27 <c0rw1n> i think you'd want to average over the period of difficulty adjustment, so it follows the network : faster when a lot of hash is deployed, slower if large hashpower disappear
 689 2013-08-21 12:59:28 <darsie> echo 'scale=3;(1481-0829)/(2531-2394)*(3269-2531)/60'|bc
 690 2013-08-21 13:00:44 <darsie> What is IBD?
 691 2013-08-21 13:01:18 BTCOxygen is now known as Guest69978
 692 2013-08-21 13:01:18 BTCOxygen has joined
 693 2013-08-21 13:01:18 Guest69978 has quit (Killed (hitchcock.freenode.net (Nickname regained by services)))
 694 2013-08-21 13:01:18 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 695 2013-08-21 13:02:19 BlackPrapor has joined
 696 2013-08-21 13:02:59 <michagogo> Initial Block Download
 697 2013-08-21 13:03:07 melvster has joined
 698 2013-08-21 13:03:23 <darsie> You mean the first part of the block chain loads much faster?
 699 2013-08-21 13:03:48 <michagogo> (BTW, does anyone know if that term also applies to the catching up when you start a node, or if it's only referring to the very first download for a new node?)
 700 2013-08-21 13:04:26 shesek has quit (Ping timeout: 246 seconds)
 701 2013-08-21 13:05:56 <Luke-Jr> darsie: it does
 702 2013-08-21 13:06:02 melvster has quit (Remote host closed the connection)
 703 2013-08-21 13:06:43 <darsie> Yes, it does. That would give a very off ETA, indeed.
 704 2013-08-21 13:08:44 <darsie> The ETA display could be an option to activate in the preferences, off by default and with a note about its inaccuracy, especially for IBD.
 705 2013-08-21 13:09:43 <darsie> But every ETA is just an *estimate*. When you d/l a torrent, the speed varies, too. Still they all show an ETA. Initially the ETA shows days, then goes down to hours.
 706 2013-08-21 13:10:15 <darsie> It gives you a ballpark figure, which is useful.
 707 2013-08-21 13:13:57 <darsie> And btw, your display of downloaded block count informs the user about the progress. They then estimate the TA in their head. Show computed ETA, too. It's what you intended by your display, just more useful.
 708 2013-08-21 13:14:28 <michagogo> "It's what you intended by your display" <-- Why do you say that?
 709 2013-08-21 13:14:50 <darsie> It appears conclusive to me.
 710 2013-08-21 13:15:04 <michagogo> For example, telling the user how far behind they are can be good for the user to know what they should expect to see in terms of older transactions
 711 2013-08-21 13:15:10 <marcusw> users will be much less mad about an ETA they come up with being wrong than one bitcoin gave them being wrong
 712 2013-08-21 13:16:04 <marcusw> that being said, network transfer time estimation (especially on p2p networks) is expected to be a crappy estimate at best
 713 2013-08-21 13:16:04 sacrelege has joined
 714 2013-08-21 13:16:09 oru has quit (Ping timeout: 264 seconds)
 715 2013-08-21 13:16:22 <marcusw> think of it like a torrent client...that's what the users expect
 716 2013-08-21 13:18:26 ThomasV has quit (Ping timeout: 246 seconds)
 717 2013-08-21 13:20:07 yubrew has joined
 718 2013-08-21 13:21:07 Anduck has joined
 719 2013-08-21 13:21:07 Anduck has quit (Changing host)
 720 2013-08-21 13:21:07 Anduck has joined
 721 2013-08-21 13:22:24 melvster has joined
 722 2013-08-21 13:25:42 arioBarzan has joined
 723 2013-08-21 13:25:44 Anduck has quit (Ping timeout: 248 seconds)
 724 2013-08-21 13:26:51 nsh_ has joined
 725 2013-08-21 13:27:43 jaromil has quit (Quit: Lost terminal)
 726 2013-08-21 13:27:48 bmcgee has quit (Quit: bmcgee)
 727 2013-08-21 13:28:02 jaromil has joined
 728 2013-08-21 13:29:23 Anduck has joined
 729 2013-08-21 13:29:23 Anduck has quit (Changing host)
 730 2013-08-21 13:29:23 Anduck has joined
 731 2013-08-21 13:29:52 <runeks> darsie: The problem with comparing it to a torrent download is that the first 1000 blocks will take like 10 seconds while the last 1000 blocks might take 1000 seconds. So your estimate would be off by a factor of 100. That's not useful in any way. Quite the opposite.
 732 2013-08-21 13:30:06 arioBarzan has quit (Remote host closed the connection)
 733 2013-08-21 13:30:12 agnostic98 has joined
 734 2013-08-21 13:30:36 <marcusw> runeks: so turn that into an equation and scale it appropriately
 735 2013-08-21 13:30:37 bmcgee has joined
 736 2013-08-21 13:31:15 <darsie> runeks: That can be improved by computing the ETA based on the last few blocks/minutes. And printing a note about the inaccuracy of the ETA in the preferences where the ETA option is off by default.
 737 2013-08-21 13:31:46 <runeks> marcusw: You mean benchmark an IBD and bake the constants into bitcoin-qt?
 738 2013-08-21 13:32:17 <pigeons> cool darsie, make a pull request when you're done coding it
 739 2013-08-21 13:32:20 bmcgee has quit (Client Quit)
 740 2013-08-21 13:32:28 <marcusw> runeks: why not?
 741 2013-08-21 13:34:29 mattco has quit (Ping timeout: 245 seconds)
 742 2013-08-21 13:34:45 <runeks> marcusw: I guess I think it seems clumsy and unnecessary. At least we should wait until it's possible to do an IBD from multiple nodes. When only using a single node it becomes completely impossible to calculate an ETA. Torrents are fairly constant in speed when the node count is over 100. But with Bitcoin, you basically only have a single connection.
 743 2013-08-21 13:34:48 agnostic98 has quit (Ping timeout: 248 seconds)
 744 2013-08-21 13:34:48 arioBarzan has joined
 745 2013-08-21 13:35:06 CatWomman has joined
 746 2013-08-21 13:35:26 <michagogo> Hopefully sipa's headers-first will be ready soon
 747 2013-08-21 13:36:05 gfawkes has joined
 748 2013-08-21 13:36:56 <runeks> michagogo: Does it get all headers from a single node and then tries to sync full blocks from multiple nodes?
 749 2013-08-21 13:37:06 <michagogo> runeks: Ask sipa
 750 2013-08-21 13:37:12 <michagogo> (or look at his github fork)
 751 2013-08-21 13:38:03 <arioBarzan> I am running bitcoind 0.2.0 on two locally connected nodes, but couldn't mine. In version 0.3.15 Satoshi made sure that generation doesn't start before block 74000 downloaded. Is there also any similar limitation on 0.2.0 ?
 752 2013-08-21 13:38:09 <runeks> Looks like that's the plan: https://github.com/sipa/bitcoin/commit/81899f54fd26505a60cb84f51b4ff40c045f4be6
 753 2013-08-21 13:38:16 <michagogo> 0.2.0? o_O
 754 2013-08-21 13:38:18 <michagogo> Why?
 755 2013-08-21 13:38:21 <c0rw1n> what the fuck are you doing with those versions?
 756 2013-08-21 13:38:32 normanrichards has joined
 757 2013-08-21 13:38:34 <c0rw1n> forking from old code?
 758 2013-08-21 13:38:48 <arioBarzan> I need just some fake coins for doing some tests, just for learning.
 759 2013-08-21 13:38:58 <michagogo> arioBarzan: What's wrong with testnet?
 760 2013-08-21 13:39:05 <c0rw1n> just get testnet-in-a-box
 761 2013-08-21 13:39:10 <michagogo> Just start bitcoind or bitcoin-qt with -testnet
 762 2013-08-21 13:39:15 <c0rw1n> easier and will probably work
 763 2013-08-21 13:39:15 <michagogo> Or what c0rw1n said
 764 2013-08-21 13:39:52 <c0rw1n> ;;google bitcoin "testnet in a box"
 765 2013-08-21 13:39:53 <gribble> freewil/bitcoin-testnet-box · GitHub: <https://github.com/freewil/bitcoin-testnet-box>; Testnet - Bitcoin: <https://bitcoin.it/wiki/Testnet>; Bitcoin - Browse /Bitcoin/testnet-in-a-box at SourceForge.net: <http://sourceforge.net/projects/bitcoin/files/Bitcoin/testnet-in-a-box/>
 766 2013-08-21 13:39:57 swulf-- has joined
 767 2013-08-21 13:40:09 <arioBarzan> could I compile new versions (e.g.) and strip them of their mining limitation rules ?
 768 2013-08-21 13:40:51 <darsie> arioBarzan: I can give you some testnet coins. Which address?
 769 2013-08-21 13:40:52 normanrichards has quit (Read error: Connection reset by peer)
 770 2013-08-21 13:40:54 <arioBarzan> I wonder how Satoshi could mine with 0.2.0 but I couldn't.
 771 2013-08-21 13:41:44 <Zoop_> he mined more than most of us together
 772 2013-08-21 13:41:51 <marcusw> plot twist: he was actually premining on unshipped BFL asics
 773 2013-08-21 13:41:55 <runeks> arioBarzan: If you just want to test something then use testnet.
 774 2013-08-21 13:41:56 <arioBarzan> I Have used testnet coins. They are good for learning. But I assume one should be able to fork his local blockchain
 775 2013-08-21 13:42:13 <runeks> marcusw: At 100KH/s
 776 2013-08-21 13:42:29 CatWomman has quit ()
 777 2013-08-21 13:42:46 <marcusw> what a high roller
 778 2013-08-21 13:43:08 <Zoop_> ahah
 779 2013-08-21 13:43:52 <CobaltBlueD> I've been narrowing down the cause on an interesting symptom here.  eruptors running @ 330Mh/s, cgminer reporting that.  The reason I am seeing poor rates with this particular setup is long delays cause extended idle time betweeeeen the submissions.
 780 2013-08-21 13:45:02 <CobaltBlueD> anyone have ideas on what would cause that? Hardware looks fine, voltage is good, same version of cgminer works fine with these chips on other machines.
 781 2013-08-21 13:45:07 BTCOxygen has joined
 782 2013-08-21 13:45:07 BTCOxygen has quit (Killed (pratchett.freenode.net (Nickname regained by services)))
 783 2013-08-21 13:45:07 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 784 2013-08-21 13:45:29 <runeks> Actually, scratch that. Looks like the average network speed for the first year was a whopping 4 MH/s. Not 100KH/s.
 785 2013-08-21 13:45:29 <arioBarzan> could I disable IsInitialBlockDownload() in the code and compile bitcoind again to be able to mine some coins in a local network?
 786 2013-08-21 13:45:58 <runeks> arioBarzan: What is it you want to do exactly?
 787 2013-08-21 13:46:15 <c0rw1n> if he does that it's basically altcoin-in-a-box no?
 788 2013-08-21 13:46:29 <arioBarzan> I want to mine a valid block at the height of for e.g. 200
 789 2013-08-21 13:46:42 <arioBarzan> but on my pair of local nodes
 790 2013-08-21 13:47:16 KLOdICK has joined
 791 2013-08-21 13:47:34 <arioBarzan> I tried bitcoin 0.2.0 after one hour of mining bitcoin found NO new block.
 792 2013-08-21 13:47:49 <c0rw1n> ooh you could feed it a known set of tx
 793 2013-08-21 13:48:06 <c0rw1n> good luck with doing it, but might work
 794 2013-08-21 13:48:18 <arioBarzan> unrotunately 0.2.0 did not have rpc
 795 2013-08-21 13:48:28 <c0rw1n> it must get the tx from somewhere
 796 2013-08-21 13:49:24 <c0rw1n> if you're willing to go that far, you can take apart the c++ code and call it from a kludged buttonpad GUI
 797 2013-08-21 13:49:37 <arioBarzan> c0rw1n: could I disable IsInitialBlockDownload() in current version to be able to mine at the height of 200?
 798 2013-08-21 13:49:43 <c0rw1n> no idea
 799 2013-08-21 13:50:00 BTCOxygen has joined
 800 2013-08-21 13:50:00 BTCOxygen is now known as Guest6114
 801 2013-08-21 13:50:00 Guest6114 has quit (Killed (card.freenode.net (Nickname regained by services)))
 802 2013-08-21 13:50:00 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 803 2013-08-21 13:50:11 bmcgee has joined
 804 2013-08-21 13:50:19 <CobaltBlueD> so my question to any devs floating around, what has to run after a submission and before the new work is sent to the ASIC. it's using stratum of course.
 805 2013-08-21 13:50:40 t1488t has joined
 806 2013-08-21 13:51:36 <arioBarzan> Satoshi was mining in first 120 blocks, but he couldn't possibly spend them. so it wouldn't be necessary to have a tx to be able to mine at that height.
 807 2013-08-21 13:52:29 <c0rw1n> why couldn't he spend them? he could have made addresses and sent the coinbases between those
 808 2013-08-21 13:52:51 <arioBarzan> either 0.2.0 was a fake ( so only satoshi could mine possibly with another version) or I am doing something wrong that I couldn't mine by 0.2.0
 809 2013-08-21 13:52:53 <c0rw1n> not that i've gone and traced the first block mind you
 810 2013-08-21 13:52:59 KLOdICK has quit (Remote host closed the connection)
 811 2013-08-21 13:53:17 KLOdICK has joined
 812 2013-08-21 13:53:23 <arioBarzan> c0rw1n: he had to wait 120 blocks after generating new coin.
 813 2013-08-21 13:53:35 <c0rw1n> ooh *click* i'm an idioty
 814 2013-08-21 13:54:45 <c0rw1n> ah but then do you get the same blockchain every time? I mean the same hashes from the same "first 120, no-tx" blocks
 815 2013-08-21 13:55:09 <c0rw1n> or is it time-sensitive? i really have no idea
 816 2013-08-21 13:55:16 <c0rw1n> i mean date-sensitive
 817 2013-08-21 13:56:45 <arioBarzan> it shouldn't be date-sensitive. The two-connected nodes have no more blocks after 175, and their mining difficulty is 1
 818 2013-08-21 13:57:07 <CobaltBlueD> I have a bad feeling I'm going to be looking at code today
 819 2013-08-21 13:58:06 bmcgee has quit (Ping timeout: 268 seconds)
 820 2013-08-21 13:59:50 sacrelege has quit (Remote host closed the connection)
 821 2013-08-21 14:00:22 <jgarzik> mornin'
 822 2013-08-21 14:01:19 agnostic98 has joined
 823 2013-08-21 14:01:30 <CobaltBlueD> morning.  definitely time for coffee.
 824 2013-08-21 14:02:12 <arioBarzan> I am running bitcoind 0.2.0 on two locally connected nodes, but couldn't mine. In version 0.3.15 Satoshi made sure that generation doesn't start before block 74000 downloaded (https://en.bitcoin.it/wiki/Changelog#0.3.15.5B24.5D). Is there also any similar limitation on 0.2.0 ?
 825 2013-08-21 14:06:22 agnostic98 has quit (Ping timeout: 276 seconds)
 826 2013-08-21 14:06:24 normanrichards has joined
 827 2013-08-21 14:06:59 gdoteof has quit (Ping timeout: 245 seconds)
 828 2013-08-21 14:08:38 <marcusw> man...add a bit about heaven and 2nd coming and satoshi = jesus
 829 2013-08-21 14:09:13 <marcusw> japanese Jesus Chrypto
 830 2013-08-21 14:09:17 <c0rw1n> Satoshi is the Cyberchrist
 831 2013-08-21 14:09:22 <c0rw1n> or crypstomessiah
 832 2013-08-21 14:09:31 CodeShark has joined
 833 2013-08-21 14:09:33 <c0rw1n> (gah typos grr)
 834 2013-08-21 14:10:07 <marcusw> >mfw satoshi was actually jesus
 835 2013-08-21 14:14:09 CodeShark has quit (Ping timeout: 256 seconds)
 836 2013-08-21 14:16:59 <michagogo> How long ago has there been a 0.8.4rc2?
 837 2013-08-21 14:17:41 <c0rw1n> that's not listed right next to the release?
 838 2013-08-21 14:18:34 <michagogo> c0rw1n: I just happened to notice "v0.8.4rc2" in github's tags list when looking for 0.2.0 to check for checkpoints
 839 2013-08-21 14:18:45 <c0rw1n> ah ok
 840 2013-08-21 14:18:52 <michagogo> Anyway, looks like it was tagged yesterday
 841 2013-08-21 14:18:58 <michagogo> Ooh, with a new checkpoint
 842 2013-08-21 14:19:04 hnz_ has quit (Ping timeout: 248 seconds)
 843 2013-08-21 14:19:09 <michagogo> ;;calc [blocks] - 250000
 844 2013-08-21 14:19:10 <gribble> 3412
 845 2013-08-21 14:19:15 <michagogo> 3412 blocks ago
 846 2013-08-21 14:19:45 vrs has joined
 847 2013-08-21 14:20:01 <vrs> has anybody in here successfully built bitcoin on freebsd with clang?
 848 2013-08-21 14:20:14 <vrs> I'm getting gmake[1]: *** No rule to make target `clang'.  Stop.
 849 2013-08-21 14:20:27 BTCOxygen has quit (Ping timeout: 245 seconds)
 850 2013-08-21 14:20:42 BTCOxygen has joined
 851 2013-08-21 14:22:02 <Luke-Jr> CobaltBlueD: upgrade to BFGMiner
 852 2013-08-21 14:22:36 <Luke-Jr> arioBarzan: 0.2.0 isn't compatible with the current Bitcoin protocol, note
 853 2013-08-21 14:23:26 <arioBarzan> Luke-Jr: I am running my own set of nodes
 854 2013-08-21 14:23:35 <Luke-Jr> vrs: BSD isn't really supported.
 855 2013-08-21 14:23:39 <arioBarzan> Luke-Jr: but I can not generate blocks
 856 2013-08-21 14:23:40 peter_ has joined
 857 2013-08-21 14:23:40 peetaur2 has quit (Killed (hitchcock.freenode.net (Nickname regained by services)))
 858 2013-08-21 14:23:40 peter_ is now known as peetaur2
 859 2013-08-21 14:23:55 hnz has joined
 860 2013-08-21 14:24:08 <vrs> Luke-Jr: ...aw
 861 2013-08-21 14:24:30 <Luke-Jr> vrs: would you like to be the BSD team? :P
 862 2013-08-21 14:24:37 <vrs> uh
 863 2013-08-21 14:24:45 <vrs> let me gain a few levels in C and then perhaps
 864 2013-08-21 14:24:49 <Luke-Jr> :p
 865 2013-08-21 14:24:54 <vrs> err C/C++
 866 2013-08-21 14:25:07 <Luke-Jr> vrs: the error suggests you ran 'make clang' or something
 867 2013-08-21 14:25:11 <Luke-Jr> which is wrong in any case
 868 2013-08-21 14:25:18 <vrs> yes, and that's confusing me
 869 2013-08-21 14:25:33 <vrs> because it was a simple portmaster invocation and nowhere was making clang involved
 870 2013-08-21 14:25:34 <Luke-Jr> try the documented build steps for Linux
 871 2013-08-21 14:25:40 <vrs> might just be a problem of the port
 872 2013-08-21 14:25:43 BlackPrapor has quit (Ping timeout: 245 seconds)
 873 2013-08-21 14:26:49 teste has joined
 874 2013-08-21 14:28:13 saivann has joined
 875 2013-08-21 14:28:13 <arioBarzan> Luke-Jr: If I disable IsInitialBlockDownload() could I generate coins on locally-connected-nodes at height for e.g. 200 ?
 876 2013-08-21 14:28:22 <michagogo> Is 0.8.4 mostly a bugfix release?
 877 2013-08-21 14:28:44 <Luke-Jr> arioBarzan: perhaps
 878 2013-08-21 14:28:52 <Luke-Jr> arioBarzan: note that 0.2.0 was likely long after block 200
 879 2013-08-21 14:29:01 <Luke-Jr> michagogo: yeah, just trivial things
 880 2013-08-21 14:29:20 c0rw1n has quit (Remote host closed the connection)
 881 2013-08-21 14:30:42 arioBarzan has quit (Remote host closed the connection)
 882 2013-08-21 14:30:58 <michagogo> Brb, going to find my external hard drive with Ubuntu on it so I can gitian-build
 883 2013-08-21 14:31:25 <vrs> btw regarding the bootstrap.dat torrent, I seeded 371690.7MB of it
 884 2013-08-21 14:31:47 <michagogo> I've seeded 34.6 GB
 885 2013-08-21 14:31:52 <vrs> which is a ratio of roughly 46
 886 2013-08-21 14:32:17 <michagogo> (is jgarzik going to update bootstrap for 250k?)
 887 2013-08-21 14:32:21 agnostic98 has joined
 888 2013-08-21 14:33:22 <michagogo> Also: How come gitian.sigs has sigs for 0.8.4rc1, but that tag doesn't seem to exist?
 889 2013-08-21 14:33:53 <Luke-Jr> was it deleted? :o
 890 2013-08-21 14:35:17 <petertodd> it was, rc1 has a show-stopper bug
 891 2013-08-21 14:35:45 _jps has joined
 892 2013-08-21 14:36:36 _ingsoc has joined
 893 2013-08-21 14:36:42 agnostic98 has quit (Ping timeout: 245 seconds)
 894 2013-08-21 14:37:19 <michagogo> What bug?
 895 2013-08-21 14:37:49 <petertodd> just a thinko related to the bloom patch that made android wallets not sync up
 896 2013-08-21 14:38:24 <petertodd> problem was multibit synced, and that's all greg had available to test with, where as myself all I had was an android wallet...
 897 2013-08-21 14:38:44 <petertodd> next time I'll screw up and it'll be gmaxwell finding that I broke multibit :/
 898 2013-08-21 14:40:21 ThomasV has joined
 899 2013-08-21 14:44:57 _jps has quit (Quit: _jps)
 900 2013-08-21 14:45:22 michagogo has quit (Quit: Rebooting into Ubuntu for a gitian-build)
 901 2013-08-21 14:47:44 KLOdICK has quit (Ping timeout: 256 seconds)
 902 2013-08-21 14:49:26 AusBitBank has quit (Ping timeout: 256 seconds)
 903 2013-08-21 14:52:08 CobaltBlueD has quit (Remote host closed the connection)
 904 2013-08-21 14:53:38 gritball has quit (Read error: Connection reset by peer)
 905 2013-08-21 14:54:05 gritball has joined
 906 2013-08-21 14:56:49 agnostic98 has joined
 907 2013-08-21 14:57:48 michagogo has joined
 908 2013-08-21 14:57:48 CobaltBlueD has joined
 909 2013-08-21 14:57:57 michagogo_ has joined
 910 2013-08-21 14:57:57 michagogo has quit (Killed (rajaniemi.freenode.net (Nickname regained by services)))
 911 2013-08-21 14:57:57 michagogo_ is now known as michagogo
 912 2013-08-21 14:58:11 michagogo_ has joined
 913 2013-08-21 14:58:39 blaeks has quit (Ping timeout: 245 seconds)
 914 2013-08-21 14:59:01 CheckDavid has quit (Ping timeout: 276 seconds)
 915 2013-08-21 14:59:11 _jps has joined
 916 2013-08-21 15:00:23 michagogo_ has quit (Client Quit)
 917 2013-08-21 15:00:25 datagutt has joined
 918 2013-08-21 15:01:37 agnostic98 has quit (Ping timeout: 276 seconds)
 919 2013-08-21 15:04:04 forgot has quit (Quit: leaving)
 920 2013-08-21 15:06:20 agnostic_ has joined
 921 2013-08-21 15:09:33 BTCOxygen has joined
 922 2013-08-21 15:09:33 BTCOxygen is now known as Guest33880
 923 2013-08-21 15:09:33 Guest33880 has quit (Killed (rajaniemi.freenode.net (Nickname regained by services)))
 924 2013-08-21 15:09:33 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
 925 2013-08-21 15:10:12 Diapolis has quit (Remote host closed the connection)
 926 2013-08-21 15:12:08 blaeks has joined
 927 2013-08-21 15:13:18 _ingsoc has quit (Quit: leaving)
 928 2013-08-21 15:15:35 oru has joined
 929 2013-08-21 15:15:35 oru has quit (Changing host)
 930 2013-08-21 15:15:35 oru has joined
 931 2013-08-21 15:16:27 ingsoc_ has joined
 932 2013-08-21 15:17:52 cads has quit (Ping timeout: 276 seconds)
 933 2013-08-21 15:20:01 forgot has joined
 934 2013-08-21 15:20:16 sserrano44 has joined
 935 2013-08-21 15:22:56 oPen_syLar has quit (Quit: Lost terminal)
 936 2013-08-21 15:24:59 wei_ has quit (Quit: wei_)
 937 2013-08-21 15:28:48 btsec has joined
 938 2013-08-21 15:29:17 Subo1977_ has joined
 939 2013-08-21 15:29:34 OPrime has quit (Quit: OPrime)
 940 2013-08-21 15:30:39 nsillik has joined
 941 2013-08-21 15:31:59 rdymac has quit (Ping timeout: 264 seconds)
 942 2013-08-21 15:32:28 Subo1977 has quit (Ping timeout: 240 seconds)
 943 2013-08-21 15:33:02 wei_ has joined
 944 2013-08-21 15:33:14 <michagogo> Gitian build done.
 945 2013-08-21 15:33:17 <michagogo> PR'd.
 946 2013-08-21 15:35:22 t7 has quit (Quit: ChatZilla 0.9.90.1 [Firefox 23.0/20130730113002])
 947 2013-08-21 15:35:27 RazielZ has quit (Ping timeout: 260 seconds)
 948 2013-08-21 15:36:12 vigilyn has quit (Read error: Connection reset by peer)
 949 2013-08-21 15:36:29 vigilyn has joined
 950 2013-08-21 15:36:29 vigilyn has quit (Changing host)
 951 2013-08-21 15:36:29 vigilyn has joined
 952 2013-08-21 15:38:28 teste has quit (Ping timeout: 250 seconds)
 953 2013-08-21 15:39:19 <Ry4an> I hope that's a homestarrunner reference :)
 954 2013-08-21 15:39:37 spitballshot has quit (Remote host closed the connection)
 955 2013-08-21 15:41:40 <michagogo> Hmm?
 956 2013-08-21 15:41:48 <Ry4an> I guess not. :)
 957 2013-08-21 15:42:12 <Ry4an> http://www.hrwiki.org/wiki/Arrow'd_Guy
 958 2013-08-21 15:42:33 ielo has quit (Ping timeout: 264 seconds)
 959 2013-08-21 15:42:36 * michagogo has never heard of Homestar Runner
 960 2013-08-21 15:43:07 <Luke-Jr> it's .com
 961 2013-08-21 15:43:22 <michagogo> (wouldn't http://www.hrwiki.org/wiki/%27d be better?)
 962 2013-08-21 15:43:50 <Ry4an> ah, it was an early 2000s online funny thing.  There was a recurring character that VERB'd people to death for various types of verb.   Was popular amongst geeks at the time, so I thought you were invoking it.  Not a big deal.
 963 2013-08-21 15:44:00 <michagogo> Yeah, nope :-P
 964 2013-08-21 15:44:25 <michagogo> Anyone have any idea on release estimate for 0.8.4? (assuming no show-stoppers)
 965 2013-08-21 15:45:50 bmcgee has joined
 966 2013-08-21 15:46:20 nsillik has quit (Quit: nsillik)
 967 2013-08-21 15:46:26 yam01 has quit (Quit: Page closed)
 968 2013-08-21 15:49:21 normanrichards has quit (Read error: Connection reset by peer)
 969 2013-08-21 15:52:54 wizkid057 has quit (Ping timeout: 256 seconds)
 970 2013-08-21 15:56:42 nsillik has joined
 971 2013-08-21 15:59:49 stephantual has quit (Quit: Zzzzz..zzzzz)
 972 2013-08-21 16:00:52 bmcgee has quit (Quit: bmcgee)
 973 2013-08-21 16:01:11 spitballshot has joined
 974 2013-08-21 16:06:56 forgot has left ()
 975 2013-08-21 16:07:34 devrando1 is now known as devrandom
 976 2013-08-21 16:09:07 dust-otc has joined
 977 2013-08-21 16:11:04 oPen_syLar has joined
 978 2013-08-21 16:11:04 oPen_syLar has quit (Changing host)
 979 2013-08-21 16:11:04 oPen_syLar has joined
 980 2013-08-21 16:15:17 forgot has joined
 981 2013-08-21 16:15:47 forgot has left ()
 982 2013-08-21 16:15:49 rdponticelli has joined
 983 2013-08-21 16:16:21 oleganza_ has joined
 984 2013-08-21 16:20:59 <runeks> For anyone interested: I've updated my text-only version of historic Bitcoin difficulties to include an estimate of the next difficulty adjustment (estimations are marked with an asterisk): http://runeks.dk/bitcoin/diff.txt
 985 2013-08-21 16:23:27 _jps has quit (Quit: _jps)
 986 2013-08-21 16:24:01 <darsie> Does the bitcoin address include the public key?
 987 2013-08-21 16:24:11 Application has joined
 988 2013-08-21 16:24:25 <edcba> hash of it
 989 2013-08-21 16:24:29 <edcba> iirc :)
 990 2013-08-21 16:24:44 eoss has joined
 991 2013-08-21 16:25:16 <vrs> darsie: it does not and I think it's a ripemd-160 hash
 992 2013-08-21 16:25:19 normanrichards has joined
 993 2013-08-21 16:26:20 <vrs> https://en.bitcoin.it/wiki/Protocol_specification#Addresses
 994 2013-08-21 16:27:05 Applica__ has quit (Ping timeout: 246 seconds)
 995 2013-08-21 16:30:57 AtashiCon has quit (Ping timeout: 240 seconds)
 996 2013-08-21 16:31:17 Arnavion has quit (Ping timeout: 256 seconds)
 997 2013-08-21 16:31:42 AtashiCon has joined
 998 2013-08-21 16:32:38 jeewee1 has joined
 999 2013-08-21 16:33:50 CobaltBlueD has quit (Remote host closed the connection)
1000 2013-08-21 16:34:12 jeewee has quit (Ping timeout: 240 seconds)
1001 2013-08-21 16:35:15 Arnavion has joined
1002 2013-08-21 16:35:46 CobaltBlueD has joined
1003 2013-08-21 16:35:54 <handle> darsie: no
1004 2013-08-21 16:36:01 <handle> it is a hash of the public key
1005 2013-08-21 16:36:06 <darsie> thx
1006 2013-08-21 16:36:25 <handle> so if you have the address, you can verify the correct public key, however you cannot get the actual public key from it
1007 2013-08-21 16:36:43 <gmaxwell> kinda sad that darsie is getting worse advice in here than they got in #bitcoin ...
1008 2013-08-21 16:37:16 <darsie> well, I didn't pursue the purpose here, since I already got it.
1009 2013-08-21 16:38:51 <handle> gmaxwell: is my advice bad?
1010 2013-08-21 16:39:01 <gmaxwell> Yea, kinda.
1011 2013-08-21 16:39:10 arioBarzan has joined
1012 2013-08-21 16:39:26 <handle> 00:25 < darsie> Does the bitcoin address include the public key?
1013 2013-08-21 16:39:35 <arioBarzan> handle: no
1014 2013-08-21 16:39:37 <handle> I think my answer accurately answers that question - it doesn't include the public key
1015 2013-08-21 16:39:41 Applicat_ has joined
1016 2013-08-21 16:39:47 <gmaxwell> It's not pedantically correct, depending on whats meant by public key, and it didn't solve darsie's actual problem (actually it would have given the opposite from correct behavior.
1017 2013-08-21 16:39:53 <gmaxwell> 09:25 < gmaxwell> darsie: You should probably ask more of your actual question.
1018 2013-08-21 16:39:56 <gmaxwell> 09:26 < gmaxwell> darsie: Because I can't actually give you a good answer with what you gave.
1019 2013-08-21 16:39:59 <gmaxwell> 09:27 < gmaxwell> (A typical 1 style address is a hash160 of a ecdsa public key.  But the hash160 itself is effectively a public key for signing validation)
1020 2013-08-21 16:40:02 <gmaxwell> 09:27 < darsie> Well, I want to make a backup of my wallet on paper, but the wallet is too big. So I wondered if printing address + private key suffices.
1021 2013-08-21 16:40:05 <gmaxwell> 09:27 < gmaxwell> darsie: saving the private keys suffice, all the rest can be derrived from that.
1022 2013-08-21 16:40:21 <handle> ah
1023 2013-08-21 16:42:50 Application has quit (Ping timeout: 264 seconds)
1024 2013-08-21 16:43:05 digitalmagus2 has joined
1025 2013-08-21 16:43:10 BlackPrapor has joined
1026 2013-08-21 16:43:11 chorao has joined
1027 2013-08-21 16:43:16 <arioBarzan> I'm running bitcoin 0.2.0 on two locally connected nodes, siolated from internet. I couldn't generate any new block. Satoshi blocked generating blocks before 74000 in version 0.3.15 (https://en.bitcoin.it/wiki/Changelog#0.3.15.5B24.5D) is there any similar checkpoint on 0.2.0 ?
1028 2013-08-21 16:43:27 <gmaxwell> handle: The address itself _is_ a public key. It's not an ecc public key, but it's public data which you can use to verify knoweldge of private data.  One completely valid way (and the way the blockchain works for 1 type addresses) is that the address is the public key (thing you identify payees with), and the ecdsa-public key is just part of the signature (data the payee provides to prove their identity)
1029 2013-08-21 16:45:09 <edcba> darsie about backup remember each time a transaction is issued new key is issued
1030 2013-08-21 16:45:39 MobPhone has quit (Read error: Connection reset by peer)
1031 2013-08-21 16:45:46 MobPhone has joined
1032 2013-08-21 16:45:47 <darsie> edcba: I doubt that.
1033 2013-08-21 16:45:52 <edcba> i mean backuping bitcoin keys suck
1034 2013-08-21 16:46:22 <handle> actualy, there's a pool of 100 keys when you first start up bitcoin, IIRC
1035 2013-08-21 16:46:27 <runeks> Armory works really well for backing up a wallet on paper IMO.
1036 2013-08-21 16:46:31 <handle> and when you exhaust those 100 keys, it generates nore
1037 2013-08-21 16:46:33 <handle> more*
1038 2013-08-21 16:47:06 wei_ has quit (Quit: wei_)
1039 2013-08-21 16:47:08 <arioBarzan> From where could I download bitcoin 0.1.0 ?
1040 2013-08-21 16:47:24 <edcba> (internet)
1041 2013-08-21 16:51:12 chorao has quit ()
1042 2013-08-21 16:51:15 <edcba> didn't find the forum link about the guy having lost all his bitcoins still having a backup of his "old style" wallet :)
1043 2013-08-21 16:51:20 chorao has joined
1044 2013-08-21 16:51:20 chorao has quit (Changing host)
1045 2013-08-21 16:51:20 chorao has joined
1046 2013-08-21 16:52:06 patcon has joined
1047 2013-08-21 16:53:51 xdrake has joined
1048 2013-08-21 16:54:31 <runeks> arioBarzan: http://www.zorinaq.com/pub/bitcoin-0.1.0.tgz
1049 2013-08-21 16:54:47 <arioBarzan> runeks: tnx
1050 2013-08-21 16:55:07 <edcba> why that version btw ?
1051 2013-08-21 16:55:30 <runeks> arioBarzan: Bear in mind that it won't communicate with other nodes on the network. And it's Windows-only.
1052 2013-08-21 16:55:45 chorao has quit (Ping timeout: 240 seconds)
1053 2013-08-21 16:55:53 <runeks> I mean, it will communicate with instances of itself, but not with the general Bitcoin network.
1054 2013-08-21 16:56:08 chorao has joined
1055 2013-08-21 16:56:08 chorao has quit (Changing host)
1056 2013-08-21 16:56:08 chorao has joined
1057 2013-08-21 16:56:24 nsh_ has quit (Changing host)
1058 2013-08-21 16:56:24 nsh_ has joined
1059 2013-08-21 16:56:29 <runeks> Because: http://bitcoin.stackexchange.com/questions/2788/what-are-the-february-20-changes-to-the-bitcoin-protocol
1060 2013-08-21 16:56:30 nsh_ is now known as nsh
1061 2013-08-21 16:56:37 nsh has left ("Leaving")
1062 2013-08-21 16:56:37 <arioBarzan> runeks: Hopefully it would generate a block at difficulty 1 which is the main thing I am looking for
1063 2013-08-21 16:56:47 nsh has joined
1064 2013-08-21 16:57:03 <arioBarzan> I will run it on isolated nodes
1065 2013-08-21 16:57:50 jevin has quit (Quit: Textual IRC Client: www.textualapp.com)
1066 2013-08-21 16:58:14 xdrake has quit (Ping timeout: 246 seconds)
1067 2013-08-21 16:58:18 <gmaxwell> arioBarzan: I'm not aware of any explicit inhibition, though the oldest mining code is really slow.
1068 2013-08-21 16:59:50 GordonG3kko has quit (Remote host closed the connection)
1069 2013-08-21 17:00:07 <arioBarzan> gmaxwell: is there any not-so-difficult way that I could disable checkpoints for generating blocks at height for e.g. 200 at the current bitcoin version and then compile it again?
1070 2013-08-21 17:01:26 <gmaxwell> arioBarzan: what exactly are you trying to do?
1071 2013-08-21 17:01:51 Coincidental has joined
1072 2013-08-21 17:02:20 <arioBarzan> gmaxwell: I want to generate a new block on two isolated nodes, locally-connected to each other
1073 2013-08-21 17:02:52 <arioBarzan> gmaxwell: I tried 0.2.0 and after several hours I was unsuccessful
1074 2013-08-21 17:03:00 GordonG3kko has joined
1075 2013-08-21 17:03:16 <arioBarzan> although the difficulty was just 1
1076 2013-08-21 17:04:28 <edcba> arioBarzan: i think you can use any client and 2 instances of them in an isolated network
1077 2013-08-21 17:04:43 <edcba> or hmm maybe not because of some hardcoded checks...
1078 2013-08-21 17:05:22 <arioBarzan> edcba: exactly, not possible because of checkpoints https://en.bitcoin.it/wiki/Changelog#0.3.15.5B24.5D
1079 2013-08-21 17:05:38 <edcba> thanks gavinandresen...
1080 2013-08-21 17:06:01 futuro has joined
1081 2013-08-21 17:06:04 normanrichards has quit (Read error: Connection reset by peer)
1082 2013-08-21 17:06:05 <edcba> just adds complexity for nothing imo
1083 2013-08-21 17:06:19 <gmaxwell> arioBarzan: just use regular testnet and isolate the nodes.
1084 2013-08-21 17:06:37 <gmaxwell> arioBarzan: you'll get a block after 20 minutes plus whatever it takes you to mine a diff 1 block.
1085 2013-08-21 17:09:43 <arioBarzan> gmaxwell: everybody today just said the sam that I use testnet. I wonder how Satoshi mined those blocks.
1086 2013-08-21 17:10:19 Applicat_ has quit (Ping timeout: 276 seconds)
1087 2013-08-21 17:10:21 Thepok has quit (Read error: Operation timed out)
1088 2013-08-21 17:10:38 <edcba> using his cpu ?
1089 2013-08-21 17:11:21 <gmaxwell> arioBarzan: huh? _lots_ of people were using bitcoin by 0.2.
1090 2013-08-21 17:12:39 <arioBarzan> gmaxwell: did 0.2 have checkpoints to prevent one from generating blocks at low height?
1091 2013-08-21 17:14:43 Benjojo has quit (Ping timeout: 246 seconds)
1092 2013-08-21 17:14:48 <gmaxwell> 09:57 < gmaxwell> arioBarzan: I'm not aware of any explicit inhibition, though the oldest mining code is really slow.
1093 2013-08-21 17:15:15 <gmaxwell> I'm also not about to go digging through the 0.2 code to find out, especially because what you're trying to do has nothing to do with 0.2.
1094 2013-08-21 17:15:24 <gmaxwell> If you mine on testnet, I know that that works.
1095 2013-08-21 17:16:17 <arioBarzan> gmaxwell: thanks
1096 2013-08-21 17:17:30 NimeshNeema has quit (Ping timeout: 246 seconds)
1097 2013-08-21 17:17:37 oleganza_ has quit (Quit: oleganza_)
1098 2013-08-21 17:18:13 ccook_ has joined
1099 2013-08-21 17:18:47 agnostic_ has quit (Ping timeout: 264 seconds)
1100 2013-08-21 17:19:01 ccook has quit (Ping timeout: 264 seconds)
1101 2013-08-21 17:19:20 agnostic98 has joined
1102 2013-08-21 17:20:15 arioBarzan has quit (Remote host closed the connection)
1103 2013-08-21 17:20:35 chorao has quit ()
1104 2013-08-21 17:21:11 The_Fly has quit (Ping timeout: 264 seconds)
1105 2013-08-21 17:21:42 The_Fly has joined
1106 2013-08-21 17:22:08 maxime01 has joined
1107 2013-08-21 17:30:08 qbasicer has joined
1108 2013-08-21 17:31:55 nethershaw has quit (Ping timeout: 256 seconds)
1109 2013-08-21 17:32:05 nethershaw has joined
1110 2013-08-21 17:35:39 btcbtc has joined
1111 2013-08-21 17:36:53 DaQatz has joined
1112 2013-08-21 17:38:21 BTCOxygen has quit (Ping timeout: 264 seconds)
1113 2013-08-21 17:38:40 BTCOxygen has joined
1114 2013-08-21 17:39:45 dust-otc has quit (Remote host closed the connection)
1115 2013-08-21 17:40:41 JZavala has quit (Read error: Connection reset by peer)
1116 2013-08-21 17:41:02 JZavala has joined
1117 2013-08-21 17:44:09 t1488t has quit (Ping timeout: 240 seconds)
1118 2013-08-21 17:45:12 <jgarzik> michagogo, yes
1119 2013-08-21 17:48:25 * michagogo goes to find what he asked jgarzik
1120 2013-08-21 17:48:33 <michagogo> Ah, right.
1121 2013-08-21 17:48:53 gaantr2 has joined
1122 2013-08-21 17:49:06 michagogo has quit (Quit: brb)
1123 2013-08-21 17:49:06 <gaantr2> Anyone here know anything about bitcoin-j?
1124 2013-08-21 17:51:25 <sipa> gaantr2: talk to TD or BlueMatt i guess
1125 2013-08-21 17:51:27 <sipa> or Goonie
1126 2013-08-21 17:51:57 <Goonie> heard my name
1127 2013-08-21 17:53:41 mappum has joined
1128 2013-08-21 17:53:55 jevin has joined
1129 2013-08-21 17:57:52 RazielZ has joined
1130 2013-08-21 17:59:12 <gaantr2> sipa: thanks
1131 2013-08-21 17:59:28 <gaantr2> Goonie: do you know how to recover 0.7 BTC from a bitcoin-j wallet?
1132 2013-08-21 17:59:51 <sipa> gaantr2: android wallet, multibit, or something else?
1133 2013-08-21 18:00:00 <Goonie> gaantr2: load it into wallet-tool, create a spend
1134 2013-08-21 18:00:01 mrkent has joined
1135 2013-08-21 18:00:01 mrkent has quit (Changing host)
1136 2013-08-21 18:00:01 mrkent has joined
1137 2013-08-21 18:00:19 <Goonie> gaantr2: you can probably use multibit as well
1138 2013-08-21 18:00:25 <gaantr2> okay I will try multibit
1139 2013-08-21 18:00:59 <Goonie> gaantr2: how did you create the wallet?
1140 2013-08-21 18:01:46 <gaantr2> I created it with bitcoinj
1141 2013-08-21 18:02:23 <gaantr2> I had someone send 0.7 BTC to an address on the wallet, but for whatever reason it never seemed to confirm in the wallet
1142 2013-08-21 18:02:45 <gaantr2> the transaction is confirmed: https://blockchain.info/address/1Ee9KBg1VtC8yHds8F8YLcxJDktppHUvnt
1143 2013-08-21 18:03:31 <Goonie> gaantr2: then you have a good incentive to fix your app (-:
1144 2013-08-21 18:03:59 btcbtc has quit (Quit: btcbtc)
1145 2013-08-21 18:05:52 michagogo has joined
1146 2013-08-21 18:08:21 <michagogo> How long does it usually take from a new release version being tagged until it goes live for end-user download?
1147 2013-08-21 18:08:50 futuro has quit (Ping timeout: 250 seconds)
1148 2013-08-21 18:09:33 Diapolis has joined
1149 2013-08-21 18:10:05 denisx has joined
1150 2013-08-21 18:10:06 CodeShark has joined
1151 2013-08-21 18:11:21 wizkid057 has joined
1152 2013-08-21 18:14:54 Benjojo has joined
1153 2013-08-21 18:15:58 CodeShark has quit (Ping timeout: 276 seconds)
1154 2013-08-21 18:19:42 ThomasV has quit (Read error: Operation timed out)
1155 2013-08-21 18:21:19 agnostic98 has quit (Remote host closed the connection)
1156 2013-08-21 18:21:39 altamic has joined
1157 2013-08-21 18:22:09 altamic has left ()
1158 2013-08-21 18:22:19 <gaantr2> Goonie: Yep. The issue is difficult to pin point. Seems like after it has been running for a while it "freezes" and no longer processes coin transactions sent to the program. It is based on the ping app
1159 2013-08-21 18:22:35 <gaantr2> I have not been able to fix this particular bug yet.
1160 2013-08-21 18:22:56 paracyst has joined
1161 2013-08-21 18:24:38 MobPhone has quit (Read error: Connection reset by peer)
1162 2013-08-21 18:25:03 <michagogo> Question: I found a utility that allows me to close (a) TCP connection(s). Wireshark tells me that this is done with a RST,ACK packet.
1163 2013-08-21 18:25:46 <michagogo> If IBD is stuck, will using getpeerinfo to locate the syncnode and closing that connection unstick it?
1164 2013-08-21 18:26:57 <marcusw> should just be RST, not RSTACK, but yeah
1165 2013-08-21 18:28:53 <gaantr2> yay! I got my coins back lol
1166 2013-08-21 18:29:15 FabianB_ has joined
1167 2013-08-21 18:29:17 <gaantr2> Goonie++ (bitcoin-dev++)
1168 2013-08-21 18:29:53 <gaantr2> I guess I should also give a multibit++
1169 2013-08-21 18:29:53 oPen_syLar has quit (Quit: Lost terminal)
1170 2013-08-21 18:30:10 <michagogo> It would be cool if there were somewhere where hex dumps of blocks were easily accessible to be pasted into the console following "submitblock "
1171 2013-08-21 18:30:16 FabianB has quit (Ping timeout: 276 seconds)
1172 2013-08-21 18:30:26 santoscork has joined
1173 2013-08-21 18:31:57 <helo> michagogo: ./bitcoind getblock <block hash> false
1174 2013-08-21 18:32:53 <michagogo> helo: Is there an always-on bitcoind node with its RPC port open somewhere that I could pull that from? :P
1175 2013-08-21 18:33:09 <helo> prawlie not
1176 2013-08-21 18:33:13 <michagogo> (I was kidding)
1177 2013-08-21 18:34:41 owowo has joined
1178 2013-08-21 18:35:36 PrimeStunna has joined
1179 2013-08-21 18:36:09 <marcusw> why doesn't anyone run one of those?
1180 2013-08-21 18:36:26 <helo> they want people to run their own to halp the network
1181 2013-08-21 18:36:35 <michagogo> marcusw: Actually, I think it could be done now that there's a nowallet patch
1182 2013-08-21 18:37:05 <marcusw> empty wallet would be fine anyway
1183 2013-08-21 18:38:27 <michagogo> Really looking forward to sipa's headers-first, so that one peer won't stall IBD
1184 2013-08-21 18:39:01 egis has joined
1185 2013-08-21 18:39:57 Diapolo has joined
1186 2013-08-21 18:40:28 Coincidental has quit (Remote host closed the connection)
1187 2013-08-21 18:41:19 NimeshNeema has joined
1188 2013-08-21 18:43:24 Diapolo has left ()
1189 2013-08-21 18:45:18 mrkent has quit (Remote host closed the connection)
1190 2013-08-21 18:45:56 Coincide_ has joined
1191 2013-08-21 18:49:06 CheckDavid has joined
1192 2013-08-21 18:53:46 patcon has quit (Read error: Connection reset by peer)
1193 2013-08-21 18:54:29 patcon has joined
1194 2013-08-21 18:56:54 HaltingState2 has joined
1195 2013-08-21 18:57:09 HaltingState has quit (Read error: Connection reset by peer)
1196 2013-08-21 18:57:41 Application has joined
1197 2013-08-21 18:58:31 Applicat_ has joined
1198 2013-08-21 19:00:49 datagutt has quit (Ping timeout: 276 seconds)
1199 2013-08-21 19:01:26 arioBarzan has joined
1200 2013-08-21 19:01:42 BTCOxygen has quit (Ping timeout: 245 seconds)
1201 2013-08-21 19:02:02 HaltingState2 has quit (Ping timeout: 264 seconds)
1202 2013-08-21 19:02:46 Application has quit (Ping timeout: 276 seconds)
1203 2013-08-21 19:02:58 CodeShark has joined
1204 2013-08-21 19:05:35 <arioBarzan> is there any way to circumvent mining checkpoints ? I want to mine a new block after genesis block in a network of locally connected nodes, isolated from internet.
1205 2013-08-21 19:06:03 <Krellan> Luke-Jr: I glanced at bfgminer and somehow it printed (.100%) in the "R" column, thus throwing it off of alignment.  Looked through percentf2() and don't see how that would be possible, it's correct.  Maybe weird floating-point rounding up?
1206 2013-08-21 19:07:29 <Krellan> Really nice column alignment btw, the page looks rather elegant in a large terminal window.
1207 2013-08-21 19:08:03 <gmaxwell> arioBarzan: Checkpoints aren't whats stopping you in any case.
1208 2013-08-21 19:08:28 Coincide_ has quit (Remote host closed the connection)
1209 2013-08-21 19:08:56 <gmaxwell> arioBarzan: though as an aside, you can turn them off with the @#$@# commandline parameter which is right there for it. And I advised you above to use testnet.
1210 2013-08-21 19:09:41 robocoin_ has joined
1211 2013-08-21 19:10:16 BTCOxygen has joined
1212 2013-08-21 19:10:58 <runeks> helo: Does that command work for you? All I get is an error. I'm guessing you're running master and not a stable release?
1213 2013-08-21 19:11:41 <michagogo> runeks: I think you mean HEAD?
1214 2013-08-21 19:11:44 guruvan has quit (Remote host closed the connection)
1215 2013-08-21 19:12:15 <michagogo> runeks: And yeah, it doesn
1216 2013-08-21 19:12:23 <runeks> michagogo: Not sure. Doesn't the master branch contain the newest patches?
1217 2013-08-21 19:12:24 <michagogo> runeks: And yeah, it doesn't seem to be working for me on 0.8.4rc2
1218 2013-08-21 19:12:26 guruvan has joined
1219 2013-08-21 19:12:27 robocoin has quit (Ping timeout: 260 seconds)
1220 2013-08-21 19:12:42 <michagogo> runeks: In general, more or less (though only those that have been merged)
1221 2013-08-21 19:13:02 patcon has quit (Read error: Connection reset by peer)
1222 2013-08-21 19:13:17 <helo> yeah, i'm on 8fa9b5cc45c1826b...
1223 2013-08-21 19:13:44 HaltingState2 has joined
1224 2013-08-21 19:14:02 <michagogo> But the current state of the master branch (actually, I think it's whatever you happen to have checked out at the moment, but it usually is used in this context to refer to the master branch's most recent commit) is known as HEAD
1225 2013-08-21 19:14:14 catcowllama is now known as catcow
1226 2013-08-21 19:14:36 <runeks> I see. So 'master' is a branch and HEAD is a certain point (commit) in that branch?
1227 2013-08-21 19:16:33 Application has joined
1228 2013-08-21 19:16:37 <michagogo> runeks: http://en.wikipedia.org/wiki/Revision_control
1229 2013-08-21 19:16:54 <michagogo> Head
1230 2013-08-21 19:16:55 <michagogo> Also sometimes called tip, this refers to the most recent commit, either to the trunk or to a branch. The trunk and each branch have their own head, though HEAD is sometimes loosely used to refer to the trunk.[7]
1231 2013-08-21 19:17:16 <runeks> Well thank you. TIL.
1232 2013-08-21 19:17:21 <warren> The talk went extremely well.  ~36 people who never used Bitcoin before learned a lot.
1233 2013-08-21 19:17:32 <gmaxwell> warren: was it recorded?
1234 2013-08-21 19:17:34 <warren> Someone else brought a Bitcoin ATM to demo.
1235 2013-08-21 19:17:37 <michagogo> [7] == http://garygregory.wordpress.com/2011/02/03/trunk-vs-head-in-version-control-systems/
1236 2013-08-21 19:17:43 <warren> gmaxwell: only photos I think
1237 2013-08-21 19:17:48 <michagogo> warren: Which talk?
1238 2013-08-21 19:18:08 <warren> michagogo: small local talk in the middle of nowhere
1239 2013-08-21 19:18:18 CheckDavid has quit (Read error: Connection reset by peer)
1240 2013-08-21 19:18:20 <michagogo> I see.
1241 2013-08-21 19:18:26 <michagogo> What was the content of the talk?
1242 2013-08-21 19:18:39 <warren> I donated sipa's money to Wikipedia during the demo to demonstrate payment processors.
1243 2013-08-21 19:18:48 <gmaxwell> warren: as an aside— I almost always record myself (just using my laptop) when I give a talk. I think doing so helped me improve my speaking style quite a bit.
1244 2013-08-21 19:18:50 <michagogo> Lol
1245 2013-08-21 19:18:54 <michagogo> (with sipa
1246 2013-08-21 19:18:59 <michagogo> (with sipa's consent, I assume?)
1247 2013-08-21 19:19:03 <warren> yes
1248 2013-08-21 19:19:07 patcon has joined
1249 2013-08-21 19:19:13 <michagogo> Also: didn't know they take bitcoins
1250 2013-08-21 19:19:17 <gmaxwell> haha "and now I demostrate wallet hacking"
1251 2013-08-21 19:19:23 <warren> hehehe
1252 2013-08-21 19:19:34 <warren> "Here's a flaw in secp256k1 ..."
1253 2013-08-21 19:19:36 <gmaxwell> michagogo: they don't, but bitpay will accept bitcoins and pay to wikipedia.
1254 2013-08-21 19:19:37 Applicat_ has quit (Ping timeout: 245 seconds)
1255 2013-08-21 19:19:45 CheckDavid has joined
1256 2013-08-21 19:19:46 <michagogo> Interesting.
1257 2013-08-21 19:20:21 <tgs3> how is land of the free progressing on making some legal trouble @ NY bitcoiners?
1258 2013-08-21 19:20:29 <michagogo> Is that in collaboration with wikipedia, or just you giving it to them to give to wikipedia?
1259 2013-08-21 19:20:30 <warren> I had no time to prep a slide deck, so it was a conversation that went mostly smoothly
1260 2013-08-21 19:20:33 <gmaxwell> warren: alas, if only I'd been giving a talk on any of the days when I triggered amusing bc.i behavior.  "And now— I have all the bitcoins."
1261 2013-08-21 19:20:49 <michagogo> gmaxwell: LOL. What behavior was that?
1262 2013-08-21 19:21:16 <warren> Maybe 4 people in the audience had GPG keys but never tried Bitcoin.
1263 2013-08-21 19:21:16 <gmaxwell> michagogo: there have been a couple ones, e.g. https://people.xiph.org/~greg/21mbtc.png (a screenshot someone else took, I didn't think to take one)
1264 2013-08-21 19:21:25 <michagogo> And how do bitpay compare to other sites, like coinbase?
1265 2013-08-21 19:22:03 <gmaxwell> michagogo: or the XSS in a transaction one, https://blockchain.info/tx/59bd7b2cff5da929581fc9fef31a2fba14508f1477e366befb1eb42a8810a000?show_adv=true
1266 2013-08-21 19:22:39 <michagogo> jL_<script>window.alert("If this were an actual exploit, your mywallet would be empty.")</script>
1267 2013-08-21 19:22:40 <michagogo> lol
1268 2013-08-21 19:22:43 <gmaxwell> (which I don't have a screenshot of, alas)
1269 2013-08-21 19:22:48 wiretapped has quit (Ping timeout: 240 seconds)
1270 2013-08-21 19:22:57 <michagogo> It's simple enough to figure out what it does :-P
1271 2013-08-21 19:23:28 sensorii has quit (Ping timeout: 240 seconds)
1272 2013-08-21 19:23:35 <michagogo> gmaxwell: How come https://bitcointalk.org/index.php?action=profile;u=11425 lists two different addresses for you?
1273 2013-08-21 19:23:48 cypher has quit (Ping timeout: 240 seconds)
1274 2013-08-21 19:23:48 sacredchao has quit (Ping timeout: 240 seconds)
1275 2013-08-21 19:24:08 darkee_ has quit (Ping timeout: 240 seconds)
1276 2013-08-21 19:24:14 Subo1977 has joined
1277 2013-08-21 19:24:17 <gmaxwell> michagogo: because I rotate the profile one ~every time it gets a payment.
1278 2013-08-21 19:24:24 FabianB_ is now known as FabianB
1279 2013-08-21 19:24:24 <michagogo> Interesting.
1280 2013-08-21 19:24:28 rdponticelli has quit (Ping timeout: 240 seconds)
1281 2013-08-21 19:24:28 Subo1977_ has quit (Ping timeout: 240 seconds)
1282 2013-08-21 19:24:28 random_cat has quit (Ping timeout: 240 seconds)
1283 2013-08-21 19:24:29 <michagogo> But not the signature one?
1284 2013-08-21 19:24:35 <warren> I showed this video in response to the scary parts of Bitcoin: video.cnbc.com/gallery/?video=3000163361&play=1
1285 2013-08-21 19:24:43 <gmaxwell> michagogo: you really shouldn't be reusing addresses at all...
1286 2013-08-21 19:24:52 <warren> the first few minutes up until Jared Cohen's answer about Bitcoin is decent
1287 2013-08-21 19:25:01 CheckDavid has quit (Ping timeout: 264 seconds)
1288 2013-08-21 19:25:02 <michagogo> gmaxwell: So why do you? :-P
1289 2013-08-21 19:25:19 moarrr has quit ()
1290 2013-08-21 19:25:20 <gmaxwell> michagogo: I generally don't, the 1GMaxwell one is hardly ever used.
1291 2013-08-21 19:25:46 <gmaxwell> I've just used it for those few things that should be conspiciously involving me mostly.
1292 2013-08-21 19:25:46 <warren> multibit was ever affected by the PRNG problem?
1293 2013-08-21 19:27:04 wiretapped has joined
1294 2013-08-21 19:27:24 <gmaxwell> michagogo: the profile one mostly only gets used because thats where forum moderation payments go.
1295 2013-08-21 19:27:32 <michagogo> Ah.
1296 2013-08-21 19:27:37 <michagogo> Forum moderation payments?
1297 2013-08-21 19:28:32 <gmaxwell> michagogo: yea, the forum pays moderators, not a ton, but enough to make it feel like a little extra time checking it is well spent.
1298 2013-08-21 19:28:43 <michagogo> Cool. How much is it?
1299 2013-08-21 19:28:55 <michagogo> (on what order of magnitude?)
1300 2013-08-21 19:29:03 <warren> greater than 1 satoshi
1301 2013-08-21 19:30:02 <gmaxwell> depends on activity level and some known only to theymos magic, last month I got 3 BTC which is by far the most I've gotten from it.
1302 2013-08-21 19:30:33 <gmaxwell> it's mostly been about 1 BTC a month or so, for me. Some of the global moderators get quite a bit more, but they're also spending a whole lot of time on it.
1303 2013-08-21 19:31:00 <michagogo> Wow, nice
1304 2013-08-21 19:31:41 Applicat_ has joined
1305 2013-08-21 19:31:58 sensorii has joined
1306 2013-08-21 19:31:59 <Luke-Jr> Krellan: probably, thanks for the report
1307 2013-08-21 19:32:15 <marcusw> gmaxwell: and that's all from donations?
1308 2013-08-21 19:32:46 <gmaxwell> marcusw: the forum has non-trivial income from the advertising on it.
1309 2013-08-21 19:33:49 <marcusw> the fun question is, how much does theymos make?
1310 2013-08-21 19:34:44 <gmaxwell> marcusw: a kazillion. No doubt. But ... like .. running the bitcoin forum, you have to be some kind of madman to run that place anyways.
1311 2013-08-21 19:34:54 Application has quit (Ping timeout: 245 seconds)
1312 2013-08-21 19:35:43 toffoo has joined
1313 2013-08-21 19:35:53 <marcusw> lol
1314 2013-08-21 19:36:05 <marcusw> it's nice that he pays in BTC
1315 2013-08-21 19:36:42 sacredchao has joined
1316 2013-08-21 19:37:41 _jps has joined
1317 2013-08-21 19:37:43 gaantr2 has quit (Ping timeout: 256 seconds)
1318 2013-08-21 19:38:05 bitbitbyte has quit (Quit: Lämnar)
1319 2013-08-21 19:38:16 gaantr2 has joined
1320 2013-08-21 19:38:30 darkee has joined
1321 2013-08-21 19:38:39 gaantr2 is now known as Guest5159
1322 2013-08-21 19:40:31 random_cat has joined
1323 2013-08-21 19:40:38 cypher has joined
1324 2013-08-21 19:40:42 bitbitbyte has joined
1325 2013-08-21 19:43:46 rdponticelli has joined
1326 2013-08-21 19:47:13 ingsoc_ has quit (Quit: leaving)
1327 2013-08-21 19:53:26 <gmaxwell> OMG
1328 2013-08-21 19:53:35 <gmaxwell> I think I just invented something mildly awesome.
1329 2013-08-21 19:53:49 <gmaxwell> I have a way to _provably_ timelock bitcoins.
1330 2013-08-21 19:53:53 <michagogo> gmaxwell: Ooh?
1331 2013-08-21 19:54:01 <michagogo> How?
1332 2013-08-21 19:54:18 <gmaxwell> You have 10 BTC you want to be unspendable until 2014
1333 2013-08-21 19:54:56 <gmaxwell> You write a transaction with no inputs which pays 10 BTC to a new destination. The nlocktime is set to 2014.
1334 2013-08-21 19:55:28 <michagogo> Erm...
1335 2013-08-21 19:55:37 <gmaxwell> In the scriptsig for its input you set the sighash type to ANYONECANPAY. You set the signature to some random data.
1336 2013-08-21 19:55:43 <gmaxwell> Then you solve for the public key.
1337 2013-08-21 19:56:02 <gmaxwell> You have now computed your redemption transaction without the payment transaction existing.
1338 2013-08-21 19:56:14 <gmaxwell> then you pay your coins you want to lock to that address.
1339 2013-08-21 19:56:24 CheckDavid has joined
1340 2013-08-21 19:56:33 jevin has quit (Quit: Textual IRC Client: www.textualapp.com)
1341 2013-08-21 19:56:44 Coincidental has joined
1342 2013-08-21 19:57:31 <marcusw> you can solve for pubkey with sig+hash? 0.o
1343 2013-08-21 19:57:37 <gmaxwell> marcusw: yes.
1344 2013-08-21 19:58:22 <marcusw> what crypto is that?
1345 2013-08-21 19:58:48 <gmaxwell> Works fine for ECDSA.
1346 2013-08-21 19:59:25 * michagogo doesn't understand gmaxwell's plan because he doesn't know all the very-base-level details, like what a sighash is
1347 2013-08-21 20:00:40 <gmaxwell> oh darn, it won't work because of course ANYONECANPAY still binds the single input.
1348 2013-08-21 20:00:40 PrimeStunna has quit (Ping timeout: 264 seconds)
1349 2013-08-21 20:00:40 <marcusw> lol ECDSA
1350 2013-08-21 20:00:40 <Scrat> it's a salute of the dev army
1351 2013-08-21 20:00:40 * Scrat sig hashes michagogo
1352 2013-08-21 20:00:47 <marcusw> fuck one thing up and you can solve algebraically for the privkey
1353 2013-08-21 20:02:14 Applicat_ has quit (Remote host closed the connection)
1354 2013-08-21 20:02:14 <gmaxwell> marcusw: A lot of signature systems have that property, in fact depending on how you define "one thing" they all do.
1355 2013-08-21 20:02:52 <marcusw> gmaxwell: but dupe IVs causing privkey leaks with trivial effort?
1356 2013-08-21 20:03:26 Application has joined
1357 2013-08-21 20:03:27 <gmaxwell> marcusw: sure, any DSA has that property.
1358 2013-08-21 20:03:35 <gmaxwell> marcusw: though it's trivially solved.
1359 2013-08-21 20:03:59 <marcusw> kinda seems a little risky, hmm?
1360 2013-08-21 20:04:04 Applicat_ has joined
1361 2013-08-21 20:04:32 <michagogo> Also that's not a problem if have a good source of entropy OR you don't reuse addresses (though the second one's not entirely up to you, of course)
1362 2013-08-21 20:04:46 <michagogo> BTW, how large can the R value be>
1363 2013-08-21 20:04:48 <michagogo> be?*
1364 2013-08-21 20:05:06 PrimeStunna has joined
1365 2013-08-21 20:07:55 Application has quit (Ping timeout: 256 seconds)
1366 2013-08-21 20:09:39 patcon_ has joined
1367 2013-08-21 20:10:24 patcon has quit (Read error: Connection reset by peer)
1368 2013-08-21 20:11:36 <gmaxwell> michagogo: R is a point on our curve.
1369 2013-08-21 20:11:44 <gmaxwell> marcusw: whats risky?
1370 2013-08-21 20:12:07 digitalmagus2 has quit (Ping timeout: 245 seconds)
1371 2013-08-21 20:12:21 <gmaxwell> michagogo: 'good source of entropy' just has certificaiton problems. Someone gives you a black box signing tool. How can you tell if its evil?
1372 2013-08-21 20:12:42 <michagogo> [23:11:17] <gmaxwell> michagogo: R is a point on our curve.
1373 2013-08-21 20:12:42 <michagogo> Hmm?
1374 2013-08-21 20:12:54 <gmaxwell> michagogo: in any case, derandomized dsa solves this, and I'd like the bitcoin ecosystem to switch to derandomized dsa (and have been whining about that for a long time)
1375 2013-08-21 20:12:59 digitalmagus2 has joined
1376 2013-08-21 20:13:22 <michagogo> Does a switch to derandomized dsa allow for backwards compatibility, or is it a hardfork?
1377 2013-08-21 20:13:36 <gmaxwell> It's fully compatible.
1378 2013-08-21 20:13:46 <michagogo> How does it differ
1379 2013-08-21 20:13:47 <michagogo> ?
1380 2013-08-21 20:14:55 <gmaxwell> The details of any particular scheme are slightly more complicated, but effectively you set K = H(hashed-message || private key).
1381 2013-08-21 20:15:02 denisx has quit (Quit: denisx)
1382 2013-08-21 20:16:42 jevin has joined
1383 2013-08-21 20:16:45 <marcusw> so why haven't we switched?
1384 2013-08-21 20:17:35 digitalmagus2 has quit (Ping timeout: 264 seconds)
1385 2013-08-21 20:19:25 arioBarzan has quit (Remote host closed the connection)
1386 2013-08-21 20:20:56 <gmaxwell> marcusw: because no one that needs to switch thinks they need to by definition.  ... Also, until recently, there wasn't a published standard for doing derandomized DSA, so it was easy to be cryptoparanoid about any particular approach someone might have suggested.
1387 2013-08-21 20:22:20 digitalmagus2 has joined
1388 2013-08-21 20:22:32 Detritus has quit (Quit: Konversation terminated!)
1389 2013-08-21 20:23:12 patcon has joined
1390 2013-08-21 20:24:10 CodeShark has quit (Ping timeout: 240 seconds)
1391 2013-08-21 20:26:07 viperhr1 has quit (Read error: No route to host)
1392 2013-08-21 20:26:32 viperhr1 has joined
1393 2013-08-21 20:26:33 patcon_ has quit (Ping timeout: 240 seconds)
1394 2013-08-21 20:26:35 swulf-- has quit (Ping timeout: 264 seconds)
1395 2013-08-21 20:27:31 sserrano44 has quit (Quit: Computer has gone to sleep.)
1396 2013-08-21 20:30:54 Diapolis has quit (Remote host closed the connection)
1397 2013-08-21 20:31:20 Scrat is now known as Scratbear
1398 2013-08-21 20:32:07 Coincidental has quit (Ping timeout: 256 seconds)
1399 2013-08-21 20:33:42 Scratbear is now known as Scrat
1400 2013-08-21 20:35:09 <sipa> warren: are you saying i never did a gitian build?
1401 2013-08-21 20:35:36 Coincidental has joined
1402 2013-08-21 20:36:00 coeus has joined
1403 2013-08-21 20:36:41 nsillik has quit (Quit: nsillik)
1404 2013-08-21 20:36:54 <michagogo> ...what?
1405 2013-08-21 20:36:54 paracyst has quit (Read error: Connection reset by peer)
1406 2013-08-21 20:37:01 * michagogo checks his email
1407 2013-08-21 20:37:28 GordonG3kko has quit (Ping timeout: 240 seconds)
1408 2013-08-21 20:37:35 paracyst has joined
1409 2013-08-21 20:39:00 <michagogo> Ah
1410 2013-08-21 20:39:10 Diapolis has joined
1411 2013-08-21 20:40:20 <michagogo> sipa: Er, he didn't say "s"...
1412 2013-08-21 20:41:44 GordonG3kko has joined
1413 2013-08-21 20:42:08 guruvan has quit (Ping timeout: 240 seconds)
1414 2013-08-21 20:42:28 sacredchao has quit (Ping timeout: 240 seconds)
1415 2013-08-21 20:42:48 Subo1977 has quit (Ping timeout: 240 seconds)
1416 2013-08-21 20:43:04 guruvan has joined
1417 2013-08-21 20:43:13 Subo1977 has joined
1418 2013-08-21 20:43:18 * [7] slaps michagogo :P
1419 2013-08-21 20:43:19 * michagogo slaps [7] around a bit with a large trout
1420 2013-08-21 20:43:27 sacredchao has joined
1421 2013-08-21 20:43:28 <michagogo> .w [7]
1422 2013-08-21 20:43:29 <michagogo> bah
1423 2013-08-21 20:43:45 <michagogo> [7]: Why?
1424 2013-08-21 20:43:59 <[7]> because these stupid quotations keep highlighting me :P
1425 2013-08-21 20:44:19 <michagogo> erm
1426 2013-08-21 20:44:36 <michagogo> Wait, what?
1427 2013-08-21 20:44:43 <michagogo> You highlight on the numeral 7?
1428 2013-08-21 20:44:49 <[7]> I highlight [7]
1429 2013-08-21 20:45:01 CodeShark has joined
1430 2013-08-21 20:45:02 <michagogo> Oh, LOL
1431 2013-08-21 20:45:07 <michagogo> The wikipedia article?
1432 2013-08-21 20:45:33 <[7]> yep. keeps happening once a week or so
1433 2013-08-21 20:45:49 <[7]> the number 7 seems to be used fairly often in references :/
1434 2013-08-21 20:46:50 Diapolis has quit (Read error: Connection reset by peer)
1435 2013-08-21 20:47:08 wiretapped has quit (Ping timeout: 240 seconds)
1436 2013-08-21 20:47:26 Diapolis has joined
1437 2013-08-21 20:49:33 wiretapped has joined
1438 2013-08-21 20:59:29 daktak has quit (Ping timeout: 245 seconds)
1439 2013-08-21 21:00:09 Applicat_ has quit (Remote host closed the connection)
1440 2013-08-21 21:00:54 daktak has joined
1441 2013-08-21 21:02:34 _jps has quit (Ping timeout: 240 seconds)
1442 2013-08-21 21:03:13 <sipa> why we need to split bitcoind from the wallet: http://www.reddit.com/r/Bitcoin/comments/1kt970/bitcoin_developers_need_api_to_analyze_the/cbse0k8
1443 2013-08-21 21:03:18 Anduckkk has joined
1444 2013-08-21 21:04:18 <warren> sipa: no
1445 2013-08-21 21:04:24 <gmaxwell> sipa: I don't actually understand whats being said there.  They're worried about people trying to get their private keys so they are using blockchain.info's api?
1446 2013-08-21 21:04:36 <gmaxwell> (not that I disagree with your conclusions in the slightest!!)
1447 2013-08-21 21:04:53 Anduck_ has joined
1448 2013-08-21 21:05:04 <warren> sipa: I'm saying that j, p and g, prominent devs have never contributed to gitian.sigs.
1449 2013-08-21 21:05:07 <SomeoneWeird> they don't want to use the API on a node that has keys
1450 2013-08-21 21:05:36 Anduck has quit (Read error: Operation timed out)
1451 2013-08-21 21:05:48 nomailing has joined
1452 2013-08-21 21:05:55 <sipa> gmaxwell: you may miss some context in the post they're replying to
1453 2013-08-21 21:06:20 <sipa> gmaxwell: the reason for not using bitcoind as an API is because that bitcoind also manages their wallet, and they can't run because of hardware constraints
1454 2013-08-21 21:06:29 <sipa> can't run 2
1455 2013-08-21 21:06:52 <sipa> warren: i have no clue what 'p' you're referring to then :)
1456 2013-08-21 21:07:00 <warren> sipa: he knows who he is. =)
1457 2013-08-21 21:07:04 <sipa> ok
1458 2013-08-21 21:07:24 <sipa> Ah.
1459 2013-08-21 21:07:27 Anduckkk has quit (Ping timeout: 246 seconds)
1460 2013-08-21 21:09:23 <Krellan> Luke-Jr: Thanks.  I experimented with this patch to perhaps work around floating-point rounding that would cause that percentage cosmetic display glitch: http://pastebin.com/YfaYwGDH
1461 2013-08-21 21:09:26 Anduck has joined
1462 2013-08-21 21:09:26 Anduck has quit (Changing host)
1463 2013-08-21 21:09:26 Anduck has joined
1464 2013-08-21 21:09:27 <gmaxwell> warren: so, how many patches should I fail to review in exchange for spending that time getting a secure gitian setup working? 10, 20? Whats the fair tradeoff?  Part of the notion of gitian is that anyone can run it. And in doing so they prove that the binaries match the source. You don't need to be a trusted person.
1465 2013-08-21 21:10:22 <warren> gmaxwell: yeah, I've been trying to convince random large numbers of community to join in gitian submission, largely it has been a failure.
1466 2013-08-21 21:11:12 <warren> gmaxwell: although, my port of the gitian stack continues to work great on fedora 19, just reinstalled a few days ago.  You can be gitian building in minutes.
1467 2013-08-21 21:11:41 Anduckkk has joined
1468 2013-08-21 21:11:42 Anduckkk has quit (Changing host)
1469 2013-08-21 21:11:42 Anduckkk has joined
1470 2013-08-21 21:11:49 Anduck_ has quit (Ping timeout: 264 seconds)
1471 2013-08-21 21:12:32 <gmaxwell> warren: Thanks for the reminder on that. I now have enough free space to try on my laptop. (I'd been trucking along with just a small ssd and upgraded to a .5tb one recently)  But really, you don't want to bug the committers to run it.
1472 2013-08-21 21:12:54 peetaur2 has quit (Quit: Konversation terminated!)
1473 2013-08-21 21:13:07 <warren> gmaxwell: I've been trying with oversubscribed cycles to get others to join...
1474 2013-08-21 21:13:18 <warren> brb, need food
1475 2013-08-21 21:13:59 BTCOxygen has quit (Ping timeout: 264 seconds)
1476 2013-08-21 21:14:22 Anduck has quit (Ping timeout: 264 seconds)
1477 2013-08-21 21:16:36 BTCOxygen has joined
1478 2013-08-21 21:16:41 Anduckkk has quit (Ping timeout: 276 seconds)
1479 2013-08-21 21:18:56 Anduck has joined
1480 2013-08-21 21:18:56 Anduck has quit (Changing host)
1481 2013-08-21 21:18:56 Anduck has joined
1482 2013-08-21 21:19:42 vrs has left ()
1483 2013-08-21 21:23:51 <gmaxwell> sipa: I'm still not sure on your read of that situation. I think he doesn't want to run bitcoind _at all_.  But I've asked a question that should clarify it.
1484 2013-08-21 21:24:51 Hadaka has quit (Ping timeout: 241 seconds)
1485 2013-08-21 21:29:33 reneg_ has joined
1486 2013-08-21 21:29:50 Detritus has joined
1487 2013-08-21 21:29:50 Detritus has quit (Client Quit)
1488 2013-08-21 21:29:56 CheckDavid has quit (Quit: Leaving)
1489 2013-08-21 21:31:10 reneg has quit (Ping timeout: 264 seconds)
1490 2013-08-21 21:31:41 Hadaka has joined
1491 2013-08-21 21:31:47 <gmaxwell> sipa: I think instead "dual server solution" to him means running bitcoind on one server, the webserver on another. ... and what he actually wants is a watch only wallet.
1492 2013-08-21 21:31:54 <gmaxwell> (or addr index)
1493 2013-08-21 21:32:11 <sipa> gmaxwell: yeah, i think you're right
1494 2013-08-21 21:33:55 <gmaxwell> I would suggest the encrypted wallet "watching wallet thing, but I think its too safely to really recommend to people.
1495 2013-08-21 21:33:59 <gmaxwell> "
1496 2013-08-21 21:34:30 <stingsay`> can some body please donate me
1497 2013-08-21 21:35:08 <sipa> stingsay`: no begging please
1498 2013-08-21 21:35:30 Namworld has joined
1499 2013-08-21 21:35:31 PrimeStunna has quit (Quit: PrimeStunna)
1500 2013-08-21 21:35:35 * gmaxwell donates stingsay` to sipa
1501 2013-08-21 21:35:53 <stingsay`> not begging . only testing i have first time install bitcion i am only testing
1502 2013-08-21 21:36:12 btcbtc has joined
1503 2013-08-21 21:36:19 <stingsay`> only one unit
1504 2013-08-21 21:36:21 Detritus has joined
1505 2013-08-21 21:36:30 <sipa> stingsay`: use testnet
1506 2013-08-21 21:36:32 <stingsay`> i am asking only one unit
1507 2013-08-21 21:36:37 <stingsay`> testnet
1508 2013-08-21 21:36:47 <stingsay`> sipa what is a testnet
1509 2013-08-21 21:36:48 <stingsay`> ??
1510 2013-08-21 21:36:54 <sipa> it's an alternate network, with almost the same rules as the bitcoin main network
1511 2013-08-21 21:36:59 <sipa> except its coins are worthless
1512 2013-08-21 21:37:13 <sipa> start bitcoind or bitcoin-qt with the '-testnet' command-line flag
1513 2013-08-21 21:37:27 <stingsay`> wow
1514 2013-08-21 21:37:31 <stingsay`> sipa thainsk
1515 2013-08-21 21:37:33 <stingsay`> thanks
1516 2013-08-21 21:37:55 <sipa> i believe there's a site where you can get free testnet coins
1517 2013-08-21 21:38:54 <gmaxwell> Nextime we reboot testnet perhaps we should make it so there is a magical 000000 txout that always exists and allows some faucet an infinite supply of coins. :P
1518 2013-08-21 21:39:41 Thepok has joined
1519 2013-08-21 21:40:39 <stingsay`> sipa you know Avalon ASIC alternative . or something similar with datasheet
1520 2013-08-21 21:41:21 reneg_ has quit (Read error: Connection reset by peer)
1521 2013-08-21 21:41:38 reneg has joined
1522 2013-08-21 21:43:09 AusBitBank has joined
1523 2013-08-21 21:43:44 c0rw1n has joined
1524 2013-08-21 21:44:03 <michagogo> stingsay`: Once you have testnet running (a couple ways to tell: the bitcoin icons will be green, and addresses start not with 1, but with m or n) you can get free testnet coins from http://testnet.mojocoin.com/ (rate-limited) and from http://tpfaucet.appspot.com/ (captcha'd)
1525 2013-08-21 21:45:06 <stingsay`> michagogo yes it's green but sync again 132 weeks
1526 2013-08-21 21:45:25 <michagogo> stingsay`: Yes, it's a separate blockchain, so you'll need to sync again
1527 2013-08-21 21:45:34 <michagogo> It should take less time than it did for mainnet.
1528 2013-08-21 21:45:50 <sipa> far far less
1529 2013-08-21 21:45:52 <stingsay`> oh
1530 2013-08-21 21:46:05 <stingsay`> ok thanks friends
1531 2013-08-21 21:47:14 BTCOxygen has quit (Ping timeout: 276 seconds)
1532 2013-08-21 21:47:15 BTCOxygen has joined
1533 2013-08-21 21:47:15 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
1534 2013-08-21 21:48:04 wamatt has joined
1535 2013-08-21 21:48:49 _jps has joined
1536 2013-08-21 21:52:35 sserrano44 has joined
1537 2013-08-21 21:52:42 BTCOxygen has joined
1538 2013-08-21 21:52:42 BTCOxygen is now known as Guest83004
1539 2013-08-21 21:52:42 Guest83004 has quit (Killed (leguin.freenode.net (Nickname regained by services)))
1540 2013-08-21 21:52:42 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
1541 2013-08-21 21:56:53 Application has joined
1542 2013-08-21 21:57:32 cris` has quit ()
1543 2013-08-21 21:57:32 Applicat_ has joined
1544 2013-08-21 21:59:36 cads has joined
1545 2013-08-21 22:00:05 Application has quit (Read error: Connection reset by peer)
1546 2013-08-21 22:00:07 patcon has quit (Remote host closed the connection)
1547 2013-08-21 22:00:18 Application has joined
1548 2013-08-21 22:00:29 michagogo has quit (Quit: goodnight)
1549 2013-08-21 22:04:23 Applicat_ has quit (Ping timeout: 264 seconds)
1550 2013-08-21 22:04:58 moarrr has joined
1551 2013-08-21 22:05:27 <Krellan> Luke-Jr: If acceptable I made a pull request for it.  https://github.com/luke-jr/bfgminer/pull/267
1552 2013-08-21 22:09:35 <dugo> 10k dumped at tpfaucet, hth
1553 2013-08-21 22:10:53 btcbtc has quit (Ping timeout: 256 seconds)
1554 2013-08-21 22:11:02 btcbtc has joined
1555 2013-08-21 22:13:17 chorao has joined
1556 2013-08-21 22:15:38 Applicat_ has joined
1557 2013-08-21 22:18:34 Application has quit (Ping timeout: 240 seconds)
1558 2013-08-21 22:21:44 charybdi1 has left ()
1559 2013-08-21 22:22:04 * dugo digresses and thinks the reCAPTCHA guys need to get some better lenses for their book scanners
1560 2013-08-21 22:23:47 Anduck has quit (Ping timeout: 245 seconds)
1561 2013-08-21 22:23:55 AusBitBank has quit (Ping timeout: 256 seconds)
1562 2013-08-21 22:25:37 btcbtc has quit (Ping timeout: 264 seconds)
1563 2013-08-21 22:27:14 btcbtc has joined
1564 2013-08-21 22:27:47 BlackPrapor has quit (Ping timeout: 264 seconds)
1565 2013-08-21 22:28:44 PrimeStunna has joined
1566 2013-08-21 22:28:47 btcbtc_ has joined
1567 2013-08-21 22:30:51 _jps has quit (Quit: _jps)
1568 2013-08-21 22:31:51 btcbtc has quit (Ping timeout: 256 seconds)
1569 2013-08-21 22:32:10 freewil has joined
1570 2013-08-21 22:33:11 yubrew has quit (Remote host closed the connection)
1571 2013-08-21 22:33:47 yubrew has joined
1572 2013-08-21 22:37:07 HaltingState2 has quit (Remote host closed the connection)
1573 2013-08-21 22:37:32 HaltingState has joined
1574 2013-08-21 22:37:32 HaltingState has quit (Changing host)
1575 2013-08-21 22:37:32 HaltingState has joined
1576 2013-08-21 22:40:40 roconnor has joined
1577 2013-08-21 22:40:54 normanrichards has joined
1578 2013-08-21 22:44:12 Goonie has quit (Remote host closed the connection)
1579 2013-08-21 22:44:24 toffoo has quit (Ping timeout: 246 seconds)
1580 2013-08-21 22:46:58 BTCOxygen has joined
1581 2013-08-21 22:46:58 BTCOxygen is now known as Guest25142
1582 2013-08-21 22:46:58 Guest25142 has quit (Killed (sendak.freenode.net (Nickname regained by services)))
1583 2013-08-21 22:46:58 BTCOxygen is now known as 1!~BTCOxygen@unaffiliated/oxygen|BTCOxygen
1584 2013-08-21 22:48:02 btcquant has joined
1585 2013-08-21 22:50:01 egis has quit (Quit: Leaving)
1586 2013-08-21 22:50:38 freewil has quit (Remote host closed the connection)
1587 2013-08-21 22:52:07 _jps has joined
1588 2013-08-21 22:53:41 btcbtc_ has quit (Quit: btcbtc_)
1589 2013-08-21 23:07:17 normanrichards has quit (Read error: Connection reset by peer)
1590 2013-08-21 23:08:40 _jps has quit (Quit: _jps)
1591 2013-08-21 23:10:31 yubrew_ has joined
1592 2013-08-21 23:10:49 Lolcust has quit (Ping timeout: 248 seconds)
1593 2013-08-21 23:12:39 digitalmagus2 has quit (Ping timeout: 256 seconds)
1594 2013-08-21 23:13:06 digitalmagus2 has joined
1595 2013-08-21 23:13:13 Lolcust has joined
1596 2013-08-21 23:18:23 roconnor has quit (Quit: Konversation terminated!)
1597 2013-08-21 23:18:51 bakingbread has quit (Ping timeout: 260 seconds)
1598 2013-08-21 23:19:15 Nesetalis has quit (Quit: <+shponka> how does one scissor with four people <+shponka> hypercube tribadism)
1599 2013-08-21 23:20:19 AusBitBank has joined
1600 2013-08-21 23:22:18 cris` has joined
1601 2013-08-21 23:23:35 cris` has left ()
1602 2013-08-21 23:23:53 cris has joined
1603 2013-08-21 23:27:26 chorao has quit (Read error: Connection reset by peer)
1604 2013-08-21 23:27:37 chorao has joined
1605 2013-08-21 23:27:43 chorao has quit (Changing host)
1606 2013-08-21 23:27:43 chorao has joined
1607 2013-08-21 23:28:00 oPen_syLar has joined
1608 2013-08-21 23:28:00 oPen_syLar has quit (Changing host)
1609 2013-08-21 23:28:00 oPen_syLar has joined
1610 2013-08-21 23:31:53 Application has joined
1611 2013-08-21 23:32:20 sserrano44 has quit (Quit: Computer has gone to sleep.)
1612 2013-08-21 23:35:09 Applicat_ has quit (Ping timeout: 256 seconds)
1613 2013-08-21 23:36:41 BurtyBB has joined
1614 2013-08-21 23:38:52 PrimeStunna has quit (Quit: PrimeStunna)
1615 2013-08-21 23:39:29 random_cat has quit (Ping timeout: 240 seconds)
1616 2013-08-21 23:39:29 MobiusL has quit (Ping timeout: 240 seconds)
1617 2013-08-21 23:39:37 BurtyB has quit (Ping timeout: 248 seconds)
1618 2013-08-21 23:40:10 zer0def has quit (Ping timeout: 240 seconds)
1619 2013-08-21 23:40:17 wei_ has joined
1620 2013-08-21 23:40:23 rdymac has joined
1621 2013-08-21 23:41:21 Eiii has joined
1622 2013-08-21 23:44:10 viperhr1 has quit (Ping timeout: 240 seconds)
1623 2013-08-21 23:45:17 random_cat has joined
1624 2013-08-21 23:46:24 maxime01 has quit (Ping timeout: 250 seconds)
1625 2013-08-21 23:47:26 Applicat_ has joined
1626 2013-08-21 23:48:13 btcquant has quit (Quit: Textual IRC Client: www.textualapp.com)
1627 2013-08-21 23:48:32 moarrr has quit ()
1628 2013-08-21 23:49:16 BTCOxygen has quit (Ping timeout: 240 seconds)
1629 2013-08-21 23:49:29 BTCOxygen has joined
1630 2013-08-21 23:50:13 Application has quit (Ping timeout: 264 seconds)
1631 2013-08-21 23:50:40 MobiusL has joined
1632 2013-08-21 23:50:49 bakingbread has joined
1633 2013-08-21 23:51:09 santoscork has left ()
1634 2013-08-21 23:51:19 Coincidental has quit (Remote host closed the connection)
1635 2013-08-21 23:51:19 PRab has joined
1636 2013-08-21 23:51:42 BCBot has quit (Remote host closed the connection)
1637 2013-08-21 23:51:58 BCBot has joined
1638 2013-08-21 23:56:28 Goonie has joined
1639 2013-08-21 23:56:53 <Goonie> gavinandresen: ping
1640 2013-08-21 23:57:02 <gavinandresen> pong
1641 2013-08-21 23:57:12 <Goonie> re BIP70: I just thought that PaymentDetails/payment_url should be a list 0..x of urls. How should the merchant know the capabilities of the customer? He should provide all alternatives he can handle.
1642 2013-08-21 23:57:14 Thepok has quit (Ping timeout: 276 seconds)
1643 2013-08-21 23:57:42 <Goonie> with capabilities, I mean he could be able to handle TCP/IP, bluetooth or wifi direct
1644 2013-08-21 23:57:47 <Goonie> or just a subset of those
1645 2013-08-21 23:57:51 nomailing has quit (Quit: nomailing)
1646 2013-08-21 23:58:17 <sipa> i think the best to deal with that, is always use the protocol through which the customer got it
1647 2013-08-21 23:58:30 <sipa> the payment request, that is
1648 2013-08-21 23:58:39 <Goonie> well that will likely be NFC or a QR code
1649 2013-08-21 23:58:56 <gavinandresen> Goonie: just add extension fields to the PaymentDetails-- e.g. wifi_uri  … with whatever wacky syntax for wifi direct....
1650 2013-08-21 23:59:38 reneg_ has joined