Bitcoin Forum
June 16, 2024, 03:05:12 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 [241] 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 »
4801  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 07:47:19 PM
Guys Igotspots dev got back to me and asked me to post this: For those of you that dont know , he is the dev behind MMXIV, Balls, and 10k coins.

He says

"If you guys want me to fix this, it would have to be:

  • A new chain. This one can be fixed, but it's really fucked up and I don't feel like wasting time searching for bullshit
  • Premine destroyed. Whatever the premine was, the new chain would generate the current money supply minus premine amount. Community donations and bounties are fine, but premines are not
  • Same genesis as MMXIV so I can group it into my merged shit later if I decide to, same as BALLS and 10k are (works fine if you know how to do it)

This would require two updates. First to get the old chain moving again (extend PoW for 0 reward), then an update to the new chain (which would generate current money supply minus premine for the swap). You would need to convince Richie and Bittrex to update twice and escrow the swap so nobody has to trust me to hold their money

Or you could just wait it out, it'll probably stake eventually. I think it's messing with stake modifiers,  (maturity at 24 hours but wouldn't stake until 8.8 days) but I can't find the switch time so it's really hard to tell what bullshit is actually going on."




4802  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 07:02:40 PM
iGotSpots: ''You won't get a PoS block until at least 2nd Mar 2015 10:17:55'' Wink

.... and thats scary, because if anyone knows..he does. Guys can you pm Igotspots and ask him for help.

Vegas
4803  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 07:01:39 PM
Its simple. Its exactly as you said. *IF* we can hire I got spots, thats the best dev there is. Im really hoping he can help us, and he is a master of POS coins.

Vegas
4804  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 06:57:51 PM
pleast stop call this guy "dev"
+1000
4805  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 06:56:57 PM
It seems the community has some decisions to make.

1) Wait for the dev to appear and fix the code
2) Ditch the dev and get a third party to fix the code asap. Get a new committed dev.
3) Ditch the coin

A coin dev has a vision and commitment to make something with a coin. A new dev might be just a hired hand that is not necessarily committed to a coin's future. There has been exceptions to this though where a takeover was done successfully.

Due to my risk management strategy I am not materially exposed to emoney that is stuck in my wallet so I am indifferent to the option chosen. If it is going to be a lot of effort to fix the code, to hire a third party for the fix or to get a new committed dev, then it might be best to just ditch the coin and move on.

AT this point we need a new dev, BAD. The dev has made error after error, and dont you think if a dev gave a shit, he we be here at block 6000 to see everything working!?!? That says sooo much!! THANK YOU TO WHOEVER SUGGESTED OCMINER TO HOLD PREMINE, BEST MOVE WE EVER MADE AS NOW WE CAN USE THIS TO GET A REAL DEV.

Vegas
4806  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 06:54:50 PM
I just sent a pm to spots , asking for help in exchange for some of the premine. Me and him are tight, and he is the best dev there is. All hope is not lost.

Vegas
4807  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 06:49:29 PM
I don't see this switch that's mentioned, either, but I might be missing it in here. I can't find anywhere else it could be, but again, I could be wrong. I'm not really familiar with whatever coin this was cloned from. This is also where leap years are just thrown out and it's a flat 365 division

Code:
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;


    if (nHeight > PROTO_CHANGE_BLOCK) // E-Money New PoS Calculations begin here.
    {
        nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;
        int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
        return nSubsidy;
    }
    else
    {
        // E-Money Original PoS Calculations
        CBigNum bnRewardCoinYearLimit = MAX_MINT_PROOF_OF_STAKE; // Base stake mint rate, 1% year interest
        CBigNum bnTarget;
        bnTarget.SetCompact(nBits);
        CBigNum bnTargetLimit = bnProofOfStakeLimit;
        bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
        CBigNum bnLowerBound = 1 * CENT; // Lower interest bound is 1% per year
        CBigNum bnUpperBound = bnRewardCoinYearLimit;
        while (bnLowerBound + CENT <= bnUpperBound)
        {
            CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
            if (fDebug && GetBoolArg("-printcreation"))
                printf("GetProofOfStakeReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
            if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnTarget)
                bnUpperBound = bnMidValue;
            else
                bnLowerBound = bnMidValue;
        }
        nRewardCoinYear = bnUpperBound.getuint64();
        nRewardCoinYear = min(nRewardCoinYear, MAX_MINT_PROOF_OF_STAKE);
        int64 nSubsidy = nCoinAge * 33 / (365 * 33 + 8) * nRewardCoinYear;
        if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);
        return nSubsidy;
    }
}

Essentially, this is:

        int64 nSubsidy = nCoinAge * 29.2 * COIN / 365;

Are you saying that the code is correct, and without error? Whats stopping is from passing block 6000? Please help?!?!



4808  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 06:47:25 PM
I don't see this switch that's mentioned, either, but I might be missing it in here. I can't find anywhere else it could be, but again, I could be wrong. I'm not really familiar with whatever coin this was cloned from. This is also where leap years are just thrown out and it's a flat 365 division

Code:
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;


    if (nHeight > PROTO_CHANGE_BLOCK) // E-Money New PoS Calculations begin here.
    {
        nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;
        int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
        return nSubsidy;
    }
    else
    {
        // E-Money Original PoS Calculations
        CBigNum bnRewardCoinYearLimit = MAX_MINT_PROOF_OF_STAKE; // Base stake mint rate, 1% year interest
        CBigNum bnTarget;
        bnTarget.SetCompact(nBits);
        CBigNum bnTargetLimit = bnProofOfStakeLimit;
        bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
        CBigNum bnLowerBound = 1 * CENT; // Lower interest bound is 1% per year
        CBigNum bnUpperBound = bnRewardCoinYearLimit;
        while (bnLowerBound + CENT <= bnUpperBound)
        {
            CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
            if (fDebug && GetBoolArg("-printcreation"))
                printf("GetProofOfStakeReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
            if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnTarget)
                bnUpperBound = bnMidValue;
            else
                bnLowerBound = bnMidValue;
        }
        nRewardCoinYear = bnUpperBound.getuint64();
        nRewardCoinYear = min(nRewardCoinYear, MAX_MINT_PROOF_OF_STAKE);
        int64 nSubsidy = nCoinAge * 33 / (365 * 33 + 8) * nRewardCoinYear;
        if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);
        return nSubsidy;
    }
}

Essentially, this is:

        int64 nSubsidy = nCoinAge * 29.2 * COIN / 365;

Spots, I *KNOW* you can fix this better than anyone. Can we pay you some of the premine? Please?

4809  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: March 01, 2015, 06:45:23 PM
yup.. far too many people vested in this to leave it broke. My vote is to use some of the premine to hire a talented dev to get this working again.

Vegas
4810  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: February 27, 2015, 09:13:28 PM
How much is that if I had like 35,000 coins..??



Ohh wait pow is still going... time to crack the whip on that sha-256 farm.. faster faster...



...and THAT is how we do it in Vegas!
4811  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: February 27, 2015, 09:05:40 PM
OKAY DEV !!

I AM ALTCIONTIPS (FORMER LEADER OF FORTRESS)

WE BOUGHT 40BTC OF ECASH BECAUSE WE BELIEVED IN YOUR STAKING SCHEME AND MISSION.

YOU HAVE PERFORMED POORLY FROM THE START AND COST US BTC AND FURTHER TANHISHED MY REPUTATION.

NOW, YOU SIDE WITH THE MINERS FOR THE POW AND ALLOW THEM TO DUMP AND 1.2MIL COINS ON US, WHEN YOU COULD HAVE ENDED THE POW IN HOURS?

NO DICE.

IF YOU DO NOT CHANGE THIS IN 60 MINUTES FROM THIS POST (2:45PM EST), WE WILL DUMP OUR HOLDINGS.

BY MY CALCULATIONS, THAT WILL SEND THIS TO 100 SATS !!

YOU HAVE 60 MINS !!


WE WILL TANSIH YOUR REP LIKE YOU DID OURS !!!!

AT

You're stupid multiple times over and it will be a pleasure to set low bids while you lock in your losses.

he is just FUDing, maybe he even has no coins at all so he wants some cheap, he thinks that big red letter make people do stupid things, lol
They will dump when time is right, hah!


With 40 BTC on this coin you can tell what price will be...so c'mon.....
You can manipulate marketplace !!
You make loss in the moment when you sell your coins/shares until then, everything is possible




Here Ill give you the .2 BTC you lost, just:

1. Give me your btc address
2. Stop your whining, it wont be the last time you lose playing crypo, get used to it.

Vegas
4812  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: February 27, 2015, 08:59:06 PM
hes fudding to trash the price or maybe he spent .2 BTC and bought on the high (money he couldnt afford to lose). If he is such a high roller , why does he have a noob account? I AM a f*king high roller, and cant spot a fake a mile away!

Vegas
4813  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: February 27, 2015, 08:53:08 PM
OKAY DEV !!

I AM ALTCIONTIPS (FORMER LEADER OF FORTRESS)

WE BOUGHT 40BTC OF ECASH BECAUSE WE BELIEVED IN YOUR STAKING SCHEME AND MISSION.

YOU HAVE PERFORMED POORLY FROM THE START AND COST US BTC AND FURTHER TANHISHED MY REPUTATION.

NOW, YOU SIDE WITH THE MINERS FOR THE POW AND ALLOW THEM TO DUMP AND 1.2MIL COINS ON US, WHEN YOU COULD HAVE ENDED THE POW IN HOURS?

NO DICE.

IF YOU DO NOT CHANGE THIS IN 60 MINUTES FROM THIS POST (2:45PM EST), WE WILL DUMP OUR HOLDINGS.

BY MY CALCULATIONS, THAT WILL SEND THIS TO 100 SATS !!

YOU HAVE 60 MINS !!


WE WILL TANSIH YOUR REP LIKE YOU DID OURS !!!!

AT
altcointips ? never heard of it , go ahead and dump tho if you can get this to a 100 sat i'd be really happy. just imagine the oppertunities!

Thanks for letting me know your dumping so cheap, I have my buy wall in for a few btc. Thanks in advance. DONT blame others for YOUR investment choices. Thats a tell tale sign that your not a high roller. High rollers DONT blame others when their investments dont go as planned, they rethink their investments and find ways to make it profitable. No high roller dumps out of frustration. GTFO noob, and you dont have near enough BTC to dump it to 100 sats. I GUARANTEE you cant show us a screenshot of your wallet showing 40BTC!! Just yesterday, I posted that I was the highest holder in MMXIV, and the dev called bullshit on it, and I posted a screen shot showing my MMXIV wallet holding of $12,000 USD. So go ahead high roller, post a copy of your wallet..or STFU.

Vegas

Vegas
4814  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 27, 2015, 06:21:19 PM
stakes coming in , loadsa confirms and then suddenly 95% suddenly go unconfirmed!!

I found a few orphans

i am taking about confirmed blocks turning into orphans!!! many of them!

Since the fork on balls, I get 5 orphans and finally a stake. FYI. Got 2 stakes since fork happend on both. Orphans happend on 2/26/15. 2 balls batches purched from bittrex on 2/23 and 2/24. Maybe thats why. Ill wait and see. Just letting you know.
Vegas
4815  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: February 27, 2015, 04:13:26 AM
Its amazing how quickly people panic and dump. Why not wait until the dev fixes/forks the code? If all else fails and the dev bails, Im sure with all this interest there will be a community takeover. Too many people vested in this coin to fail. Wait and see how this plays out.

Vegas
4816  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: February 26, 2015, 05:48:23 PM
Im just gonna throw out my thougts. Maybe start POS for 21 days AFTER pow is over , which of course will require a fork. This will seperate POW and POS if they are interfering with each other. It also will give time for everyone to update their wallets including the exchanges. It will give people that are mining and buying enough time to buy/mine all they can until the big POS 21 days hits. This SHOULD increase the price as the demand will be their when people know the big 21 days are coming. Just my thoughts, it seems to fit. Also dont be affraid to ask for some help. There are many pro devs here that really know their stuff, I dont know if you did a premine, but if you did, then use part of those funds to help fix this. The MOST important thing above all else is the 21 days of POS, because THAT is the value of the coin, I believe that the coin will be worth MORE if POS happends after pow. People will buy in anticipation, and miners will mine like crazy and get all they can.

Vegas
4817  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ECASH]E-Money Advertising Revenue In Wallet | 8% Daily Stake for 21 days on: February 26, 2015, 04:14:38 AM
Something is screwed with the pos. I have 31,000 coins, and my stake weight is 2961. The network weight is 0. Now its my understanding that MY stake weight varies based on my amount of coins and age..but why is the NETWORK weight 0? Thats not right. If not corrected, this will hurt this coins value badly because that 8% daily interest is only for 21 days, and THAT 21 days has started, but not on my end.

Vegas
4818  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] RISKCOIN - Scrypt - NECESSARY FORK AT BLOCK 4500!!! HARD FORK! on: February 26, 2015, 03:11:19 AM
block 4500!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
4819  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 25, 2015, 11:46:23 PM
This is my final word..I came to explain where they went wrong, TO HELP, so they dont make the same mistake, and posted links to help them understand. Thats all, but I think my timing was really bad. Anyway if your ever in Vegas , look me up, I might actually like you in person...maybe.
Vegas
4820  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 25, 2015, 11:42:37 PM
ok we cool then? I still have a shitload invested in you, cause I trust you, just dont like you, your too much like me. I respect you so much, Ill let you know when Im gonna exit next time, and we can exit together in style.

Vegas
Pages: « 1 ... 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 [241] 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!