Bitcoin Forum
May 26, 2024, 01:04:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 »
861  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 05, 2014, 07:33:06 AM
Thank you for update, halibit!  All i can help atm is continue mining to support transactions.
That means Smiley
862  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 05, 2014, 07:20:49 AM
This coin is fucked.  Everything I sent to Poloniex yesterday hasn't shown up and everything I sent to MintPal today hasn't shown up even though there has been many many confirms on the network.  Since it is happening at both exchanges I assume something with the coin.

Do you have the TX IDs, and are you sure that you are on the correct chain?
Also have the devs made contact with any of the exchanges to make sure they have updated their wallet?
Mintpal eventually showed up after ~6 hours and hundreds of confirms.  Still a no show at Polo.

All exchange and pools are informed.
Mintpal sent note they are updated wallet.

Poloniex I don't know, but I just test withdraw and it works fine.
Next I will send deposit.

Correct blocks will start continue after block 318000 with code:
Code:
// microCoin block size.
        int64 nSubsidy = 1 * COIN;
        if(nHeight < 10000)   
        {
                nSubsidy = 0.0001 * COIN; // Premining 1 coin. (10000 blocks * 0.0001 coins) = Total 1 coin. ** For network security purpose. (Needed with the fair launch).
        }
else if(nHeight >= 10000 && nHeight < 160000) // Launch start. Increasing block size on every blocks +1. ** Blocks: 1001 - 160000
        {
nSubsidy = nHeight * COIN;
}
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 <= 318000) // 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.
}


    return nSubsidy;
}

Pools and markets will need that time so we can be sure everyone is update new wallet before block change.
I talk last day with MCR and it was ok for him.

Sorry if I made some one feel bad because I miss [*COIN] from code fix.
I hope you agree opensource products are higly risky invest.
Thank you for everyone who helping me and MCR with that bugfix, and big thanks for all miners.

And please, check the code, and if you see I miss something again, let me know asap.
We will update git and wallet links soon.
863  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 07:03:30 PM
Many days ago halibit reassured that he and his imaginary dev team are capable of running coin and exchange. And that this is not another atempt of cryptoDOLLAR (cD).

Bollocks! Mistake after mistake.

Jesus will not help you! Kingdom of Jesus; There must be more; this can't save coin and exchange.

Well, i may be wrong. It's a fucking miracle that coin is still alive!


EDIT: halibit changed
Quote
There must be more
to
Quote
Save me and my coins
Let's pray he hears us.
Cheesy
864  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 04:09:14 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

Thanks for your info about  * COIN.
Yes I forgot that from calculation.
Good we have reason for that 0.01, so it will be easy fix.
... and for 1000 block reward too.
865  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 01:31:14 PM
Let's wait for the dev, he is at school now, gettin' another "F" on math  Grin
Then his father beats him, and after that he will "FIX" that again. I think reward 10000000000000000000000000000000000000000000000000000000000000000000 is fine.
Because this is so good for coin, lots of errors make it strong and good looking for investors.
 Grin Grin Grin Grin Grin
How about if we let blockreward to 0.01, then we have nice lot .
Just kidding  Cheesy
Sure block reward need to fix as it was planned to be.

Actually I need to tell, this one was my bad. I calculate the code fix.
Don't kill me  Sad
866  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 01:25:26 PM
Chaging correct block reward, It will be same kind of "hard fork" as this one was.
Wallets can use normally.

edit. I test transfer old blocks with new wallet and it's working normally. But don't use old wallet for transfers.
867  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 01:20:02 PM
Well.. Better that way. Now there there is not anyone get new coins until wallet is fixed.
868  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 01:04:57 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.
}
869  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 04, 2014, 12:59:20 PM
Looks like there is not right amount.
870  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] alcurEX Cryptocurrency Exchange on: May 04, 2014, 12:25:59 PM
Hi, halibit. Please, accept my requst to join devs forum. Currently I'm holding 720 shares and I can prove it if you wish. My mail is greed****@gmail.com
Accepted. Welcome to forum.
871  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 06:20:56 PM

I am started to think what the devs knew about this long time, and just instamined several btc. Why it takes 10 hours to fix and another 35 hours to mine? Very suspicious "mistake".
Kind of like how it is 'suspicious' when a newb puppet account appears with 10 posts so far and every one of them slamming MRC.  Agenda much??  LOL
haha
This just show how much we actually read coins sourcecode. Looks like no matter is it open or not.   Cheesy
872  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - Mandatory Wallet Update on: May 03, 2014, 05:23:31 PM
I have only 3 computers online, because I moving Sad
873  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] alcurEX Cryptocurrency Exchange on: May 03, 2014, 05:08:45 PM
even halibit is nnot active anymore
I am active Smiley
I fixing code with coders.
874  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 01:42:33 PM
I can make code fix:
            nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
is not right.
What we want to be?

I have windows and linux computer ready for compile new wallets, jus give me right code.

1/ nSubsidy = (10000 - ((nHeight - 10000) * 0.01)) * COIN; if we keep 10K reward

2/ nSubsidy = (1000 - ((nHeight - 1000) * 0.01)) * COIN; if we make it 1K reward

You guys confirm ?
Don't want to quess. Are you sure about the code?

I think
nSubsidy = (310000 - ((nHeight - 10000) * 0.01)) * COIN; if we keep 10K reward
I will change block reward decrease as it was planned (from 10,000 it will count down with 0.01 steps)
Working code for that is:
 nSubsidy = (3100 - ((nHeight * 0.01) -310000)) - 300000;
875  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 12:32:32 PM
I can make code fix:
            nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
is not right.
What we want to be?

I have windows and linux computer ready for compile new wallets, jus give me right code.

1/ nSubsidy = (10000 - ((nHeight - 10000) * 0.01)) * COIN; if we keep 10K reward

2/ nSubsidy = (1000 - ((nHeight - 1000) * 0.01)) * COIN; if we make it 1K reward

You guys confirm ?
Don't want to quess. Are you sure about the code?
876  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 12:25:42 PM
I can make code fix:
            nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
is not right.
What we want to be?

I have windows and linux computer ready for compile new wallets, jus give me right code.
877  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 12:23:34 PM
We can make hard fork with right code.
How about if we drop block reward stable 1,000 for rest of life as many asking?
878  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 12:21:35 PM
We can make hard fork.
879  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - soon in alcurEX exchange on: May 03, 2014, 12:17:06 PM
This is why that happen:
Coin is not broken, but it is not correct if there need to be count down for 0.01 steps:

Code:
		else if(nHeight >= 310000)    				// Decreasing block size, slowing down with -0.01 steps.  ** Blocks: 310001 - rest
        {
nSubsidy = (310000 - ((nHeight - 310000) * 0.01)) * COIN;
if (nSubsidy <= 1000) nSubsidy = 1000; //
Actually it count down correct but not from 10,000coins, but from 310000 coins.
880  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: CoinMarketCap.com - Market Cap Rankings of All Cryptocurrencies! on: May 03, 2014, 11:51:21 AM
microCoin block explorer and total coins URL links are changed:
Block explorer: http://107.170.57.232/api/index.php
Total minted: http://107.170.57.232/api/total.php
Pages: « 1 2 3 4 5 6 7 8 9 10 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!