Bitcoin Forum
June 19, 2024, 06:14:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LIBERTYCOIN][XLB] X11 | 100% POS | No IPO | No Premine | Cryptsy & Mintpal on: May 28, 2014, 03:13:59 AM
Come back ie,we need you. I buy xlb at 14000
2  Alternate cryptocurrencies / Altcoin Discussion / Re: [Poll] What anonymous coin will succed? on: May 27, 2014, 01:38:12 PM
I think the XLB will come true with anonymous technology. Because of IE.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LIBERTYCOIN][XLB] X11 | 100% POS | No IPO | No Premine | Cryptsy & Mintpal on: May 27, 2014, 01:31:31 PM
I think the XLB will come true with anonymous technology. Because of IE.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 13, 2014, 10:13:25 AM
How about alcurEx marketing? Is the development stoping now?
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 07, 2014, 01:00:04 PM
Why MRC's price is so cheap? Is it a shame for alcurEx?
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 05, 2014, 02:55:51 PM
I think alcurEx and microCoin need a proffesional team,that about coding and marketing.
There's a good start,but the abilities of development and advertisement are poor.
Can alcurEx use IPO funds to make much more effort? That's too long a way according to nowa situation.
Huh
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 02:51:06 PM
We need new fix I think.

I don't get how block size can be 0.01 with this code?

Code:
        {
if (nHeight <= 315000) nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
if (nHeight > 315000) nSubsidy = (3100 - ((nHeight * 0.01) -310000)) - 300000; //Blockreward fixed decreasing 0.01 steps
if (nSubsidy <= 1000) nSubsidy = 1000; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
}

The code is wrong again.

I was the first one found the bug, PMed MCR and halibit, posted here the correct code, but no one wanted to hear me.

I will post here the correct code again. Let review it together, and hope this time you make it correct.

Quote
else if (nHeight >= 310000 && nHeight <= 315000) // 310,000 block rewards, decreasing 0.01 on every block
{
   nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
}

else if (nHeight <= 320000) // 0.01 block rewards (wrong logic as coin spec, but we need to keep it because it's already happened)
{
   nSubsidy = (3100 - ((nHeight * 0.01) - 310000)) - 300000;
}

else
{
   nSubsidy = (10000 - ((nHeight - 320000) * 0.01)) * COIN;
   if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
}

Again, we need to pick another block number to apply this patch. Say it 320,000. New logic will be:

  • Before block 310,000: Same
  • Block 310,001 - 315,000: Block rewards from 310,000, reducing 0.01 each block (already happened)
  • Block 315,001 - 320,000: Block rewards = 0.01 (happening - current block at the time of writing is 315143)
  • Block 320,001+: Block rewards from 10,000, reducing 0.01 each block. And it will stop reducing at 1,000. (will happen at Block 1220001)

This new scheme we have 5000 blocks of 0.01 rewards, we can call it "calming down" period Smiley


+1

That make sense.
hilibit push code without any test,poor coding,it's a horrible thing.
Never again.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 02:33:38 PM
The reward value equils nSubsidy/COIN in the end.
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 02:23:02 PM
if (nHeight <= 315000)    nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
if(nHeight > 315000) nSubsidy = ((3100 - ((nHeight * 0.01) -310000)) - 300000) * COIN; //Blockreward fixed decreasing 0.01 steps
if (nSubsidy <= 1000) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.


this is the right code.

OR:

if (nHeight <= 315000)    nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
if(nHeight > 315000) nSubsidy = (13100-nHeight * 0.01) * COIN; //Blockreward fixed decreasing 0.01 steps
if (nSubsidy <= 1000) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 12:44:35 PM
Just Do it right now! No talking too many words.
The time is the money,yeah I mean coins.
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 12:20:12 PM
Can you resolve it now? Or?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!