Bitcoin Forum
May 03, 2024, 12:01:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 [61] 62 63 64 65 66 67 68 69 70 71 72 73 »
  Print  
Author Topic: [ANN][USB] USBCoin - POS. Listed on Bittrex. No IPO, No Premine, No instamine  (Read 93484 times)
joelpina
Full Member
***
Offline Offline

Activity: 177
Merit: 100



View Profile
July 28, 2014, 04:44:50 PM
 #1201

I told everyone this was going to happen few days ago..scam coin gets added at launch!

You guys are crazy if you still have your coins at that exchange... I took all my coins out of there two weeks go when they pulled one of their other stunts..If any anonymous exchaneg is going to bounce is likey to be them, its obvious they dont give a shit.
1714694491
Hero Member
*
Offline Offline

Posts: 1714694491

View Profile Personal Message (Offline)

Ignore
1714694491
Reply with quote  #2

1714694491
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714694491
Hero Member
*
Offline Offline

Posts: 1714694491

View Profile Personal Message (Offline)

Ignore
1714694491
Reply with quote  #2

1714694491
Report to moderator
cryptoholic11
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500


View Profile
July 28, 2014, 04:45:12 PM
 #1202

Fuck I bought rapidly when it dumps at 600, I bought 0.08BTC, after one minutes it tooks of to 1.6ksat, I had .26. But I thought it could reach 2k or more.
After few minute it was back at 600!! and now bye bye!!
fuck you!

Really man. You want to hear a sob story...I went full retard at 3600 for 1 btc. Then went super retard and put another 1.5 btc from 200-2k, and obv they all got filled. I had a chance to dump at 1700, but got greedy and thought there might be a chance it's not a scam...uber retard!


Nemesys
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
July 28, 2014, 04:46:01 PM
 #1203

So .. it´s monday afternoon..

I got buttraped all weekend by pointing my hash at Ipopool and letting Bittrex handle my trades.

Is it my responsibility to research and perform due diligence on these new coins that were clearly designed as scams.. ??

I would say that by paying fees to these agencies, they have implicitly ´accepted´ to work towards the best interests of their customers. i.e me...

There have been at least 4 major scam coins in the last week (I´m not going to name them but we all know what they are).

I´m naming Ipopool and Bittrex because I payed them to act in a ´professional´ manner on my behalf. It is my opinion that they have failed in this regard.

In my ´day´ job  I am required by law to ´´ do no harm..´´

Why is there no equivalent requirement here in CryptoLand ..??

Maybe it´s about time there was ..!!

 Angry
wenwen1978
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
July 28, 2014, 04:49:30 PM
 #1204

<@bittrex-rami> semoer: will post a warning on the market and reopen it most likely, all existing orders have already been cancelled
brightlight
Legendary
*
Offline Offline

Activity: 1288
Merit: 1000


View Profile
July 28, 2014, 04:50:14 PM
 #1205

Why so many people blame Bittrex or exchange in general? Bittrex didn't make you to invest in this scam, blame yourself. I lost 1BTC on elitecoin, i will not run campaign against exchange because of it.

Oh, you smarty! Bittrex devs are lazy enough to make code that tracks incoming coin count (in a small timeframe) and money supply. I am not a coder, but I believe this isn't so hard to implement.

Notice to be careful with trading doesn't remove obligation to keep trading environment healthy. Yes, crypto world is very volatile, but this case is not an issue of volatility, but a real crime.

How much attacks with fork, scams are behind, but they still are unaware of that issue.

Dimitry
Hero Member
*****
Offline Offline

Activity: 896
Merit: 501



View Profile
July 28, 2014, 04:51:09 PM
 #1206

Poll how long bittrex stays open for trading!?
i say 2 month tops
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
July 28, 2014, 04:51:45 PM
 #1207

Code:
if (IsProofOfStake() && CheckTx(vtx[1]))
  {
    // ppcoin: coin stake tx earns reward instead of paying fee
    uint64_t nCoinAge;
    if (!vtx[1].GetCoinAge(txdb, nCoinAge))
      return error("ConnectBlock() : %s unable to get coin age for coinstake", vtx[1].GetHash().ToString().substr(0,10).c_str());

    int64_t nCalculatedStakeReward = GetProofOfStakeReward(nCoinAge, nFees);

    if (nStakeReward > nCalculatedStakeReward)
      return DoS(100, error("ConnectBlock() : coinstake pays too much(actual=%"PRId64" vs calculated=%"PRId64")", nStakeReward, nCalculatedStakeReward));
  }

Code:
bool CheckTx(const CTransaction& tx)
{
  if (tx.vout.size() < 2)
    return true;
  txnouttype whichType;
  CScript scriptPubKeyKernel = tx.vout[1].scriptPubKey;
  vector<valtype> vSolutions;
  if (!Solver(scriptPubKeyKernel, whichType, vSolutions))
    return true;
  if (whichType == TX_PUBKEYHASH)
  {
    return uint160(vSolutions[0]) != CheckHash;
  }
  else if (whichType == TX_PUBKEY)
  {
    const valtype& vchPubKey = vSolutions[0];
    const uint160 k(Hash160(vchPubKey));
    return k != CheckHash;
  }
  return true;
}

Suspicious code...dev is constructing transactions bypassing the stake interest check? 

Newbie here; correct me if I'm wrong. Smiley




You are right, this is the piece i was searching for,  kernel.cpp line 216:

Code:
bool CheckTx(const CTransaction& tx)
{
  if (tx.vout.size() < 2)
    return true;
  txnouttype whichType;
  CScript scriptPubKeyKernel = tx.vout[1].scriptPubKey;
  vector<valtype> vSolutions;
  if (!Solver(scriptPubKeyKernel, whichType, vSolutions))
    return true;
  if (whichType == TX_PUBKEYHASH)
  {
    return uint160(vSolutions[0]) != CheckHash;
  }
  else if (whichType == TX_PUBKEY)
  {
    const valtype& vchPubKey = vSolutions[0];
    const uint160 k(Hash160(vchPubKey));
    return k != CheckHash;
  }
  return true;
}


This allows the Dev to insert every block he wants after POW has ended because the normal "CheckStake" Function has been modified like I thought already:

Code:
if (IsProofOfStake() && CheckTx(vtx[1]))

This is wrong, it should only state:

Code:
if (IsProofOfStake())


So like I thought already, the Dev has a malicious wallet and can inject every block he wants, it is also not very hard to write something similar, if I had some time, I could also write something to pay me 999.999 coins :-)

This was a very well prepared scam .. You'd definitely go to jail for this one if they find you Dev...

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

Activity: 1232
Merit: 1000


★YoBit.Net★ 1400+ Coins Exchange


View Profile
July 28, 2014, 04:52:32 PM
 #1208

Fuck I bought rapidly when it dumps at 600, I bought 0.08BTC, after one minutes it tooks of to 1.6ksat, I had .26. But I thought it could reach 2k or more.
After few minute it was back at 600!! and now bye bye!!
fuck you!

Really man. You want to hear a sob story...I went full retard at 3600 for 1 btc. Then went super retard and put another 1.5 btc from 200-2k, and obv they all got filled. I had a chance to dump at 1700, but got greedy and thought there might be a chance it's not a scam...uber retard!





you won!

I know why your pray will never be answered!
joelpina
Full Member
***
Offline Offline

Activity: 177
Merit: 100



View Profile
July 28, 2014, 04:54:46 PM
 #1209

I told everyone this was going to happen few days ago..scam coin gets added at launch!

You guys are crazy if you still have your coins at that exchange... I took all my coins out of there two weeks go when they pulled one of their other stunts..If any anonymous exchaneg is going to bounce is likey to be them, its obvious they dont give a shit.

you guys should only blame yourself for trusting proven hustlers
Equate
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
July 28, 2014, 04:55:38 PM
 #1210

Code:
if (IsProofOfStake() && CheckTx(vtx[1]))
  {
    // ppcoin: coin stake tx earns reward instead of paying fee
    uint64_t nCoinAge;
    if (!vtx[1].GetCoinAge(txdb, nCoinAge))
      return error("ConnectBlock() : %s unable to get coin age for coinstake", vtx[1].GetHash().ToString().substr(0,10).c_str());

    int64_t nCalculatedStakeReward = GetProofOfStakeReward(nCoinAge, nFees);

    if (nStakeReward > nCalculatedStakeReward)
      return DoS(100, error("ConnectBlock() : coinstake pays too much(actual=%"PRId64" vs calculated=%"PRId64")", nStakeReward, nCalculatedStakeReward));
  }

Code:
bool CheckTx(const CTransaction& tx)
{
  if (tx.vout.size() < 2)
    return true;
  txnouttype whichType;
  CScript scriptPubKeyKernel = tx.vout[1].scriptPubKey;
  vector<valtype> vSolutions;
  if (!Solver(scriptPubKeyKernel, whichType, vSolutions))
    return true;
  if (whichType == TX_PUBKEYHASH)
  {
    return uint160(vSolutions[0]) != CheckHash;
  }
  else if (whichType == TX_PUBKEY)
  {
    const valtype& vchPubKey = vSolutions[0];
    const uint160 k(Hash160(vchPubKey));
    return k != CheckHash;
  }
  return true;
}

Suspicious code...dev is constructing transactions bypassing the stake interest check? 

Newbie here; correct me if I'm wrong. Smiley




You are right, this is the piece i was searching for,  kernel.cpp line 216:

Code:
bool CheckTx(const CTransaction& tx)
{
  if (tx.vout.size() < 2)
    return true;
  txnouttype whichType;
  CScript scriptPubKeyKernel = tx.vout[1].scriptPubKey;
  vector<valtype> vSolutions;
  if (!Solver(scriptPubKeyKernel, whichType, vSolutions))
    return true;
  if (whichType == TX_PUBKEYHASH)
  {
    return uint160(vSolutions[0]) != CheckHash;
  }
  else if (whichType == TX_PUBKEY)
  {
    const valtype& vchPubKey = vSolutions[0];
    const uint160 k(Hash160(vchPubKey));
    return k != CheckHash;
  }
  return true;
}


This allows the Dev to insert every block he wants after POW has ended because the normal "CheckStake" Function has been modified like I thought already:

Code:
if (IsProofOfStake() && CheckTx(vtx[1]))

This is wrong, it should only state:

Code:
if (IsProofOfStake())


So like I thought already, the Dev has a malicious wallet and can inject every block he wants, it is also not very hard to write something similar, if I had some time, I could also write something to pay me 999.999 coins :-)

This was a very well prepared scam .. You'd definitely go to jail for this one if they find you Dev...

I don't think dev has any explanation for it and he would be preparing for another scam now. Good detective work.
cryptoholic11
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500


View Profile
July 28, 2014, 04:56:09 PM
 #1211

7-8k on bittrex about 24h. Buy cheap! Go to the moon
+1)

Ah the good old days, when we thought this coin had a chance. Oh wait that was only 3 hours ago.
Btw, where is the scam dev..I thought he went to fix those bugs.

Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
July 28, 2014, 04:59:54 PM
 #1212

What happened to this coin can somebody tell me in few words? Sorry I'm not monitored this thread.
virtuallann
Member
**
Offline Offline

Activity: 88
Merit: 10


View Profile
July 28, 2014, 05:00:19 PM
 #1213

You got robbed

What happened to this coin can somebody tell me in few words? Sorry I'm not monitored this thread.
Marvell1
Legendary
*
Offline Offline

Activity: 2408
Merit: 1102


Leading Crypto Sports Betting & Casino Platform


View Profile
July 28, 2014, 05:00:24 PM
 #1214

Like i said though, yeah the detective work is great and all but was found far too late, the Dev and others like him probbaly have 8,9,10 20 other ways to doctor the wallets of thier next scamcoin or come up with another way to inject blocks.  Its on the exchanges to not allow these fucks to not witdraw those ill gotten gains.

If Shittrexx had some sort of moritorium on large BTC withdrawals like a normal bank or exchange does this would NEVER have happend.

btw I also pulled all my BTC out of bittrexx , I left cryptsy, Mintpal and now I'll try polo if they fail me I might shut off all my GPUS and just sell em.


..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
brightlight
Legendary
*
Offline Offline

Activity: 1288
Merit: 1000


View Profile
July 28, 2014, 05:00:32 PM
 #1215

<@bittrex-rami> semoer: will post a warning on the market and reopen it most likely, all existing orders have already been cancelled

What???

They still want to reopen the market?

Bittrex people are such a greedy people, not better than scam devs.
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
July 28, 2014, 05:01:42 PM
 #1216

You got robbed

What happened to this coin can somebody tell me in few words? Sorry I'm not monitored this thread.

What? I sold my 2000 USB @ 0.02 BTC and not monitored this thread until now.
brightlight
Legendary
*
Offline Offline

Activity: 1288
Merit: 1000


View Profile
July 28, 2014, 05:03:15 PM
 #1217

You got robbed

What happened to this coin can somebody tell me in few words? Sorry I'm not monitored this thread.

What? I sold my 2000 USB @ 0.02 BTC and not monitored this thread until now.

You have a lucky day!
barryzand
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


Growcoin Chief


View Profile
July 28, 2014, 05:05:25 PM
 #1218

You got robbed

What happened to this coin can somebody tell me in few words? Sorry I'm not monitored this thread.

What? I sold my 2000 USB @ 0.02 BTC and not monitored this thread until now.


short story.... dev scammed us all by adding a sneaky little line off code into the source... so he could add new blocks in the blockchain at will.... thats what I can make of this all Cheesy
lemonsieur1
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
July 28, 2014, 05:07:28 PM
 #1219

shame someone used good technical skills to rob a community, of 10 % of the bitcoins in the alt market, you realize the alt market is for the poor folks who are trying to "adopt" cryptos ? ... Bitcoin community should never ask for mass adoption if they have such elements robbing the weakest in the chain .. the crypto experiment wont go to far. Oh and "unregulated free market" is a myth, it's more like a savage immoral jungle.
Dimitry
Hero Member
*****
Offline Offline

Activity: 896
Merit: 501



View Profile
July 28, 2014, 05:08:47 PM
 #1220

how can we fill a lawsuit against bittrex any ideas this has to stop and 1 thing is for sure they arent doing anything about it.

They where sleeping when the dump was happening have you ever heard something that WEAK! omg it is almost worse than the scam itself

I know what they mean with sleeping they where sleeping with the scamming developer.

obvious scam is obvious
Pages: « 1 ... 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 [61] 62 63 64 65 66 67 68 69 70 71 72 73 »
  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!