Pages:
Author

Topic: [ANN] microCoin MRC - alcurEX - Scrypt-Jane - nFactor - page 33. (Read 374705 times)

sr. member
Activity: 434
Merit: 250
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

Microcoin had no premine and no IPO, so how should a professional team for Microcoin be financed?

Regarding to alcurex, part of the IPO is used to get the exchange coded, it would be nice if it goes faster, but there is no real reason to hurry things.
Better get it well done and secure, Poloniex has been hacked for the 2nd time already and is up some months only. At the time i write this 50% of what poloniex owes the users from the first hack is not even paid back. 2nd hack did little or no damage at all, but just because there was some luck involved. Do you want similar things happen to alcurex?
newbie
Activity: 11
Merit: 0
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
full member
Activity: 434
Merit: 100
Tnx for update!

Let's All who really support MRC help it as it help us and continue blocks calculation.
legendary
Activity: 912
Merit: 1000
Hello again,

We used the fix posted here and tested it. (Thank you snguyen)

The wallet has been updated and will hard fork at block #318,000 (around 30 hours from now) back to its normal block rewards.

All major MRC exchanges and pools have been notified of the hard fork.

New source:
https://github.com/microcoinsource/microCoin_V2

Windows wallet:
http://www56.zippyshare.com/v/77357538/file.html

Thank you all for your patience and understanding.
Lol why bother switching to that account to make the announcement.  Just stay as Halibut.
MCR
sr. member
Activity: 266
Merit: 250
Hello again,

We used the fix posted here and tested it. (Thank you snguyen)

The wallet has been updated and will hard fork at block #318,000 (around 30 hours from now) back to its normal block rewards.

All major MRC exchanges and pools have been notified of the hard fork.

New source:
https://github.com/microcoinsource/microCoin_V2

Windows wallet:
http://www56.zippyshare.com/v/77357538/file.html

Thank you all for your patience and understanding.
sr. member
Activity: 250
Merit: 250
I think what it is very good for coin, when devs, even in this situation, not annoys people with technical posts or explanations, etc.
Just not showing up. Really good!
sr. member
Activity: 250
Merit: 250
Block times are normal - difficulty dropping.
full member
Activity: 159
Merit: 100

I deside to use your code and you right about I should then ask final code.
So, here is whole code I will use:
Can you confirm?

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 - 318000) * 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;
}


Thank you for asking me this. I strongly believe this code will work as expected.

Best regards,

So were not going to have the fix until block 318000?
316000 should be fine in my opinion. There is only two pools out there with any hash rate, and it will take ages to reach 318000 with no miners.

Lets just get exchanges to freeze/fix the wallet and the two pools to update and we fix at block 316000. We can warn everyone not to send coins to the exchanges until the all confirm they are updated.
member
Activity: 98
Merit: 10
One life. Live it.

I deside to use your code and you right about I should then ask final code.
So, here is whole code I will use:
Can you confirm?

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 - 318000) * 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;
}


Thank you for asking me this. I strongly believe this code will work as expected.

Best regards,
legendary
Activity: 1596
Merit: 1006

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:

      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 - 318000) * 0.01)) * COIN;
      if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
      }


Halibit, if you decide to use my code, use it correctly. I picked 320,000 just a number to show the logic. If you picked 318,000 instead, then please update the code accordingly. There are 2 places needed to change but you only updated one Smiley.

This time, please upload the correct fix, or give me a review permission at least. I need only one minute to tell if the code works or not.
I deside to use your code and you right about I should then ask final code.
So, here is whole code I will use:
Can you confirm?

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 - 318000) * 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;
}
member
Activity: 98
Merit: 10
One life. Live it.

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:

      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 - 318000) * 0.01)) * COIN;
      if (nSubsidy <= 1000 * COIN) nSubsidy = 1000 * COIN; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
      }


Halibit, if you decide to use my code, use it correctly. I picked 320,000 just a number to show the logic. If you picked 318,000 instead, then please update the code accordingly. There are 2 places needed to change but you only updated one Smiley.

This time, please upload the correct fix, or give me a review permission at least. I need only one minute to tell if the code works or not.
jr. member
Activity: 37
Merit: 6
Buying wall on mintpal is melting down (from 30 to 20 BTC). I am wondering if I should sell all MRC I have there, since very soon it might become invalid (I think mintpal has not updated wallet yet, and now we will have 3 versions of MRC soon Sad).

I have lost 10 mil on poloniex, I sent them 2 days ago but it never appears on my balance. Helpdesk have not responded yet.

A lot of bad signs for the coin.

So another person with a missing MRC deposit at Polo.  That makes me feel better haha.  I'm sure they will get it sorted out quickly.
Transmited 5.5 mil two days ago to poloniex. Wrote to support why I cant see my depo (mrc). yesterday they solve my problem. so support working fine.
Today send some coins again and not resived again... waiting for solution\updating
They seems to be correct MRC wallet anyway
I just send few coins and deposit history show:
MRC   5.5   2014-05-05.07:35:09   PENDING (16 of 15 confirmations)
It takes 15min.
yep. my depo confirmed too!
legendary
Activity: 1596
Merit: 1006
Buying wall on mintpal is melting down (from 30 to 20 BTC). I am wondering if I should sell all MRC I have there, since very soon it might become invalid (I think mintpal has not updated wallet yet, and now we will have 3 versions of MRC soon Sad).

I have lost 10 mil on poloniex, I sent them 2 days ago but it never appears on my balance. Helpdesk have not responded yet.

A lot of bad signs for the coin.

So another person with a missing MRC deposit at Polo.  That makes me feel better haha.  I'm sure they will get it sorted out quickly.
Transmited 5.5 mil two days ago to poloniex. Wrote to support why I cant see my depo (mrc). yesterday they solve my problem. so support working fine.
Today send some coins again and not resived again... waiting for solution\updating
They seems to be correct MRC wallet anyway
I just send few coins and deposit history show:
MRC   5.5   2014-05-05.07:35:09   PENDING (16 of 15 confirmations)
It takes 15min.
jr. member
Activity: 37
Merit: 6
Buying wall on mintpal is melting down (from 30 to 20 BTC). I am wondering if I should sell all MRC I have there, since very soon it might become invalid (I think mintpal has not updated wallet yet, and now we will have 3 versions of MRC soon Sad).

I have lost 10 mil on poloniex, I sent them 2 days ago but it never appears on my balance. Helpdesk have not responded yet.

A lot of bad signs for the coin.

So another person with a missing MRC deposit at Polo.  That makes me feel better haha.  I'm sure they will get it sorted out quickly.
Transmited 5.5 mil two days ago to poloniex. Wrote to support why I cant see my depo (mrc). yesterday they solve my problem. so support working fine.
Today send some coins again and not resived again... waiting for solution\updating
legendary
Activity: 1596
Merit: 1006
Thank you for update, halibit!  All i can help atm is continue mining to support transactions.
That means Smiley
full member
Activity: 434
Merit: 100
Thank you for update, halibit!  All i can help atm is continue mining to support transactions.
legendary
Activity: 1596
Merit: 1006
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.
legendary
Activity: 1148
Merit: 1000
I think that a quick fix with a steady payout of 10.000 should be implemented ASAP, then sort out the code.


Also the idea of turning the coin to POS is not a bad one.....
full member
Activity: 434
Merit: 100
Two r 270x from me

Still, w8 for some ETA of fix.
Nut2pools seems working, blocks accepted, but reports hosting error.
hero member
Activity: 600
Merit: 500
I hope we get an update soon. I'm mining with 2 cores of my cpu to keep the coin alive (don't know if that helps) ;-)
Pages:
Jump to: