Bitcoin Forum
May 28, 2024, 04:24:35 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 [3] 4 5 6 »  All
  Print  
Author Topic: [ANN] ECASH Problems/Takeover with IGotSpots - be warned !  (Read 10889 times)
lestherat
Legendary
*
Offline Offline

Activity: 986
Merit: 1001



View Profile
March 21, 2015, 05:42:38 PM
Last edit: March 21, 2015, 08:05:34 PM by lestherat
 #41

Hey folks,

I want to cry because iGotSpots delete my post on ecash thread, and i told my mama he is bad with me.

bla bla bla



You are mad because you want to steal 40,000 coins from premine.

Any people can follow what happened in the original thread.

Stop being a pussy girl posting lies.
ocminer (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
March 21, 2015, 05:49:52 PM
 #42

Maybe I should get the IRC logs, it seems you have holes in your memory.. but this is not the point..

Don't bother, I will

Quote
<MonkeyTooth> this is all fucked up
<MonkeyTooth> my god
<MonkeyTooth> i didnt realize his elseif shit wasnt working
<MonkeyTooth> so blocks were always 600 then im guessing, never went down to 500 even
<MonkeyTooth> we should probably change that soon though lol
<MonkeyTooth> do you know if rewards ever worked
<MonkeyTooth> or was it always 600
<ocminer> i have no idea tbh
<ocminer> i did not watch it so closely
<MonkeyTooth> well shit
<MonkeyTooth> the explorer sucks too i cant tell
<MonkeyTooth> but in order to fix that i need to know what worked so it will accept the old blocks..
<ocminer> let me look in my database
<ocminer> i believe the reward was higher
<ocminer> max was 750
<MonkeyTooth> int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
<MonkeyTooth> {
<MonkeyTooth>     int64 nSubsidy = 750 * COIN;
<MonkeyTooth>  if(nHeight == 1)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 40000 * COIN; // less then 0.1% premine
<MonkeyTooth>     }
<MonkeyTooth>         else if(nHeight >= 1440)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 600 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>         else if(nHeight >= 2880)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 500 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>         else if(nHeight >= 4320)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 400 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>         else if(nHeight >= 5760)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 300 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>         else if(nHeight >= 6000)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 250 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>         else if(nHeight >= 6001)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 0;
<MonkeyTooth>     }
<MonkeyTooth>     return nSubsidy + nFees;
<MonkeyTooth> }
<MonkeyTooth> so it stops checking after 600
<ocminer> you want me to change that ?
<MonkeyTooth> im just saying thats what he has
<MonkeyTooth> i dont know where it stops checking
<MonkeyTooth> the explorer doesn't really show
<MonkeyTooth> what the old blocks were
<MonkeyTooth> im guessing if 0 doesnt work, it never dropped to 500, 400, 300, or 250 either
<MonkeyTooth> its an easy fix, but i need to know when it stopped reducing
<ocminer> i see 600 as the last sum
<ocminer> it went down from 750 to 600
<ocminer> lol yes
<ocminer>  else if(
<ocminer> thats wrong
<ocminer> it should probably simply be „if"
<ocminer> because the first „else if“ always matches
<ocminer> when its above 1440
<ocminer> do you want me to fix it or should i fix it ?
<MonkeyTooth> ffs
<MonkeyTooth> he is so stupid lol
<MonkeyTooth> if you want to do it, go ahead, but heres my suggestion
<MonkeyTooth> or wait
<MonkeyTooth> let me think
<ocminer> lol
<MonkeyTooth> what block was the last 750
<ocminer> i think 1440
<ocminer> or 1439
<ocminer> i’ll fix it, give me a few mins
<MonkeyTooth> i would cut off mining at block 10k or something
<MonkeyTooth> i mean
<MonkeyTooth> the reward, make it 0 at block 10
<MonkeyTooth> 10k*
<ocminer> i’ll make it 0 at block 6200
<MonkeyTooth> ok that works
<MonkeyTooth> then in main.h
<MonkeyTooth> change
<MonkeyTooth> the pow_cutoff to block 10k
<MonkeyTooth> so i can snapshot it there for balances
<MonkeyTooth> that will be the bittrex deadline, yea?
<ocminer> http://pastebin.com/dNYnawSp
<ocminer> thats the ne code
<MonkeyTooth> you use github?
<MonkeyTooth> just push it
<ocminer> to your repo ?
<MonkeyTooth> yea
<ocminer> hmm if that works...
<MonkeyTooth> or pull or whatever
<MonkeyTooth> int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
<MonkeyTooth> {
<MonkeyTooth>     if (pindexBest->nHeight+1 == 1)
<MonkeyTooth>     {
<MonkeyTooth>       nSubsidy = 40000 * COIN;
<MonkeyTooth>       return nSubsidy + nFees;
<MonkeyTooth>     }
<MonkeyTooth>  
<MonkeyTooth>     else if (pindexBest->nHeight+1 >= 1440)
<MonkeyTooth>     {
<MonkeyTooth>       nSubsidy = 600 * COIN;
<MonkeyTooth>       return nSubsidy + nFees;
<MonkeyTooth>     }
<MonkeyTooth>  
<MonkeyTooth>    else if (pindexBest->nHeight+1 >= 6200)
<MonkeyTooth>     {
<MonkeyTooth>       nSubsidy = 0 * COIN;
<MonkeyTooth>       return nSubsidy + nFees;
<MonkeyTooth>     }    if (pindexBest->nHeight+1 == 1)
<MonkeyTooth>     {
<MonkeyTooth>       nSubsidy = 40000 * COIN;
<MonkeyTooth>       return nSubsidy + nFees;
<MonkeyTooth>     }
<MonkeyTooth>  
<MonkeyTooth>     else if (pindexBest->nHeight+1 >= 1440)
<MonkeyTooth>     {
<MonkeyTooth>       nSubsidy = 600 * COIN;
<MonkeyTooth>       return nSubsidy + nFees;
<MonkeyTooth>     }
<MonkeyTooth>  
<MonkeyTooth>    else if (pindexBest->nHeight+1 >= 6200)
<MonkeyTooth>     {
<MonkeyTooth>       nSubsidy = 0 * COIN;
<MonkeyTooth>       return nSubsidy + nFees;
<MonkeyTooth>     }
<MonkeyTooth>     return nSubsidy + nFees;
<MonkeyTooth> }
<MonkeyTooth> that is what you have
<MonkeyTooth> ?
<MonkeyTooth> ok got your pull
<MonkeyTooth> main.h though
<MonkeyTooth> make
<MonkeyTooth> static const int POW_CUTOFF_BLOCK = 10000;
<ocminer> good
<MonkeyTooth> so we can snapshot that
<MonkeyTooth> as the balances to swap
<ocminer> i changed cutoff to 6201
<MonkeyTooth> i changed it on git, just for your own i mean
<MonkeyTooth> yea i know, but those coins will never mature then
<MonkeyTooth> 10k gives them time to move the final coins around
<ocminer> oh ok
<MonkeyTooth> 4k blocks at 0 reward
<ocminer> then change it back to 10k ?
<MonkeyTooth> hpopefully
<ocminer> pow cutoff ?
<MonkeyTooth> it was 100k before
<MonkeyTooth> make it 10k now, yea
<ocminer> ok
<MonkeyTooth> we'll snapshot at 10k
<MonkeyTooth> easier for richie too
<MonkeyTooth> if people miss that deadline, fuck them
<MonkeyTooth> lol
<MonkeyTooth> im over this shit
<ocminer> ok changed
<ocminer> recompiling
<MonkeyTooth> let me know if any errors then ill work on windows qt
<MonkeyTooth> i fucking hate windows, god
<MonkeyTooth> thanks for your help, sorry i fucked it up
<MonkeyTooth> im trying my best to work through this guys mess though
<ocminer> ah wait
<MonkeyTooth> i would redownload chain from the start too to make sure it accepts all the old blocks
<ocminer> forgot the declaration Smiley
<ocminer> lol
<ocminer> now it is working
<ocminer> if you merge that last change we’re good
<MonkeyTooth> ok no errors on that now?
<MonkeyTooth> and you have pow_cutoff at 10k on yours?
<ocminer> nope, last version is comiling fine
<ocminer> yes
<MonkeyTooth> ok cool
<MonkeyTooth> thanks, ill work on windows now, might take a bit, mingw makes me reset my deps every time...
<MonkeyTooth> wait this wont sync
<MonkeyTooth> you forgot the 750s
<ocminer> hmm
<MonkeyTooth> gotta accept all blocks at 750 before it dropped to 600
<ocminer> yes you’re right
<MonkeyTooth> this explorer is no help
<ocminer> it should be enough if you change line 932 to 750 * COIN
<ocminer> or no
<ocminer> add this
<ocminer>     else if (pindexBest->nHeight+1 >= 2)
<ocminer>     {
<MonkeyTooth> it may
<ocminer>       nSubsidy = 750 * COIN;
<ocminer>       return nSubsidy + nFees;
<ocminer>     }
<ocminer> yes that should do it
<MonkeyTooth> ok, try syncing from 0 if you can
<MonkeyTooth> just to be sure
<MonkeyTooth> it should be fast
<ocminer> hmm
<MonkeyTooth> oh shit
<MonkeyTooth> we're almost to 6200 already
<MonkeyTooth> fuck
<ocminer> did you update the code yet ?
<ocminer> on github ?
<ocminer> still over 100 blocks to go
<MonkeyTooth> yea i think i matched yours
<MonkeyTooth> i dont think he had fees thouhg
<MonkeyTooth> i cant find original git now
<ocminer> hmmm
<MonkeyTooth> no it didnt
<MonkeyTooth> lmao
<MonkeyTooth> god
<MonkeyTooth> ok so
<MonkeyTooth> just
<MonkeyTooth> remove all the fees
<MonkeyTooth>       return nSubsidy + nFees;
<MonkeyTooth> to
<MonkeyTooth>       return nSubsidy;
<ocminer> hmm i’m not sure if that works..  else if (pindexBest->nHeight+1 >=   should’t it be „<„ instead of „>“ ?
<MonkeyTooth> what was the last 750 block
<MonkeyTooth> ill just do this the easy way lol
<ocminer> let me look
<ocminer> 1439
<MonkeyTooth> ok 1440 was 600
<MonkeyTooth> block 1 was 40,000
<ocminer> yep
<ocminer> thats all
<MonkeyTooth> ok i changed it to block 7000 for 600 just so we have time if needed
<MonkeyTooth> can you compile git now and try syncing from block 0
<MonkeyTooth> i know, im sorry
<MonkeyTooth> i can hop over to linux if you prefer not to
<MonkeyTooth> wait
<MonkeyTooth> what
<MonkeyTooth> the
<MonkeyTooth> fuck
<MonkeyTooth> its giving 750 per block right NOW?
<MonkeyTooth> it just switched...?
<MonkeyTooth> oh my god
<MonkeyTooth> please tell me your pool isnt mining 750 blocks right now
<ocminer> lol yes it is
<MonkeyTooth> ok
<MonkeyTooth> 6084
<MonkeyTooth> was 600
<MonkeyTooth> 6085
<MonkeyTooth> was 750, yes?
<MonkeyTooth> if so, git is updated already
<MonkeyTooth> no idea why it switched at 6085...
<ocminer> i’m downloading your code now, recompiling and reindexing
<ocminer> give me 5 mins
<MonkeyTooth> OK THANKS
<MonkeyTooth> oops
<MonkeyTooth> you got the new switch with 750 right
<MonkeyTooth> int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
<MonkeyTooth> {
<MonkeyTooth>     int64 nSubsidy = 0;
<MonkeyTooth>     if (hashPrevBlock == hashGenesisBlock) {
<MonkeyTooth>      nSubsidy = 40000 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     if (nHeight <= 1439) {
<MonkeyTooth>      nSubsidy = 750 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     if (nHeight <= 7000) {
<MonkeyTooth>      nSubsidy = 600 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     if (nHeight <= 6085) {
<MonkeyTooth>      nSubsidy = 750 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     return nSubsidy;
<MonkeyTooth> }
<MonkeyTooth> should be that
<ocminer> yep
<ocminer> compiling now
<MonkeyTooth> that might give an error actually lol ffs
<MonkeyTooth> one more change i think
<ocminer> main.cpp:932:9: error: ‘hashPrevBlock’ was not declared in this scope
<ocminer> lol
<MonkeyTooth> yep
<MonkeyTooth> now its good
<MonkeyTooth> just hardcoded block 1
<ocminer> lioke so
<ocminer>  if (nHeight == <=1) {
<ocminer> ?
<MonkeyTooth>     if (nHeight = 1) {
<ocminer> ok
<MonkeyTooth> i think = works, if error then ==
<MonkeyTooth> that might not sync
<ocminer> what ?
<MonkeyTooth> no it wont, i had two number backwards
<MonkeyTooth> fuck
<MonkeyTooth> that last switch to 750 just fucked it all up
<MonkeyTooth> ok
<MonkeyTooth> int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
<MonkeyTooth> {
<MonkeyTooth>     int64 nSubsidy = 0;
<MonkeyTooth>     if (nHeight = 1) {
<MonkeyTooth>      nSubsidy = 40000 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     if (nHeight <= 1439) {
<MonkeyTooth>      nSubsidy = 750 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     if (nHeight <= 6085) {
<MonkeyTooth>      nSubsidy = 600 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     if (nHeight <= 7000) {
<MonkeyTooth>      nSubsidy = 750 * COIN;
<MonkeyTooth>     }
<MonkeyTooth>     return
<MonkeyTooth> does that look right now
<MonkeyTooth> ok NOW i think its right
<ocminer> ok
<ocminer> push that to github
<ocminer> so i can pull
<MonkeyTooth> 6085
<MonkeyTooth> was 600
<MonkeyTooth> or 750
<ocminer> correct would be 600
<MonkeyTooth> ok
<MonkeyTooth> should be ready now
<MonkeyTooth> wait
<MonkeyTooth> 6085 was 600?
<MonkeyTooth> 6084 was 600, i think 6085 was 750
<ocminer> yes but due to a mistake
<ocminer> everything above 6000 should be 600
<MonkeyTooth> yea i know, but i am putting that in now
<MonkeyTooth> so it syncs with those blocks
<ocminer> we should not change that
<ocminer> i’ll just orphan theose blocks
<MonkeyTooth> oh fuck
<MonkeyTooth> ok
<MonkeyTooth> well shit
<ocminer> i’m the only pool on that chain - that makes no sense
<ocminer> just leave it at 600
<MonkeyTooth> so
<MonkeyTooth> everything since
<MonkeyTooth> block 1439 has been 600
<MonkeyTooth> 1440 was the first 600, and they are all 600 now
<MonkeyTooth> right?
<ocminer> i think so - yes
<MonkeyTooth> ok
<MonkeyTooth> then its ready now
<MonkeyTooth> it will be 600 from 1440 through 7000, then 0 until 10000
<MonkeyTooth> man i cant wait to get this on my own chain that i know works...
<MonkeyTooth> this coin is so shit
<ocminer> its not syncing
<ocminer> from block 0
<ocminer> its not even accepting block 1 Smiley
<MonkeyTooth> ok then change
<MonkeyTooth> main.cpp
<MonkeyTooth> 932
<MonkeyTooth> to ==
<ocminer> lol
<MonkeyTooth> yea
<MonkeyTooth> i know
<ocminer> so much work for tnohting
<MonkeyTooth> ill just switch to linux if you want so i can compile
<MonkeyTooth> yea, i have 0 of these too
<MonkeyTooth> lol
<ocminer> nope
<ocminer> doesn't work either
<MonkeyTooth> well
<MonkeyTooth> thats copying his...
<MonkeyTooth> int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
<MonkeyTooth> {
<MonkeyTooth>     int64 nSubsidy = 750 * COIN;
<MonkeyTooth>  if(nHeight == 1)
<MonkeyTooth>     {
<MonkeyTooth>         nSubsidy = 40000 * COIN; // less then 0.1% premine
<MonkeyTooth>     }
<MonkeyTooth> thats what he has
<MonkeyTooth> int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
<MonkeyTooth> {
<MonkeyTooth>     int64 nSubsidy = 0;
<MonkeyTooth>     if (nHeight == 1) {
<MonkeyTooth>      nSubsidy = 40000 * COIN;
<MonkeyTooth>     }
<MonkeyTooth> thats what i have
<MonkeyTooth> its the exact same..
<ocminer> let me check the old wallet
<MonkeyTooth> yea that should work
<MonkeyTooth> its the same structure i use for balls stake rate
<ocminer> old wallet works Smiley
<MonkeyTooth> so that works then?
<MonkeyTooth> it syncs from block 0?
<ocminer> yes
<ocminer> but not the new one
<MonkeyTooth> im confused
<ocminer> yup Smiley
<MonkeyTooth> so its good or its not good
<MonkeyTooth> i have one more idea
<MonkeyTooth> thats easy before i dig more
<MonkeyTooth> if its not good, try pulling again, i took out a lot of i think unneeded brackets
<MonkeyTooth> if this doesnt work, ill hop on  linux and build myself so you dont have to keep doing it
<ocminer> i think this would be the best
<ocminer> as the pool is already fucked up badly now
<MonkeyTooth> lol
<MonkeyTooth> ok brb
<ocminer> with all the orphans and stuff
<MonkeyTooth> well the 750
<MonkeyTooth> i dont know what that was
<ocminer> probably my error
<ocminer> with my ode
<MonkeyTooth> ah
<MonkeyTooth> ok
<ocminer> they are all orphaned now
<MonkeyTooth> ok cool
<ocminer> so its all good
<MonkeyTooth> ill switch to linux quick brb
<MonkeyTooth> hey btw do you know how to build windows qts or no
<MonkeyTooth> nm ill just do it later
<MonkeyTooth> brb let me switch
<MonkeyTooth> is your pool still finding ecash blocks
<MonkeyTooth> ive got a few th at it, says alive but i dont see any stats on pool page
<MonkeyTooth> your pool seems to be like 2 blocks ahead of the network (?)
<MonkeyTooth> im gettin all rejects solo

In this log we see your pool mining on its own fork (you were even mining for different rewards and compiled the wrong code), you choosing which blocks to manually orphan, you setting the cutoff to block 6201 and me telling you that is too early, and then finally you ignore me for three days when I tell you your shit code isn't working and your pool is on its own fork

After being ignored for 3 days, I left you behind and swapped it to a working chain (with 0 problems since launch) because your garbage was stuck forever on block 8250-ish


Lol and you still don't get what its all about ? Ignoring the rest and just replying to the unimportant stuff.

Its not about "who can code" or "who did what" or even about the 40k premine, it is simply about your habit and how you insult people over and over again. You'r bending reality how you like it and your attitude is unbelievable.

I've tried to "shake hands" more than often and you just kept insulting, if you had so much coins for the "giveaway" - why did'nt we just come together and swapped the missing coins and everything would be cool ? Where's the problem here ? All these posts are still circulating around pure unimportant things but still not "the point" what it all was about...


suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
March 21, 2015, 05:53:20 PM
 #43

You have never tried to shake hands, but it's funny how fast your attitude changes when you realize you're the one that fucked up and didn't actually do anything productive or positive. At all. You made a shitty situation worse and continue to do so for weeks. You're fucking pathetic

ocminer (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
March 21, 2015, 05:57:29 PM
 #44

You have never tried to shake hands, but it's funny how fast your attitude changes when you realize you're the one that fucked up and didn't actually do anything productive or positive. At all. You made a shitty situation worse and continue to do so for weeks. You're fucking pathetic

Ah, you magically "forgot" some of the chat log, here is the full version:

http://pastebin.com/S3SW9hEY

I did not change my attitude at all, I've posted several times what my opinion is all about, you deleted several of those posts on your thread in the announcements forums, just read the OP of this thread and tell me if it is offending in any way.  I was cooperative since the first minute, you not at even a second.

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
March 21, 2015, 05:59:45 PM
 #45

I didn't forget anything, I even said I might have missed something because I was building on both Windows and Linux and had to switch back and forth. Either way, it's all out there now so people can see who fucked up what and who ended up fixing two people's messes and making a great coin that is about to die to amateur fuckface fuds

Enjoy your thread, I'm done pissing in your sandbox

ocminer (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
March 21, 2015, 06:04:38 PM
 #46

I didn't forget anything, I even said I might have missed something because I was building on both Windows and Linux and had to switch back and forth. Either way, it's all out there now so people can see who fucked up what and who ended up fixing two people's messes and making a great coin that is about to die to amateur fuckface fuds

Enjoy your thread, I'm done pissing in your sandbox

So, who's flipping now ? :-)

Its getting really, really ridiculous, you still don't see the point after all that posts (hint: it does STILL not matter who fixed what, where or who) - all that would have been necessary iswas:

"Sorry, no prob, got some coins over, lets swap them and get things going.."

Instead of a:

"Fuck you, i wanna throw my fist in your teeth (or something like that)"


suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
Kaenguru
Full Member
***
Offline Offline

Activity: 237
Merit: 100


View Profile
March 21, 2015, 07:07:42 PM
 #47


Oh Lady's you act like little kids.....

Please do us a favour and bury the hatchet...

There must be a solution, don't let this coin DIE.
HYPster
Full Member
***
Offline Offline

Activity: 192
Merit: 100



View Profile
March 22, 2015, 01:39:03 AM
Last edit: March 22, 2015, 02:01:11 AM by HYPster
 #48

Dude this coin is a hack like the dev. If you can't see that then you are an idiot and deserve to have ALL your money stolen. As P.T. Barnum said, "A fool and his money are soon parted". Yep stick with Igotspots and you lose all your money fools.

You are just embarrassing yourself and nothing you can say or do will change that man. And since I personally know you you REALLY should stop fukin people around man. Even I have my limits and I definitely am tired of you fukin people over. I know we are friends and all, but come on man. Don't be suck a dick.

I will post your facebook link here if you don't back down man. YES, for real!

OR maybe I should sell it to the top bidder and rip people off like you........Nah I am not that heartless man. Be decent for once man.
SockPuppetAccount
Hero Member
*****
Offline Offline

Activity: 882
Merit: 500


MiG Messenger - earn while chatting


View Profile WWW
March 22, 2015, 09:30:10 AM
 #49

I'm honestly surprised something like this hasn't come out sooner.  He has a terrible track record of creating a coin and then running for the hills as soon as the pump is over.  His coins wallets rarely ever work properly.  Good to see his tactics are finally starting to catch up with him.

Here are a list of coins I know Spots to be dev/in charge of.  Please let me know of any others I missed, i'm sure there are lots that I don't even know about.

MMXIV
10K
BALLS
ECASH



I wonder how many people don't even know where his name originated from.  Genuine piece of crypto history here.  SPOT https://bitcointalk.org/index.php?topic=259764.0

Then came CPR https://bitcointalk.org/index.php?topic=272170.0

And the glorious TIX.  https://bitcointalk.org/index.php?topic=297666.0


gross
Full Member
***
Offline Offline

Activity: 236
Merit: 100



View Profile
March 22, 2015, 10:08:04 AM
 #50

I'm honestly surprised something like this hasn't come out sooner.  He has a terrible track record of creating a coin and then running for the hills as soon as the pump is over.  His coins wallets rarely ever work properly.  Good to see his tactics are finally starting to catch up with him.

Here are a list of coins I know Spots to be dev/in charge of.  Please let me know of any others I missed, i'm sure there are lots that I don't even know about.

MMXIV
10K
BALLS
ECASH



I wonder how many people don't even know where his name originated from.  Genuine piece of crypto history here.  SPOT https://bitcointalk.org/index.php?topic=259764.0

Then came CPR https://bitcointalk.org/index.php?topic=272170.0

And the glorious TIX.  https://bitcointalk.org/index.php?topic=297666.0



SPOTS = DUMP FREE COIN + HARD FORK with STAKE (100 ...0% rate) = SCAM
spartak_t
Legendary
*
Offline Offline

Activity: 1960
Merit: 1176


@FAILCommunity


View Profile WWW
March 22, 2015, 11:47:35 AM
 #51

I don't like iGotSpots's manners either and I'm backing ocminer on this one. I think that attitude can prove in some way who has a point and who doesn't. I had number of conversations with ocminer and he was always been helpful.

huanglui
Sr. Member
****
Offline Offline

Activity: 529
Merit: 250



View Profile
March 22, 2015, 11:57:26 AM
 #52

what will we do with coin?

it's disabled in bittrex...

no exchange?


takeover?

start over?

or donate coins to the africans ?!?!?!

u fucking gay idiots


▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄
Telegram Twitter Facebook
▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀
       
              ▄██████████▄          
            ████████████████         
          ████████████████████       
         ████████▀    ▀████████  
        ███████          ███████     
        ██████            ██████     
        ██████            ██████     
        ███████          ███████     
         ████████▄    ▄████████      
          ████████████████████       
            ████████████████         
              ▀██████████▀            
       
              ▄██████████▄          
            ████████████████         
          ████████████████████       
         ████████▀    ▀████████  
        ███████          ███████     
        ██████            ██████     
        ██████            ██████     
        ███████          ███████     
         ████████▄    ▄████████      
          ████████████████████       
            ████████████████         
              ▀██████████▀            

▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄
Linked-In Reddit Medium
▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀
AdamWhite
Hero Member
*****
Offline Offline

Activity: 605
Merit: 500



View Profile
March 22, 2015, 01:57:07 PM
 #53

I didn't forget anything, I even said I might have missed something because I was building on both Windows and Linux and had to switch back and forth. Either way, it's all out there now so people can see who fucked up what and who ended up fixing two people's messes and making a great coin that is about to die to amateur fuckface fuds

Enjoy your thread, I'm done pissing in your sandbox

So, who's flipping now ? :-)

Its getting really, really ridiculous, you still don't see the point after all that posts (hint: it does STILL not matter who fixed what, where or who) - all that would have been necessary iswas:

"Sorry, no prob, got some coins over, lets swap them and get things going.."

Instead of a:

"Fuck you, i wanna throw my fist in your teeth (or something like that)"



that's the igotsots way.. the guy has proven time and again that he's a criminal sociopath

he needs to get the fuck out of crypto and back to scrubbing floors
gross
Full Member
***
Offline Offline

Activity: 236
Merit: 100



View Profile
March 22, 2015, 07:44:48 PM
 #54

ECASH game over with 1m stolen coin from C-cex, ocminer and minerpools. Fuck  Igotspots
iGotSpots
Legendary
*
Offline Offline

Activity: 2548
Merit: 1054


CPU Web Mining 🕸️ on webmining.io


View Profile WWW
March 22, 2015, 08:20:53 PM
 #55

I am no longer involved with this coin to any extent. ECASH is someone else's problem now

My guess is it takes less than a day to break

CryptoDatabase
Legendary
*
Offline Offline

Activity: 1596
Merit: 1003


https://cryptodatabase.net


View Profile WWW
March 22, 2015, 08:49:23 PM
 #56

I am no longer involved with this coin to any extent. ECASH is someone else's problem now

My guess is it takes less than a day to break

Hopefully it does die. Matter of fact it NEEDS to die. It is a huge disgrace to the Crypto community because it is stealing the name of the very first original Crypto Currency.

I love crypto's and what they stand for, I don't love those who steal trademarked names.
locohammerhead
Hero Member
*****
Offline Offline

Activity: 530
Merit: 500



View Profile
March 23, 2015, 02:29:47 PM
Last edit: March 23, 2015, 03:40:56 PM by locohammerhead
 #57

First off, ocminer, thanks for this post. Most people I now avoid his shit coins like a plague, but this is a good warning for the n00bs or anyone else thinking about risking their funds on his shitcoins/services.

I'm honestly surprised something like this hasn't come out sooner.  He has a terrible track record of creating a coin and then running for the hills as soon as the pump is over.  His coins wallets rarely ever work properly.  Good to see his tactics are finally starting to catch up with him.

Here are a list of coins I know Spots to be dev/in charge of.  Please let me know of any others I missed, i'm sure there are lots that I don't even know about.

MMXIV
10K
BALLS
ECASH



Locohammerhead, I would also like add to that list that he would also started PoS cloud staking services and sells Pi devices on his website which people should also avoid if they don't want to get screwed.  

Thank you, I will add GorillaStake.com and the Pi devices to the list.

Post has been updated.  Ty and please continue to keep me posted on any new coins from iGotSpots.

locohammerhead
Hero Member
*****
Offline Offline

Activity: 530
Merit: 500



View Profile
March 23, 2015, 05:55:16 PM
 #58

I also added a list of his known aliases/Screen names.

MoneroMooo
Legendary
*
Offline Offline

Activity: 1276
Merit: 1001


View Profile
March 23, 2015, 06:01:35 PM
 #59

I wouldn't post a thing normally because sharing a thread with igotspots feels icky, but I hear posting here pisses off some monkey tooth for no discernable reason, so here goes Cheesy
asuryan180
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000


View Profile
March 23, 2015, 06:17:49 PM
 #60

I wouldn't post a thing normally because sharing a thread with igotspots feels icky, but I hear posting here pisses off some monkey tooth for no discernable reason, so here goes Cheesy


What really pisses him of is if you state the truth and tell him how it is the same as ocminer did, boi when he hears the truth his blood boils and his last monkey tooth falls out, his spots pop and he is ready to knock anyone’s teeth out in a rage because he is a real tough (         ).

I think it is sad he can't be more of a normal fellow human he is still not evolved from the time of the monkey/. If you really want to rattle his cage leave him genuine negative feed back geeez  Cheesy

Pages: « 1 2 [3] 4 5 6 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!