sipa changed the topic of #bitcoin-wizards to: This channel 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
<andytoshi> hi igno_peverell thank you for this
<andytoshi> are you using the voldemort sigs or the sinking signatures from the poelstra paper?
<kanzure> (batsignal worked)
chjj has joined #bitcoin-wizards
aalex has quit [Ping timeout: 260 seconds]
<igno_peverell> andytoshi: for now simple voldemort type sigs, but sinking signatures are in the TODO list
aalex has joined #bitcoin-wizards
<igno_peverell> nice addition btw
<andytoshi> igno_peverell: awesome, i think this is best for a while, (a) nobody understands sinking signatures, this is hard enough to explain and get mindshare without them, (b) they mess up the ergonomics of the system, (c) they interact badly with payment channels
<andytoshi> thanks :)
<andytoshi> kanzure: there is a non-incomplete draft now, one sec..
<kanzure> non-incomplete! big claim.
<andytoshi> lol
<andytoshi> igno_peverell: having said this, we can do schnorr-style aggregation like what sipa has been working on, and get space savings on top of the voldemort scheme without any user-visible changes
<igno_peverell> yes, there may be other construnctions to obtain the same effect but it's nice to see you've been thinking about it as well
<andytoshi> i'm glad you chose rust here, i'd put a bunch of work into a C implementation then got super frustrated with C and decided to switch to rust (but hadn't yet started cutting code)
<igno_peverell> I've also been thinking about the threat model of pruning range proofs
<andytoshi> afaict it's really bad, you can get unlimited inflation with one bad rangeproof :/
andytoshi is now known as grindeltoshi
<igno_peverell> right, I don't have something very concrete yet, mostly a feeling that once you have the UTXO merkle tree or the (head-X) block you've synced, you already have some guarantees assuming you can double check that with the rest of the network
<midnightmagic> grendeltoshi
<grindeltoshi> igno_peverell: yeah, that's true, you can definitely get SPV security of no-negative-outputs
<grindeltoshi> while still having full security of everything else
<igno_peverell> right, along a relaxed SPV-style model
<igno_peverell> I've kept the rangeproof out of output hashes for that reason
<igno_peverell> grindeltoshi: thank you for your secp256k1 Rust wrapper btw, I've had to extend it to support the zkp stuff
<grindeltoshi> igno_peverell: thanks very much, i had been putting this off because there is some API cleanup that i had wanted to do in secp256k1-zkp first
<grindeltoshi> but mimblewimble is more exciting, good that we've got something now :)
<igno_peverell> was my impression as well that the zkp stuff was still in progress, was planning to send a pull request your way eventually, once the dust settles
<grindeltoshi> that's a correct impression. the next version of elements, whenever that lands, will have API cleanups in it and also sign the output scripts (i think) (tho we don't care about this for MW which has no scripts)
Firescar96 has quit [Quit: The flame grows dim, I must rekindle]
<igno_peverell> grindeltoshi: MW is very cool, feel free to file issues if you find any problem with the impl
<grindeltoshi> igno_peverell: thanks. i might, i'll prefer to submit PRs, it's exciting to get this off the ground
<igno_peverell> PRs are even better
<grindeltoshi> i've been meaning to post a "here's my plan" doc on r/mimblewimble for a week, i keep getting distracted
<grindeltoshi> igno_peverell: so i think fast blocktimes are incompatible with cuckoo cycle
<igno_peverell> grindeltoshi: in which way?
rusty has quit [Quit: Leaving.]
<grindeltoshi> igno_peverell: an important feature of PoW is progress-freeness, that having a fast machine doesn't let you "race" other participants, but tromp's current implementation takes like 1.5min/Gb on 8 threads on a PC
<grindeltoshi> he says 4-5x speedup on a CPU, and there are probably some algorithmic speedups to be found
<grindeltoshi> but you want to have tens of thousands of attempts per blocktime per user to get reasonable progress-freeness
<grindeltoshi> tromp: does « for a given header, the odds of its graph having a 42-cycle are about 2.5% » on the cuckoo cycle README imply that a valid header will be found after (on average) 40 attempts?
<grindeltoshi> oh, no, i see, there's also a sha2 difficulty target, sorry
<igno_peverell> right, there are multiple knobs there, including connectivity and total graph size
Guest7 has quit [Quit: Textual IRC Client: www.textualapp.com]
up_dn has joined #bitcoin-wizards
<igno_peverell> I've been using a 2^20 size with 75% edges for tests so it's fast to run, default is 2^28 size with 75% edges as well
up_dn has quit [Client Quit]
<igno_peverell> I was meaning to try on seem beefy machine at some point and see what the numbers are like it terms of hashing per second
<igno_peverell> and the sha3 step with classic bitcoin-style difficulty target does the rest
<grindeltoshi> yep i see
<igno_peverell> I like Cuckoo because the implementation is short and simple and it's easy to grasp as a whole, I'm trying to keep the idea of simplicity that's in MW
so has quit [Quit: ...]
<grindeltoshi> yeah, i had also been leaning toward cuckoo cycle (though i had a chat with BlueMatt last week about centralization pressures and he convinced me that power distribution is not a critical one, which i had thought it was)
<grindeltoshi> so there is the standard worry about mem-hard PoW leading to expensive hardware that's cheap to run, meaning high barrier to entry, amortization for early players, and an entrenched oligopoly
<grindeltoshi> but it's simple and i'd like to experiment, so *shrug*
<igno_peverell> agree, no need to worry about hard forks yet :P
<grindeltoshi> igno_peverell: do you have block de/serialization? have you thought about the merkle tree structures you need?
<igno_peverell> grindeltoshi: block (de)ser is here but I've avoided the utxo merkle tree so far, just been thinking about it
<grindeltoshi> igno_peverell: can you serialize pruned blocks that are missing some txos?
<igno_peverell> yes
<igno_peverell> some of that logic is there
<grindeltoshi> ok, i'll poke more into this..
<nsh> oh is it cryptomas \o/
DigiByteDev has joined #bitcoin-wizards
<igno_peverell> aand the test case eight after
aalex has quit [Ping timeout: 260 seconds]
<igno_peverell> one is intra-block merge and the other is block addition
<grindeltoshi> what do you mean by "merging blocks", what do the commitments to utxos look like?
<grindeltoshi> it looks like you're making a new block with the old blocks' cut-through transactions, but what happens to the PoW?
up_dn has joined #bitcoin-wizards
Topogetcyrpto has quit [Quit: Topogetcyrpto]
<grindeltoshi> i think to get this to work properly the blocks need to retain their identity, you need to have a merkle structure that can be easily pruned (without changing the root)
<grindeltoshi> i did a bunch of work on this in the c code, i can work on this over the weekend..
igno_peverell has quit [Ping timeout: 265 seconds]
Burrito has quit [Quit: Leaving]
aalex has joined #bitcoin-wizards
chjj has quit [Quit: null]
chjj has joined #bitcoin-wizards
AaronvanW has quit [Remote host closed the connection]
AaronvanW has joined #bitcoin-wizards
AaronvanW has joined #bitcoin-wizards
AaronvanW has quit [Changing host]
rusty has joined #bitcoin-wizards
DigiByteDev has quit [Quit: DigiByteDev]
GreekMiner2 has quit [Quit: Nettalk6 - www.ntalk.de]
DigiByteDev has joined #bitcoin-wizards
veleiro has joined #bitcoin-wizards
DigiByteDev has quit [Quit: DigiByteDev]
up_dn has quit [Quit: up_dn]
kkode has joined #bitcoin-wizards
Topogetcyrpto has joined #bitcoin-wizards
DigiByteDev has joined #bitcoin-wizards
aalex has quit [Ping timeout: 260 seconds]
Alopex has quit [Remote host closed the connection]
Alopex has joined #bitcoin-wizards
veleiro has quit [Read error: Connection reset by peer]
harrymm has quit [Remote host closed the connection]
harrymm has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
DigiByteDev has quit [Quit: DigiByteDev]
alpalp has quit [Ping timeout: 245 seconds]
veleiro has joined #bitcoin-wizards
Topogetcyrpto has quit [Ping timeout: 250 seconds]
alpalp has joined #bitcoin-wizards
Dizzle has joined #bitcoin-wizards
Alopex has quit [Remote host closed the connection]
alpalp has quit [Ping timeout: 256 seconds]
Alopex has joined #bitcoin-wizards
aalex has quit [Ping timeout: 265 seconds]
aalex has joined #bitcoin-wizards
pro has quit [Quit: Leaving]
paveljanik has quit [Ping timeout: 265 seconds]
veleiro has quit [Ping timeout: 245 seconds]
veleiro has joined #bitcoin-wizards
roconnor has joined #bitcoin-wizards
aalex has quit [Ping timeout: 256 seconds]
legogris has quit [Remote host closed the connection]
legogris has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
aalex has quit [Ping timeout: 250 seconds]
shangzhou has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
nooblord has quit [Read error: Connection reset by peer]
Dizzle has quit [Remote host closed the connection]
Giszmo has quit [Quit: Leaving.]
Dizzle has joined #bitcoin-wizards
Alopex has quit [Remote host closed the connection]
Alopex has joined #bitcoin-wizards
roconnor has quit [Ping timeout: 260 seconds]
belcher has quit [Ping timeout: 250 seconds]
belcher has joined #bitcoin-wizards
GreekMiner has joined #bitcoin-wizards
Alopex has quit [Remote host closed the connection]
Alopex has joined #bitcoin-wizards
ghtdak has quit [Ping timeout: 258 seconds]
aalex has quit [Ping timeout: 250 seconds]
paveljanik has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
ghtdak has joined #bitcoin-wizards
veleiro has quit [Read error: Connection reset by peer]
Alopex has quit [Remote host closed the connection]
Alopex has joined #bitcoin-wizards
brguy has quit [Quit: Connection closed for inactivity]
jtimon has quit [Ping timeout: 252 seconds]
veleiro has joined #bitcoin-wizards
CrazyLoaf has quit [Quit: Connection closed for inactivity]
Dizzle has quit [Quit: Leaving...]
CrazyLoaf has joined #bitcoin-wizards
cyphase has quit [Ping timeout: 258 seconds]
shangzhou has quit [Quit: Connection closed for inactivity]
veleiro has quit [Ping timeout: 256 seconds]
veleiro has joined #bitcoin-wizards
Aranjedeath has quit [Quit: Three sheets to the wind]
cyphase has joined #bitcoin-wizards
veleiro has quit [Remote host closed the connection]
Topogetcyrpto has joined #bitcoin-wizards
Topogetcyrpto has left #bitcoin-wizards [#bitcoin-wizards]
rusty has left #bitcoin-wizards [#bitcoin-wizards]
Topogetcyrpto has joined #bitcoin-wizards
Topogetcyrpto has quit [Ping timeout: 256 seconds]
NewLiberty has quit [Ping timeout: 245 seconds]
ThomasV has joined #bitcoin-wizards
Topogetcyrpto has joined #bitcoin-wizards
domwoe has joined #bitcoin-wizards
domwoe has quit [Remote host closed the connection]
domwoe has joined #bitcoin-wizards
ThomasV has quit [Ping timeout: 252 seconds]
kisspunch has joined #bitcoin-wizards
kisspunch has quit [Client Quit]
kisspunch has joined #bitcoin-wizards
aalex has quit [Ping timeout: 260 seconds]
aalex has joined #bitcoin-wizards
aalex has quit [Ping timeout: 250 seconds]
aalex has joined #bitcoin-wizards
chjj has quit [Ping timeout: 256 seconds]
ThomasV has joined #bitcoin-wizards
gigq_ has quit [Ping timeout: 250 seconds]
chjj has joined #bitcoin-wizards
ThomasV has quit [Ping timeout: 265 seconds]
aalex has quit [Ping timeout: 260 seconds]
aalex has joined #bitcoin-wizards
droark has quit [Ping timeout: 245 seconds]
jannes has joined #bitcoin-wizards
laurentmt has joined #bitcoin-wizards
Guyver2 has joined #bitcoin-wizards
ThomasV has joined #bitcoin-wizards
lmatteis has joined #bitcoin-wizards
laurentmt has quit [Quit: laurentmt]
aalex has quit [Ping timeout: 252 seconds]
aalex has joined #bitcoin-wizards
CrazyLoaf has quit [Quit: Connection closed for inactivity]
dnaleor has quit [Quit: Leaving]
cyphase has quit [Ping timeout: 260 seconds]
aalex has quit [Max SendQ exceeded]
aalex has joined #bitcoin-wizards
cyphase has joined #bitcoin-wizards
Guyver2 has quit [Read error: Connection reset by peer]
Guyver2 has joined #bitcoin-wizards
shangzhou has joined #bitcoin-wizards
JackH has quit [Quit: Leaving]
nickler has quit [Ping timeout: 256 seconds]
NewLiberty has joined #bitcoin-wizards
<adlai> roasbeef: i think your confusion re:coinswap stems from the fact that the original is a 3-party proposal
<adlai> alice performs coinswap with an intermediary, causing the appearance of a payment at the target address with coins that are not linked back to alice
<adlai> "appearance of payment" is bad wording, i mean causing the payment to happen. (not appearance-as-in-illusion, but as-in-occurrence)
<adlai> the intermediary can collude with the receiver to expose alice, so imo the leakage flow is clearer when it's reformulated as a two-party protocol: https://gist.github.com/adlai/976d308efdb2e886ecb9
nickler has joined #bitcoin-wizards
Topogetcyrpto has quit [Ping timeout: 260 seconds]
JackH has joined #bitcoin-wizards
Topogetcyrpto has joined #bitcoin-wizards
Topogetcyrpto_ has joined #bitcoin-wizards
Topogetcyrpto has quit [Ping timeout: 252 seconds]
Topogetcyrpto_ is now known as Topogetcyrpto
DigiByteDev has joined #bitcoin-wizards
dnaleor has joined #bitcoin-wizards
Topogetcyrpto has quit [Ping timeout: 256 seconds]
Ylbam has joined #bitcoin-wizards
CrazyLoaf has joined #bitcoin-wizards
lmatteis has quit [Quit: Connection closed for inactivity]
JackH has quit [Quit: Leaving]
DigiByteDev has quit [Quit: DigiByteDev]
Giszmo has joined #bitcoin-wizards
pro has joined #bitcoin-wizards
shangzhou has quit [Quit: Connection closed for inactivity]
brguy has joined #bitcoin-wizards
ThomasV has quit [Ping timeout: 260 seconds]
c0rw1n has quit [Read error: Connection reset by peer]
c0rw1n has joined #bitcoin-wizards
laurentmt has joined #bitcoin-wizards
aalex has quit [Ping timeout: 244 seconds]
aalex has joined #bitcoin-wizards
laurentmt has quit [Quit: laurentmt]
laurentmt has joined #bitcoin-wizards
Guyver2 has quit [Read error: Connection reset by peer]
laurentmt has quit [Quit: laurentmt]
aalex has quit [Ping timeout: 256 seconds]
ThomasV has joined #bitcoin-wizards
jtimon has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
DigiByteDev has joined #bitcoin-wizards
DigiByteDev has quit [Ping timeout: 256 seconds]
harrow has quit [Remote host closed the connection]
aalex has quit [Ping timeout: 252 seconds]
Ylbam has quit [Quit: Connection closed for inactivity]
aalex has joined #bitcoin-wizards
TheSeven has joined #bitcoin-wizards
aalex has quit [Ping timeout: 252 seconds]
harrow has joined #bitcoin-wizards
alpalp has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
Anastasiya has joined #bitcoin-wizards
Guyver2 has joined #bitcoin-wizards
vghzfkgh has joined #bitcoin-wizards
alpalp has quit [Ping timeout: 256 seconds]
<wasi> http://mimblewimble.cash/ is now online.. with the idea to keep track of MW development. let me know if you think there is something missing or wrong.
vghzfkgh has quit [Remote host closed the connection]
vghzfkgh has joined #bitcoin-wizards
vghzfkgh has quit [Remote host closed the connection]
vghzfkgh has joined #bitcoin-wizards
veleiro has joined #bitcoin-wizards
vghzfkgh has quit [Remote host closed the connection]
vghzfkgh has joined #bitcoin-wizards
vghzfkgh has quit [Ping timeout: 250 seconds]
vghzfkgh has joined #bitcoin-wizards
vghzfkgh has quit [Remote host closed the connection]
vghzfkgh has joined #bitcoin-wizards
nooblord has joined #bitcoin-wizards
vghzfkgh has quit [Remote host closed the connection]
murch has joined #bitcoin-wizards
NewLiberty has quit [Ping timeout: 256 seconds]
NewLiberty has joined #bitcoin-wizards
<kanzure> "On the instability of Bitcoin without the block reward" http://randomwalker.info/publications/mining_CCS.pdf
<tromp> I emailed the grin (minimal MW impl) author about his/her improper use of Cuckoo Cycle
<bsm117532> Oooh! I've been thinking that for some time kanzure...
<kanzure> tromp: there were some questions in the backlog left for you http://gnusha.org/bitcoin-wizards/2016-10-20.log see near 17:30
<bsm117532> Hey look...2nd time the Lambert W function raises its head...
<tromp> thx, kanzure. will browse
paveljanik has quit [Ping timeout: 260 seconds]
<bsm117532> If the block reward were directly the hashcash (instead of convolving it through the time-based reward function) it makes merging of blocks simple. The reward function means you have to "fix up" the reward for delayed blocks.
<bsm117532> e.g. let the unit of account be directly the difficulty = 1/target.
Alina-malina has quit [Max SendQ exceeded]
Alina-malina has joined #bitcoin-wizards
instagibbs_ has left #bitcoin-wizards [#bitcoin-wizards]
Alina-malina has quit [Changing host]
Alina-malina has joined #bitcoin-wizards
ThomasV has quit [Ping timeout: 265 seconds]
CrazyLoaf has quit [Quit: Connection closed for inactivity]
davec has quit [Read error: Connection reset by peer]
davec has joined #bitcoin-wizards
rodarmor has quit [Ping timeout: 258 seconds]
roconnor has joined #bitcoin-wizards
rodarmor has joined #bitcoin-wizards
Anastasiya has quit [Quit: Page closed]
Alina-malina has quit [Max SendQ exceeded]
Alina-malina has joined #bitcoin-wizards
GreekMiner has quit [Ping timeout: 244 seconds]
Alina-malina has quit [Changing host]
Alina-malina has joined #bitcoin-wizards
NewLiberty has quit [Ping timeout: 256 seconds]
GreekMiner has joined #bitcoin-wizards
BashCo_ has joined #bitcoin-wizards
gielbier has joined #bitcoin-wizards
BashCo has quit [Ping timeout: 260 seconds]
NewLiberty has joined #bitcoin-wizards
jtimon has quit [Read error: Connection reset by peer]
jtimon has joined #bitcoin-wizards
ThomasV has joined #bitcoin-wizards
aalex has quit [Ping timeout: 252 seconds]
aalex has joined #bitcoin-wizards
pro has quit [Quit: Leaving]
coins123 has quit []
Davasny has joined #bitcoin-wizards
pro has joined #bitcoin-wizards
kkode has quit [Quit: Leaving]
domwoe has quit [Remote host closed the connection]
domwoe has joined #bitcoin-wizards
domwoe has quit [Ping timeout: 256 seconds]
priidu has joined #bitcoin-wizards
laurentmt has joined #bitcoin-wizards
laurentmt has quit [Client Quit]
blackwraith has joined #bitcoin-wizards
priidu has quit [Ping timeout: 250 seconds]
Aranjedeath has joined #bitcoin-wizards
pro has quit [Quit: Leaving]
tripleslash has quit [Read error: Connection reset by peer]
tripleslash has joined #bitcoin-wizards
Burrito has joined #bitcoin-wizards
Ylbam has joined #bitcoin-wizards
sausage_factory has joined #bitcoin-wizards
blackwraith has quit [Ping timeout: 256 seconds]
Guyver2 has quit [Quit: :)]
MoALTz has joined #bitcoin-wizards
pro has joined #bitcoin-wizards
paveljanik has joined #bitcoin-wizards
veleiro has quit [Read error: Connection reset by peer]
paveljanik has quit [Quit: Leaving]
AusteritySucks has quit [Ping timeout: 245 seconds]
orbiting has joined #bitcoin-wizards
commandroid has joined #bitcoin-wizards
chjj has quit [Ping timeout: 260 seconds]
WungFu has joined #bitcoin-wizards
commandroid has quit [Quit: Leaving]
paveljanik has joined #bitcoin-wizards
paveljanik has joined #bitcoin-wizards
paveljanik has quit [Changing host]
CrazyLoaf has joined #bitcoin-wizards
chjj has joined #bitcoin-wizards
orbiting has quit [Ping timeout: 252 seconds]
orbiting has joined #bitcoin-wizards
gigq has joined #bitcoin-wizards
ThomasV has quit [Ping timeout: 260 seconds]
orbiting has quit [Quit: Leaving]
paveljanik has quit [Quit: Leaving]
MoALTz has quit [Quit: Leaving]
ThomasV has joined #bitcoin-wizards
bsm117532 has quit [Ping timeout: 252 seconds]
roconnor has quit [Ping timeout: 260 seconds]
WungFu has quit [Ping timeout: 260 seconds]
ThomasV has quit [Ping timeout: 244 seconds]
alpalp has joined #bitcoin-wizards
Giszmo has quit [*.net *.split]
uiuc-slack has quit [*.net *.split]
Tenhi has quit [*.net *.split]
warren has quit [*.net *.split]
copumpkin has quit [*.net *.split]
poggy_ has quit [*.net *.split]
morcos has quit [*.net *.split]
neha has quit [*.net *.split]
berndj has quit [*.net *.split]
iddo_ has quit [*.net *.split]
aar- has quit [*.net *.split]
AdrianG_ has quit [*.net *.split]
TheV01d has quit [*.net *.split]
Hunger- has quit [*.net *.split]
kurti has quit [*.net *.split]
Keefe has quit [*.net *.split]
waxwing has quit [*.net *.split]
kurti has joined #bitcoin-wizards
iddo has joined #bitcoin-wizards
warren has joined #bitcoin-wizards
aalex has quit [*.net *.split]
GreekMiner has quit [*.net *.split]
xissburg has quit [*.net *.split]
huseby has quit [*.net *.split]
Noldorin has quit [*.net *.split]
meZee has quit [*.net *.split]
ibrightly has quit [*.net *.split]
wpalczynski has quit [*.net *.split]
cjd has quit [*.net *.split]
kumavis has quit [*.net *.split]
catcow has quit [*.net *.split]
SirJacket has quit [*.net *.split]
mappum has quit [*.net *.split]
jlyndon_ has quit [*.net *.split]
Muis has quit [*.net *.split]
aspect_ has quit [*.net *.split]
blkdb has quit [*.net *.split]
anon616 has quit [*.net *.split]
mariorz has quit [*.net *.split]
bildramer has quit [*.net *.split]
GAit has quit [*.net *.split]
e0 has quit [*.net *.split]
jonasschnelli has quit [*.net *.split]
ChanServ has quit [*.net *.split]
jtimon has quit [*.net *.split]
murch has quit [*.net *.split]
wasi has quit [*.net *.split]
sdaftuar has quit [*.net *.split]
nullfxn has quit [*.net *.split]
comboy has quit [*.net *.split]
Ylbam has quit [*.net *.split]
Alina-malina has quit [*.net *.split]
belcher has quit [*.net *.split]
e4xit has quit [*.net *.split]
harrymm has quit [*.net *.split]
mkarrer has quit [*.net *.split]
Tenhi_ has quit [*.net *.split]
xsdfdfsa has quit [*.net *.split]
Emcy_ has quit [*.net *.split]
jl2012 has quit [*.net *.split]
grindeltoshi has quit [*.net *.split]
CryptoTraderClub has quit [*.net *.split]
PsychoticBoy has quit [*.net *.split]
Lightsword has quit [*.net *.split]
Piper-Off has quit [*.net *.split]
btcdrak has quit [*.net *.split]
d9b4bef9 has quit [*.net *.split]
robmyers has quit [*.net *.split]
retrohacker has quit [*.net *.split]
eragmus has quit [*.net *.split]
worstadmin has quit [*.net *.split]
buckowski has quit [*.net *.split]
null_radix has quit [*.net *.split]
[Derek] has quit [*.net *.split]
cfields_ has quit [*.net *.split]
nOgAnOo has quit [*.net *.split]
Taek has quit [*.net *.split]
zmanian____ has quit [*.net *.split]
qawap has quit [*.net *.split]
jbenet has quit [*.net *.split]
nsh has quit [*.net *.split]
dEBRUYNE has quit [*.net *.split]
malte has quit [*.net *.split]
gnusha_ has quit [*.net *.split]
bitjedi has quit [*.net *.split]
NicolasDorier has quit [*.net *.split]
binns has quit [*.net *.split]
jtremback__ has quit [*.net *.split]
andrew4 has quit [*.net *.split]
helo has quit [*.net *.split]
liviud has quit [*.net *.split]
luny has quit [*.net *.split]
freekevin has quit [*.net *.split]
roasbeef has quit [*.net *.split]
pro has quit [*.net *.split]
Cory has quit [*.net *.split]
maaku has quit [*.net *.split]
spinza has quit [*.net *.split]
aj has quit [*.net *.split]
BonyM1 has quit [*.net *.split]
execute has quit [*.net *.split]
trippysalmon has quit [*.net *.split]
Guest13412 has quit [*.net *.split]
isis has quit [*.net *.split]
smooth has quit [*.net *.split]
bertani_ has quit [*.net *.split]
katu has quit [*.net *.split]
otoburb has quit [*.net *.split]
afk11 has quit [*.net *.split]
yoleaux has quit [*.net *.split]
Burrito has quit [*.net *.split]
dnaleor has quit [*.net *.split]
Meeh_ has quit [*.net *.split]
thrasher` has quit [*.net *.split]
wizkid057 has quit [*.net *.split]
xeon-enouf has quit [*.net *.split]
cjcj has quit [*.net *.split]
GreenIsMyPepper has quit [*.net *.split]
alpalp has quit [*.net *.split]
gigq has quit [*.net *.split]
sausage_factory has quit [*.net *.split]
tripleslash has quit [*.net *.split]
Aranjedeath has quit [*.net *.split]
NewLiberty has quit [*.net *.split]
gielbier has quit [*.net *.split]
BashCo_ has quit [*.net *.split]
kisspunch has quit [*.net *.split]
instagibbs has quit [*.net *.split]
cannedprimates has quit [*.net *.split]
prosody has quit [*.net *.split]
bassguitarman has quit [*.net *.split]
wallet42 has quit [*.net *.split]
BCBot has quit [*.net *.split]
epscy has quit [*.net *.split]
Alanius has quit [*.net *.split]
adams__ has quit [*.net *.split]
runeks has quit [*.net *.split]
yokwe has quit [*.net *.split]
CodeShark has quit [*.net *.split]
fkinglag has quit [*.net *.split]
Guest28451 has quit [*.net *.split]
Starduster has quit [*.net *.split]
Wazza has quit [*.net *.split]
Logicwax has quit [*.net *.split]
binaryFate has quit [*.net *.split]
forrestv has quit [*.net *.split]
CrazyLoaf has quit [*.net *.split]
rodarmor has quit [*.net *.split]
TheSeven has quit [*.net *.split]
brguy has quit [*.net *.split]
nickler has quit [*.net *.split]
Alopex has quit [*.net *.split]
molz has quit [*.net *.split]
Eliel has quit [*.net *.split]
humding3r has quit [*.net *.split]
[d__d] has quit [*.net *.split]
K1773R has quit [*.net *.split]
_flow_ has quit [*.net *.split]
kurti has quit [*.net *.split]
chjj has quit [*.net *.split]
cyphase has quit [*.net *.split]
legogris has quit [*.net *.split]
koshii has quit [*.net *.split]
superkuh has quit [*.net *.split]
echonaut has quit [*.net *.split]
adiabat has quit [*.net *.split]
kinlo has quit [*.net *.split]
ratoder has quit [*.net *.split]
mountaingoat has quit [*.net *.split]
fluffypony has quit [*.net *.split]
davec has quit [*.net *.split]
c0rw1n has quit [*.net *.split]
ghtdak has quit [*.net *.split]
AaronvanW has quit [*.net *.split]
Anduck has quit [*.net *.split]
yorick has quit [*.net *.split]
vdo has quit [*.net *.split]
arubi has quit [*.net *.split]
asoltys_ has quit [*.net *.split]
luke-jr has quit [*.net *.split]
jaromil has quit [*.net *.split]
Tenhi has joined #bitcoin-wizards
Giszmo has joined #bitcoin-wizards
waxwing has joined #bitcoin-wizards
Alina-malina has joined #bitcoin-wizards
qpm has quit [Ping timeout: 260 seconds]
yorick has joined #bitcoin-wizards
Keefe has joined #bitcoin-wizards
_flow_ has joined #bitcoin-wizards
humding3r has joined #bitcoin-wizards
rodarmor has joined #bitcoin-wizards
Eliel has joined #bitcoin-wizards
brguy has joined #bitcoin-wizards
TheSeven has joined #bitcoin-wizards
nickler has joined #bitcoin-wizards
K1773R has joined #bitcoin-wizards
Alopex has joined #bitcoin-wizards
CrazyLoaf has joined #bitcoin-wizards
[d__d] has joined #bitcoin-wizards
molz has joined #bitcoin-wizards
poggy has joined #bitcoin-wizards
huseby has joined #bitcoin-wizards
meZee has joined #bitcoin-wizards
GreekMiner has joined #bitcoin-wizards
blkdb has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
SirJacket has joined #bitcoin-wizards
Hunger- has joined #bitcoin-wizards
wpalczynski has joined #bitcoin-wizards
jonasschnelli has joined #bitcoin-wizards
anon616 has joined #bitcoin-wizards
GAit has joined #bitcoin-wizards
catcow has joined #bitcoin-wizards
bildramer has joined #bitcoin-wizards
Muis has joined #bitcoin-wizards
xissburg has joined #bitcoin-wizards
e0 has joined #bitcoin-wizards
aspect_ has joined #bitcoin-wizards
Noldorin has joined #bitcoin-wizards
cjd has joined #bitcoin-wizards
berndj has joined #bitcoin-wizards
aj has joined #bitcoin-wizards
execute has joined #bitcoin-wizards
maaku has joined #bitcoin-wizards
spinza has joined #bitcoin-wizards
BonyM1 has joined #bitcoin-wizards
Cory has joined #bitcoin-wizards
trippysalmon has joined #bitcoin-wizards
pro has joined #bitcoin-wizards
isis has joined #bitcoin-wizards
Guest13412 has joined #bitcoin-wizards
smooth has joined #bitcoin-wizards
bertani_ has joined #bitcoin-wizards
katu has joined #bitcoin-wizards
afk11 has joined #bitcoin-wizards
yoleaux has joined #bitcoin-wizards
otoburb has joined #bitcoin-wizards
aar- has joined #bitcoin-wizards
comboy has joined #bitcoin-wizards
sdaftuar has joined #bitcoin-wizards
nullfxn has joined #bitcoin-wizards
wasi has joined #bitcoin-wizards
murch has joined #bitcoin-wizards
jtimon has joined #bitcoin-wizards
TheV01d has joined #bitcoin-wizards
GreenIsMyPepper has joined #bitcoin-wizards
davec has joined #bitcoin-wizards
arubi has joined #bitcoin-wizards
luke-jr has joined #bitcoin-wizards
vdo has joined #bitcoin-wizards
asoltys_ has joined #bitcoin-wizards
jaromil has joined #bitcoin-wizards
Anduck has joined #bitcoin-wizards
ghtdak has joined #bitcoin-wizards
c0rw1n has joined #bitcoin-wizards
AaronvanW has joined #bitcoin-wizards
morcos has joined #bitcoin-wizards
kurti has joined #bitcoin-wizards
chjj has joined #bitcoin-wizards
cyphase has joined #bitcoin-wizards
legogris has joined #bitcoin-wizards
koshii has joined #bitcoin-wizards
echonaut has joined #bitcoin-wizards
superkuh has joined #bitcoin-wizards
adiabat has joined #bitcoin-wizards
mountaingoat has joined #bitcoin-wizards
kinlo has joined #bitcoin-wizards
fluffypony has joined #bitcoin-wizards
cjcj has joined #bitcoin-wizards
Alopex has quit [Remote host closed the connection]
Tenhi is now known as 7GHAAIYTW
PsychoticBoy has joined #bitcoin-wizards
null_radix has joined #bitcoin-wizards
Taek has joined #bitcoin-wizards
malte has joined #bitcoin-wizards
luny has joined #bitcoin-wizards
BCBot has joined #bitcoin-wizards
AdrianG has joined #bitcoin-wizards
tripleslash has joined #bitcoin-wizards
Alina-malina has quit [Max SendQ exceeded]
Tenhi has joined #bitcoin-wizards
Alopex1 has joined #bitcoin-wizards
Alina-malina has joined #bitcoin-wizards
ChanServ has joined #bitcoin-wizards
uiuc-slack has joined #bitcoin-wizards
dnaleor has joined #bitcoin-wizards
Burrito has joined #bitcoin-wizards
Meeh_ has joined #bitcoin-wizards
thrasher` has joined #bitcoin-wizards
xeon-enouf has joined #bitcoin-wizards
wizkid057 has joined #bitcoin-wizards
uiuc-slack has quit [Remote host closed the connection]
uiuc-slack1 has joined #bitcoin-wizards
berndj is now known as Guest27486
AdrianG is now known as Guest67086
Keefe is now known as Guest69478
yorick is now known as Guest16669
CodeShark has joined #bitcoin-wizards
mariorz has joined #bitcoin-wizards
murch has quit [Remote host closed the connection]
murch has joined #bitcoin-wizards
ibrightly has joined #bitcoin-wizards
CodeShark has quit [Changing host]
CodeShark has joined #bitcoin-wizards
mariorz has quit [Changing host]
mariorz has joined #bitcoin-wizards
ibrightly has joined #bitcoin-wizards
ibrightly has quit [Changing host]
pro has quit [Ping timeout: 260 seconds]
wallet42 has joined #bitcoin-wizards
pro has joined #bitcoin-wizards
copumpkin has joined #bitcoin-wizards
aalex has quit [Ping timeout: 260 seconds]
jtremback__ has joined #bitcoin-wizards
7GHAAIYTW is now known as Tenhi_
zmanian____ has joined #bitcoin-wizards
runeks has joined #bitcoin-wizards
worstadmin has joined #bitcoin-wizards
qpm has joined #bitcoin-wizards
aalex has joined #bitcoin-wizards
retrohacker has joined #bitcoin-wizards
mappum has joined #bitcoin-wizards
CryptoTraderClub has joined #bitcoin-wizards
yokwe has joined #bitcoin-wizards
cannedprimates has joined #bitcoin-wizards
binns has joined #bitcoin-wizards
robmyers has joined #bitcoin-wizards
Davasny has quit [Read error: Connection reset by peer]
jbenet has joined #bitcoin-wizards
eragmus has joined #bitcoin-wizards
jlyndon_ has joined #bitcoin-wizards
alpalp has joined #bitcoin-wizards
alpalp has joined #bitcoin-wizards
alpalp has quit [Changing host]
kumavis has joined #bitcoin-wizards
prosody has joined #bitcoin-wizards
murch has quit [Remote host closed the connection]
xsdfdfsa has joined #bitcoin-wizards
PaulCapestany has quit [Quit: .]
Guest69478 is now known as Keefe
PaulCapestany has joined #bitcoin-wizards
Keefe has quit [Changing host]
Keefe has joined #bitcoin-wizards
Alina-malina has quit [Max SendQ exceeded]