wumpus changed the topic of #bitcoin-wizards to: This channel is is for discussing theoretical ideas with regard to cryptocurrencies, not about short-term Bitcoin development | http://bitcoin.ninja/ | This channel is logged. | For logs and more information, visit http://bitcoin.ninja
rusty has quit [Ping timeout: 255 seconds]
<bramc> Now I'm wondering when/how triggering of a reorg based on a block being too small should be done
archbserver has joined #bitcoin-wizards
archbserver has quit [Remote host closed the connection]
archobserver has joined #bitcoin-wizards
<Eliel> So, I'm inclined to make some effort towards writing a privacy focused input selector for a wallet software. Would you happen to have pointers on how to go about it? Is that even possible assuming the user does nothing to help the wallet do it?
PaulCapestany has quit [Quit: .]
<kanzure> perhaps start by assuming user is maximally helpful, then back off from there once you have a good implementation for an expert user
<Eliel> now if I only had an expert user somewhere :)
<adlai> Eliel: not pointers of what to do, but here's joinmarket's current approach: https://github.com/chris-belcher/joinmarket/wiki/Configuring-with-joinmarket.cfg#input-merging-policy
<adlai> it lacks any information on how closely "tainted" to eachother the possible inputs are. this information could lead to better choices, since your wallet could already have some correlated inputs which you might as well merge
PaulCapestany has joined #bitcoin-wizards
<gmaxwell> Eliel: well the coinselecter in bitcoin core is arguably 'privacy focused' so long as the user _never_ reuses addresses. :P
<gmaxwell> (bad assumption ...)
<Eliel> :)
<gmaxwell> in any case bitcoin core has code that identifies common spending (and makes address gruops). making the coinselector select address groups and not coins, then try to spend all the coins in the group at once (danger: sane handling of dust floods), would probably be much better than what it does today.
AnoAnon has joined #bitcoin-wizards
<gmaxwell> related, if there is a lot of change, it could be useful to randomly decide to either split the change in half, or (if the change is more than the output) set one change output to be equal to the payment amount.
<gmaxwell> which would keep which txout was the payment more private.
AnoAnon has quit [Read error: Connection reset by peer]
virtualFudge has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
<Eliel> I already have some code that creates more change outputs sometimes. It could probably use some randomization though.
<adlai> if it looks like a coinjoin, and quacks like a coinjoin, it must've been a coinjoin!
rusty has joined #bitcoin-wizards
<gmaxwell> adlai: funny that.
* adlai has a whole collection of false positives
<adlai> by volume, they're a rounding error; but if you just count transactions, joinmarket becomes the rounding error
chris13243 has quit [Read error: Connection reset by peer]
<gmaxwell> adlai: how do you know they're false positives?
<gmaxwell> one of the neatest way of using a CJ is a CJpayment, Where I you want me to pay you, so you have me coinjoin with you where you walk away $amount richer.
<adlai> no subset sum matches between inputs and outputs, or at least, not in a pattern which is produced by joinmarket... it could be one of the other "coinjoin" implementations
bendavenport has quit [Quit: bendavenport]
<adlai> right, but that requires that the recipient have enough coins to begin with
<gmaxwell> have any coins.
<adlai> if you're rich enough, you can make a fake ten-party coinjoin where the real recipient (who has no coins initially) is just one of the "change" outputs
<gmaxwell> e.g. you want me to pay you 4. you have one, you give me the 1 txin, I provide a 6 txin, and the tx has 5 out to you and 2 out to me.
<Eliel> adlai: I suspect that set might contain quite a few transactions that I could find in wallet on one of the servers I admin. No coinjoin's there, but they might seem like coinjoins sometimes.
<belcher> a problem with fake coinjoins is you must never combine the inputs again
<gmaxwell> so then some privacy invader who thinks they can identify coinjoins now incorrectly thinks that you and I are the same party.
<belcher> err, outputs
<adlai> is there any writeup/PoC of CJpayment? it sounds like what the Payment Protocol should be doing, instead of checking CA certs...
<gmaxwell> belcher: I can imaine that CJs sometimes rejoin, but... even if you don't avoid doing that, having it sometimes work is better than not trying (particularly if the users aren't even aware of this going on)
<belcher> yes agreed, in the context of this utxo-selecting-for-core
<gmaxwell> adlai: I suggested it at some point for payment protocol, but there was zero interest from anyone doing payment protocol stuff, so I didn't spec it out... PP seems kind of DOA.
<gmaxwell> I wish there were a way to measure usage of it, though informally it doesn't seem to get that much.
<belcher> its a pity, PP is nice
<belcher> you can actually use PP?!
<bramc> My conclusion about trying to improve privacy with coin selection algorithms is that everything sucks.
<gmaxwell> In core we get no bug reports or feature requests related to it, and I've not heard of small wallets that don't support it being asked to support it.
<gmaxwell> nor has anyone asked us for cli/rpc support for it in core.
<gmaxwell> AFAIK.
<Eliel> bramc: well, there's always the difference between crappy and downright awful :P
<gmaxwell> There is something to be said for best effort being better than no effort, even if its not that great.
mdavid613 has quit [Quit: Leaving.]
<adlai> belcher: most/all coinbase (and bitpay?) payment requests are compatible with PP, but the sending wallet needs to support it. schildbach's wallet does, and i've used it... once
<belcher> i thought it was only an idea so far
<belcher> could it be extended to use multisig for consumer protection ?
<belcher> pubkeys and refund address and so on
<adlai> iirc it already supports the recipient specifying a distribution rather than a single (address,amount)
<jcorgan> o.O?
<bramc> Here's a list of possible strategies: Use oldest coins first. Use newest coins first. Use largest coins first. Use smallest coins first.
<Luke-Jr> belcher: there is a refund address, but you can't do escrow with it
<bramc> I can't even tell which of those is better than the others for privacy.
<Luke-Jr> (the recipient can use multisig, but it's not useful for escrow)
<Luke-Jr> bramc: I like "use newest coins with sufficient priority"
<belcher> could the parties agree on pubkeys to derive a multisig address
<adlai> bramc: using larger coins lets you delay merges, but as you've written in your fee post, you'll pay for / merge the dust eventually one way or another
<bramc> Luke-Jr, Define 'priority' and 'better'
<jcorgan> i'd love to see senders and recipients be able to negotiate a transfer of X amount of BTC through multiple TXes so facilitate "never merge up" poliies
<jcorgan> policies
<bramc> adlai, Yes my conclusion working on that post was that it matters much less than you'd expect.
<Luke-Jr> bramc: "priority" is typically defined as "value of each input multiplied by how many blocks confirmed it is, all combined"
<jcorgan> like paying $10.52 with 2 fives, 2 quarters, and a dime which you happen to have
<Luke-Jr> (I didn't use the word "better")
* adlai and belcher have been discussing prioritizing coinjoin counterparties by BDD or "contribution to resulting tx priority", so it matters more than you'd expect :P
<bramc> Luke-Jr, You answered my question about which is 'best'
<adlai> the idea being that if you prioritize by priority, an incentive emerges to actually enlarge the anonymity set, rather than just dancing around in more fungible patterns
<Luke-Jr> bramc: just saying I like it ;)
<Luke-Jr> "best" is likely to be subjective
<gmaxwell> PP has something of a design flaw where the refund address thing is not very useful because there is no strong promise that the payee will get the PP message IF they get the transaction.
<adlai> enter CT :)
<jgarzik> I like the idea of common denominations - makes it much easier to do some privacy stuff like mixing, and assists in making the wallet less fragmentation-prone
<Luke-Jr> gmaxwell: you mean a non-compliant wallet might broadcast the payment transaction directly, rather than only send it to the merchant over PP?
<jcorgan> jgarzik: exactly
<gmaxwell> adlai: for joinmarket I think you have a problem that many of the joins are likely graph identifyable because the makers are fixed points.. and keep recycling coins join after join.
<gmaxwell> Luke-Jr: you're not prohibited from broadcasting directly. :(
<Luke-Jr> hrm, was that removed? or am I imagining things?
Ylbam has quit [Quit: Connection closed for inactivity]
PaulCapestany has quit [Quit: .]
PaulCapestany has joined #bitcoin-wizards
<adlai> gmaxwell: yes. belcher's "patientsendpayment" is supposed to alleviate that, by making all market participants act as makers, with some sporadically initiating transactions... i'd also like to see more makers offering "negative fees", which would make the patient algorithm more sensible
<jcorgan> A: send me X BTC. B: ok, i need 3 addresses. A: ok, here are 3 new addresses. B: here are three TXes that total X BTC for you. A: got them all, confirmed, thanks!
<Luke-Jr> jcorgan: too many round-trips. remember this may be over QR codes and/or email :/
<gmaxwell> adlai: I think it could be improved by makers also offering a coinswap market using the same coins.
<adlai> doesn't the payment protocol already support providing multiple addresses?
<gmaxwell> adlai: it does, dunno if any clients do anything with it.
<jcorgan> Luke-Jr: true, but i was thinking more of an online negotiation
<jcorgan> adlai: the sender needs to determine how many addresses it needs from the receiver based on what UTXOs it has to spend
mrkent has quit []
<adlai> gmaxwell: https://gist.github.com/adlai/976d308efdb2e886ecb9 (which should probably be turned into a proper joinmarket issue)
<jcorgan> i think PP just lets receiver blindly spec one or more addresses
<jcorgan> the overall idea is that there would be a "meta" transaction whose state is tracked by the participants, but it would consist of one or more low-level TXes getting confirmed
<jcorgan> again the goal would be to allow the sender to choose multiple UTXOs and use multiple TXes to avoid merging any UTXOs in a single TX
<Luke-Jr> jcorgan: better to coinjoin to a single destination
<adlai> better = cheaper, both for the counterparties and for the commons; but the counterparties sacrifice privacy.
<Luke-Jr> not using coinjoins..
<jcorgan> Luke-Jr: i'm not following you
<adlai> coinjoin to a single destination suggests a specific amount transacted, although confidential values help. but even then it creates links in the transaction graph, which coinswap avoids
<adlai> (and jcorgan's suggestion maps directly to using multiple coinswaps)
orik has quit [Quit: Textual IRC Client: www.textualapp.com]
AaronvanW has quit [Ping timeout: 246 seconds]
Burrito has quit [Ping timeout: 260 seconds]
virtualFudge has joined #bitcoin-wizards
Jeremy_Rand_ has quit [Ping timeout: 246 seconds]
amiller has joined #bitcoin-wizards
amiller has quit [Client Quit]
belcher has quit [Quit: Leaving]
Jeremy_Rand_ has joined #bitcoin-wizards
amiller has joined #bitcoin-wizards
<adlai> recent "false positive" (ie, not joinmarket) coinjoin: http://webbtc.com/tx/382413a3cd0a8be5b7168e7c8e893883d26188aef22f5a586c6e17675f33aaf2
CodeShark has quit []
CodeShark has joined #bitcoin-wizards
CodeShark has quit [Remote host closed the connection]
CodeShark has joined #bitcoin-wizards
hulkhogan_ has joined #bitcoin-wizards
c0rw1n is now known as c0rw|zZz
Teffers has joined #bitcoin-wizards
benjyzw_ has joined #bitcoin-wizards
virtualFudge has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
[7] has quit [Disconnected by services]
TheSeven has joined #bitcoin-wizards
benjyzw has quit [Ping timeout: 255 seconds]
sparetire_ has quit [Quit: sparetire_]
virtualFudge has joined #bitcoin-wizards
Teffers has quit [Read error: Connection reset by peer]
rusty has quit [Ping timeout: 260 seconds]
matsjj has joined #bitcoin-wizards
matsjj has quit [Ping timeout: 260 seconds]
nivah has quit [Ping timeout: 240 seconds]
virtualFudge has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
harding has quit [Remote host closed the connection]
nivah has joined #bitcoin-wizards
Jeremy_Rand_ has quit [Read error: Connection reset by peer]
Jeremy_Rand_ has joined #bitcoin-wizards
virtualFudge has joined #bitcoin-wizards
virtualFudge has quit [Client Quit]
ThomasV has joined #bitcoin-wizards
bendavenport has joined #bitcoin-wizards
rustyn_ has joined #bitcoin-wizards
rustyn has quit [Ping timeout: 260 seconds]
sl01_ has quit [Remote host closed the connection]
LeMiner2 has joined #bitcoin-wizards
LeMiner has quit [Ping timeout: 246 seconds]
Ylbam has joined #bitcoin-wizards
Fistful_of_Coins has quit [Ping timeout: 244 seconds]
Fistful_of_Coins has joined #bitcoin-wizards
fkhan has quit [Ping timeout: 240 seconds]
fkhan has joined #bitcoin-wizards
fkhan has joined #bitcoin-wizards
fkhan has joined #bitcoin-wizards
matsjj has joined #bitcoin-wizards
matsjj has quit [Remote host closed the connection]
matsjj has joined #bitcoin-wizards
mjerr has joined #bitcoin-wizards
DougieBot5000 has quit [Quit: Leaving]
bendavenport has quit [Quit: bendavenport]
matsjj has quit [Ping timeout: 256 seconds]
matsjj has joined #bitcoin-wizards
davec has quit [Ping timeout: 272 seconds]
bedeho has quit [Ping timeout: 272 seconds]
davec has joined #bitcoin-wizards
ThomasV has quit [Ping timeout: 272 seconds]
poppingtonic has joined #bitcoin-wizards
orik has joined #bitcoin-wizards
matsjj_ has joined #bitcoin-wizards
matsjj has quit [Ping timeout: 240 seconds]
kyuupichan has joined #bitcoin-wizards
damethos has joined #bitcoin-wizards
jaromil has joined #bitcoin-wizards
fff has joined #bitcoin-wizards
dEBRUYNE has joined #bitcoin-wizards
ThomasV has joined #bitcoin-wizards
Jeremy_Rand_ has quit [Ping timeout: 250 seconds]
rustyn_ is now known as rustyn
rusty has joined #bitcoin-wizards
rubensayshi has joined #bitcoin-wizards
rusty has quit [Ping timeout: 240 seconds]
ThomasV has quit [Ping timeout: 240 seconds]
Emcy has joined #bitcoin-wizards
Emcy has joined #bitcoin-wizards
AaronvanW has joined #bitcoin-wizards
justanotheruser has quit [Ping timeout: 240 seconds]
bramc has quit [Quit: This computer has gone to sleep]
justanotheruser has joined #bitcoin-wizards
ryan-c has quit [Quit: ZNC - http://znc.sourceforge.net]
jmcn has quit [Ping timeout: 256 seconds]
jmcn has joined #bitcoin-wizards
jgarzik has quit [Quit: Leaving]
melvster has quit [Ping timeout: 252 seconds]
orik has quit [Quit: Textual IRC Client: www.textualapp.com]
jgarzik has joined #bitcoin-wizards
jgarzik has joined #bitcoin-wizards
ryan-c has joined #bitcoin-wizards
melvster has joined #bitcoin-wizards
poppingtonic has quit [Ping timeout: 246 seconds]
poppingtonic has joined #bitcoin-wizards
fff has quit [Quit: fff]
jtimon has joined #bitcoin-wizards
poppingtonic has quit [Read error: Connection reset by peer]
PRab has joined #bitcoin-wizards
PRab_ has quit [Ping timeout: 240 seconds]
rusty has joined #bitcoin-wizards
Giszmo has quit [Ping timeout: 250 seconds]
rusty has left #bitcoin-wizards [#bitcoin-wizards]
gill3s has joined #bitcoin-wizards
rusty has joined #bitcoin-wizards
rusty has left #bitcoin-wizards [#bitcoin-wizards]
airbreather has quit [Remote host closed the connection]
gill3s has quit [Quit: Textual IRC Client: www.textualapp.com]
ThomasV has joined #bitcoin-wizards
poppingtonic has joined #bitcoin-wizards
poppingtonic1 has joined #bitcoin-wizards
AaronvanW has quit [Ping timeout: 246 seconds]
poppingtonic has quit [Ping timeout: 250 seconds]
poppingtonic1 is now known as poppingtonic
AaronvanW has joined #bitcoin-wizards
jtimon has quit [Ping timeout: 272 seconds]
<yoleaux> nsh: Sorry, I don't know what timezone that is. If in doubt, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for a list of options.
<yoleaux> A proposal towards Decentralized Autonomous Workers Councils using the blockchain | P2P Foundation
c0rw|zZz is now known as c0rw1n
nivah has quit [Ping timeout: 256 seconds]
poppingtonic has quit [Remote host closed the connection]
poppingtonic has joined #bitcoin-wizards
benjyzw_ has quit [Quit: Lost terminal]
airbreather has joined #bitcoin-wizards
pigeons has quit [Ping timeout: 240 seconds]
pigeons has joined #bitcoin-wizards
pigeons is now known as Guest89666
b_lumenkraft has joined #bitcoin-wizards
sparetire_ has joined #bitcoin-wizards
poppingtonic has quit [Ping timeout: 255 seconds]
Myagui has quit [Ping timeout: 265 seconds]
eudoxia has joined #bitcoin-wizards
Guest76638 has joined #bitcoin-wizards
Guyver2 has joined #bitcoin-wizards
aj has quit [Remote host closed the connection]
bsm1175321 has joined #bitcoin-wizards
Giszmo has joined #bitcoin-wizards
Quanttek has joined #bitcoin-wizards
ThomasV has quit [Ping timeout: 250 seconds]
poppingtonic has joined #bitcoin-wizards
poppingtonic1 has joined #bitcoin-wizards
poppingtonic has quit [Ping timeout: 250 seconds]
poppingtonic1 is now known as poppingtonic
paveljanik has joined #bitcoin-wizards
paveljanik has quit [Changing host]
paveljanik has joined #bitcoin-wizards
poppingtonic1 has joined #bitcoin-wizards
c-cex-finch has quit [Quit: Connection closed for inactivity]
poppingtonic has quit [Ping timeout: 244 seconds]
poppingtonic1 is now known as poppingtonic
nwilcox has quit [Ping timeout: 240 seconds]
rustyn has quit [Read error: Connection reset by peer]
rustyn has joined #bitcoin-wizards
Guest76638 has quit [Quit: Leaving]
malte has quit [Ping timeout: 250 seconds]
Myagui-afk has joined #bitcoin-wizards
Greg__ has joined #bitcoin-wizards
Myagui-afk is now known as Myagui
harding has joined #bitcoin-wizards
CoinMuncher has joined #bitcoin-wizards
malte has joined #bitcoin-wizards
shen_noe has joined #bitcoin-wizards
MoALTz_ has joined #bitcoin-wizards
virtualFudge has joined #bitcoin-wizards
coryfields has joined #bitcoin-wizards
justanot1eruser has joined #bitcoin-wizards
ASTP001 has quit [Quit: bye bye~]
Taek42 has joined #bitcoin-wizards
luke-jr_ has joined #bitcoin-wizards
ASTP001 has joined #bitcoin-wizards
tromp has joined #bitcoin-wizards
ASTP001 has quit [Client Quit]
Starduster_ has joined #bitcoin-wizards
MagikSquirrel_ has joined #bitcoin-wizards
justanotheruser has quit [Disconnected by services]
justanot1eruser is now known as justanotheruser
Kireji_ has joined #bitcoin-wizards
jlrubin_ has joined #bitcoin-wizards
jbenet_ has joined #bitcoin-wizards
cfields has joined #bitcoin-wizards
OxADADA_ has joined #bitcoin-wizards
kanzure_ has joined #bitcoin-wizards
Eliel_ has joined #bitcoin-wizards
c-cex-yuriy has joined #bitcoin-wizards
MagikSquirrel_ has quit [Client Quit]
MagikSquirrel has quit [Disconnected by services]
DougieBot5000 has joined #bitcoin-wizards
GreenIsMyPepper_ has joined #bitcoin-wizards
s1w- has joined #bitcoin-wizards
MagikSquirrel has joined #bitcoin-wizards
execute_ has joined #bitcoin-wizards
__Greg has joined #bitcoin-wizards
Tenhi_0 has joined #bitcoin-wizards
alexkuck_ has joined #bitcoin-wizards
banana_lotus has joined #bitcoin-wizards
guruvan- has joined #bitcoin-wizards
cryptowest has joined #bitcoin-wizards
Greg__ has quit [*.net *.split]
PRab has quit [*.net *.split]
kyuupichan has quit [*.net *.split]
archobserver has quit [*.net *.split]
jbenet has quit [*.net *.split]
tromp__ has quit [*.net *.split]
OxADADA has quit [*.net *.split]
Kireji has quit [*.net *.split]
kanzure has quit [*.net *.split]
Logicwax has quit [*.net *.split]
MoALTz has quit [*.net *.split]
guruvan has quit [*.net *.split]
BananaLotus has quit [*.net *.split]
mariorz has quit [*.net *.split]
Krellan has quit [*.net *.split]
GreenIsMyPepper has quit [*.net *.split]
cryptowest_ has quit [*.net *.split]
cfields_ has quit [*.net *.split]
Luke-Jr has quit [*.net *.split]
coryfields_ has quit [*.net *.split]
Taek has quit [*.net *.split]
Starduster has quit [*.net *.split]
execute has quit [*.net *.split]
Tenhi_ has quit [*.net *.split]
alexkuck has quit [*.net *.split]
kisspunch has quit [*.net *.split]
lmatteis has quit [*.net *.split]
jlrubin has quit [*.net *.split]
Eliel has quit [*.net *.split]
huseby has quit [*.net *.split]
s1w has quit [*.net *.split]
banana_lotus is now known as BananaLotus
guruvan- is now known as guruvan
ThomasV has joined #bitcoin-wizards
eudoxia has quit [Quit: Leaving]
bedeho has joined #bitcoin-wizards
jbenet_ is now known as jbenet
c0rw1n has quit []
c0rw1n has joined #bitcoin-wizards
damethos has quit [Quit: Bye]
damethos has joined #bitcoin-wizards
damethos has quit [Client Quit]
PRab has joined #bitcoin-wizards
ASTP001 has joined #bitcoin-wizards
nwilcox has joined #bitcoin-wizards
lmatteis has joined #bitcoin-wizards
CodeShark__ has joined #bitcoin-wizards
archobserver has joined #bitcoin-wizards
Tenhi_0 is now known as Tenhi_
paci has quit [Quit: Leaving]
mariorz has joined #bitcoin-wizards
jtimon has joined #bitcoin-wizards
b_lumenkraft has quit [Ping timeout: 250 seconds]
Starduster_ is now known as Starduster
nivah has joined #bitcoin-wizards
Jeremy_Rand_ has joined #bitcoin-wizards
Dizzle has joined #bitcoin-wizards
virtualFudge has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
jtimon has quit [Ping timeout: 240 seconds]
b_lumenkraft has joined #bitcoin-wizards
paci has joined #bitcoin-wizards
zooko has joined #bitcoin-wizards
melvster has quit [Read error: Connection reset by peer]
melvster has joined #bitcoin-wizards
giel__ has joined #bitcoin-wizards
gielbier has quit [Ping timeout: 264 seconds]
giel__ has quit [Ping timeout: 255 seconds]
mdavid613 has joined #bitcoin-wizards
gielbier has joined #bitcoin-wizards
bedeho has quit [Ping timeout: 250 seconds]
gielbier has quit [Ping timeout: 250 seconds]
gielbier has joined #bitcoin-wizards
giel__ has joined #bitcoin-wizards
Burrito has joined #bitcoin-wizards
gielbier has quit [Ping timeout: 244 seconds]
bedeho has joined #bitcoin-wizards
Quanttek has quit [Ping timeout: 260 seconds]
bendavenport has joined #bitcoin-wizards
mrkent has joined #bitcoin-wizards
damethos has joined #bitcoin-wizards
gielbier has joined #bitcoin-wizards
giel__ has quit [Ping timeout: 260 seconds]
dEBRUYNE has quit [Ping timeout: 265 seconds]
Jeremy_Rand_ has quit [Read error: Connection reset by peer]
Jeremy_Rand_ has joined #bitcoin-wizards
nwilcox has quit [Ping timeout: 250 seconds]
ratbanebo has joined #bitcoin-wizards
rubensayshi has quit [Remote host closed the connection]
damethos has quit [Quit: Bye]
huseby has joined #bitcoin-wizards
Quanttek has joined #bitcoin-wizards
b_lumenkraft has quit [Quit: b_lumenkraft]
Quanttek has quit [Read error: Connection reset by peer]
jtimon has joined #bitcoin-wizards
Jeremy_Rand__ has joined #bitcoin-wizards
bendavenport has quit [Quit: bendavenport]
Jeremy_Rand_ has quit [Ping timeout: 265 seconds]
bendavenport has joined #bitcoin-wizards
poppingtonic has quit [Ping timeout: 260 seconds]
Jeremy_Rand__ has quit [Ping timeout: 244 seconds]
CoinMuncher has quit [Quit: Leaving.]
dEBRUYNE has joined #bitcoin-wizards
bramc has joined #bitcoin-wizards
Yoghur114 has joined #bitcoin-wizards
bramc has quit [Client Quit]
Greg__ has joined #bitcoin-wizards
ratbanebo has quit []
__Greg has quit [Ping timeout: 264 seconds]
ratbanebo has joined #bitcoin-wizards
mdavid613 has quit [Quit: Leaving.]
mdavid613 has joined #bitcoin-wizards
virtualFudge has joined #bitcoin-wizards
belcher has joined #bitcoin-wizards
thrasher` has quit [Ping timeout: 252 seconds]
thrasher` has joined #bitcoin-wizards
shaul has joined #bitcoin-wizards
bedeho has quit [Ping timeout: 260 seconds]
nwilcox has joined #bitcoin-wizards
matsjj_ has quit [Remote host closed the connection]
mjerr has quit [Ping timeout: 244 seconds]
melvster has quit [Ping timeout: 240 seconds]
bedeho has joined #bitcoin-wizards
mjerr has joined #bitcoin-wizards
nwilcox has quit [Ping timeout: 268 seconds]
melvster has joined #bitcoin-wizards
nwilcox has joined #bitcoin-wizards
mkarrer has quit []
bendavenport has quit [Quit: bendavenport]
CodeShark has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
CodeShark__ has quit []
CodeShark has joined #bitcoin-wizards
bendavenport has joined #bitcoin-wizards
ThomasV has quit [Quit: Quitte]
luke-jr_ is now known as Luke-Jr
poppingtonic has joined #bitcoin-wizards
shaul has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
skyraider has joined #bitcoin-wizards
crescendo has joined #bitcoin-wizards
TBI has quit [Quit: Leaving]
kanzure_ is now known as kanzure
orik has joined #bitcoin-wizards
ratbanebo has quit []
virtualFudge has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Kireji_ is now known as Kireji
Kireji has quit [Changing host]
Kireji has joined #bitcoin-wizards
matsjj has joined #bitcoin-wizards
orik has quit [Ping timeout: 265 seconds]
matsjj has quit [Ping timeout: 246 seconds]
rusty has joined #bitcoin-wizards
virtualFudge has joined #bitcoin-wizards
zooko has quit [Ping timeout: 240 seconds]
davispuh has joined #bitcoin-wizards
mkarrer has joined #bitcoin-wizards
zooko has joined #bitcoin-wizards
mjerr has quit [Ping timeout: 256 seconds]
paveljanik has quit [Quit: Leaving]
Guyver2 has quit [Quit: :)]
Greg__ has left #bitcoin-wizards [#bitcoin-wizards]
virtualFudge has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
zooko has quit [Ping timeout: 250 seconds]
matsjj has joined #bitcoin-wizards
Greg__ has joined #bitcoin-wizards
matsjj has quit [Ping timeout: 246 seconds]
nwilcox has quit [Ping timeout: 268 seconds]
bitcoin-wizards0 has joined #bitcoin-wizards
bitcoin-wizards0 has quit [Client Quit]
bit2017 has joined #bitcoin-wizards
Greg__ has left #bitcoin-wizards [#bitcoin-wizards]
nivah has quit [Ping timeout: 264 seconds]
virtualFudge has joined #bitcoin-wizards
dEBRUYNE has quit [Ping timeout: 244 seconds]
rusty has quit [Ping timeout: 244 seconds]
bramc has joined #bitcoin-wizards
orik has joined #bitcoin-wizards
orik has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
orik has joined #bitcoin-wizards
aj has joined #bitcoin-wizards
orik has quit [Client Quit]
nwilcox has joined #bitcoin-wizards
nwilcox has quit [Ping timeout: 256 seconds]
Newyorkadam has joined #bitcoin-wizards
nwilcox has joined #bitcoin-wizards
OxADADA_ is now known as OxADADA
bitcoin-wizards1 has joined #bitcoin-wizards
orik has joined #bitcoin-wizards
nwilcox has quit [Ping timeout: 244 seconds]
nwilcox has joined #bitcoin-wizards
bitcoin-wizards1 has quit [Ping timeout: 246 seconds]
bramc has quit [Quit: Leaving]
orik has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Tiraspol has quit [Ping timeout: 246 seconds]
skyraider has quit [Quit: Connection closed for inactivity]
orik has joined #bitcoin-wizards
DougieBot5000 has quit [Quit: Leaving]
shen_noe has quit [Quit: Leaving]
matsjj has joined #bitcoin-wizards
rusty has joined #bitcoin-wizards
matsjj has quit [Ping timeout: 240 seconds]
rusty has quit [Ping timeout: 250 seconds]
bsm1175321 has quit [Quit: Leaving.]
bsm1175321 has joined #bitcoin-wizards
_whitelogger has joined #bitcoin-wizards
SwedFTP has quit [Ping timeout: 256 seconds]
orik has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sipa has quit [Ping timeout: 256 seconds]
Giszmo has quit [Ping timeout: 268 seconds]
sipa has joined #bitcoin-wizards
DougieBot5000 has joined #bitcoin-wizards
Giszmo has joined #bitcoin-wizards
sipa has quit [Changing host]
sipa has joined #bitcoin-wizards