Pages:
Author

Topic: [ANN][exchange] alcurex v2.0.1 - page 44. (Read 152677 times)

hero member
Activity: 784
Merit: 500
May 04, 2014, 06:07:18 AM
even halibit is nnot active anymore
I am active Smiley
I fixing code with coders.


And when will the exchange start? No updates for days, again...

No updates does not mean no work is done.
Many asked for an ETA, we got none.
Anyway, its done when its done, and a wrong ETA would not help anyone.

Halibit and MCR care about the projects, they have proven that many times, last time was yesterday by providing the quick solution for MRC block reward bug.

It´s cool when they are working on it, but they should update their investors. They promised us to get a stake in the company when we buy the shares. We should get updates regularly. The launch of the exchange was due 1 month ago, I think they should create a new timeline with milestones and a final launch date.
sr. member
Activity: 434
Merit: 250
May 04, 2014, 05:35:41 AM
even halibit is nnot active anymore
I am active Smiley
I fixing code with coders.


And when will the exchange start? No updates for days, again...

No updates does not mean no work is done.
Many asked for an ETA, we got none.
Anyway, its done when its done, and a wrong ETA would not help anyone.

Halibit and MCR care about the projects, they have proven that many times, last time was yesterday by providing the quick solution for MRC block reward bug.
hero member
Activity: 784
Merit: 500
May 03, 2014, 04:40:03 PM
even halibit is nnot active anymore
I am active Smiley
I fixing code with coders.


And when will the exchange start? No updates for days, again...
legendary
Activity: 1596
Merit: 1006
May 03, 2014, 12:08:45 PM
even halibit is nnot active anymore
I am active Smiley
I fixing code with coders.
hero member
Activity: 686
Merit: 500
May 03, 2014, 09:50:46 AM
even halibit is nnot active anymore
sr. member
Activity: 300
Merit: 250
4mnth old Miner :-)
May 03, 2014, 07:33:59 AM
looks like a Fire sale on Mintpal - let see who has the strongest hands  Tongue

cant get to 1 litoshi case Poloni is down.  Grin
actually might a good idea to get back to mrc mining (until it get fixed)


my god, you read my mind :-)
shhooosh  Wink there has been bigger scams on this forum in the last 4 months I started. This coin is only worth something is someone believes in it. 6 months down the track no ones going to care. Nothing lost nothing gained.

its not like the first coin to have issues.
legendary
Activity: 1400
Merit: 1050
May 03, 2014, 07:16:21 AM
looks like a Fire sale on Mintpal - let see who has the strongest hands  Tongue

cant get to 1 litoshi case Poloni is down.  Grin
actually might a good idea to get back to mrc mining (until it get fixed)
sr. member
Activity: 300
Merit: 250
4mnth old Miner :-)
May 03, 2014, 06:50:18 AM
looks like a Fire sale on Mintpal - let see who has the strongest hands  Tongue

cant get to 1 litoshi case Poloni is down.  Grin
member
Activity: 98
Merit: 10
One life. Live it.
May 03, 2014, 06:33:46 AM
PMed halibit but I dont think he receive my mesage soon. It is very unlucky for us that this bug happend during the weekend. I am afraid that we don't have that much time to action, just couple of hours to fix the bug. Longer than that, the coin will die.

Anyone has halibit cellphone or something? Please, do something if you can. And if you can, please do it quick.

I'm a developer. I can fix the bug. But only if the community trust me, and halibit gives me that permission.

Wish us more luck.. Sad
sr. member
Activity: 434
Merit: 250
May 03, 2014, 06:23:28 AM
https://github.com/microcoinsource/microcoin/blob/master/src/main.cpp

Quote
int64 GetProofOfWorkReward( int nHeight, uint256 prevHash)
{
...
      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; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
      }

Clearly wrong logic. It should be:

Quote
            nSubsidy = (10000 - ((nHeight - 310000) * 0.01)) * COIN;

But it is too late to apply this patch. Guys, we need to agree on a block when we will apply this patch. Maybe after block 320000? We then only has 10000 of extreme high block reward, it will affect the coin slightly. Please agree and do something, I cant watch this coin die like this, it is just too sad.

I agree, this a very serious bug and it is of almost urgent that we fix it as soon as possible.
We dont need MCR to fix it, i think halibit can do or hire someone that does.

Halibit, we need a response here and, if possible in any way, we need it today.
legendary
Activity: 1400
Merit: 1050
May 03, 2014, 06:13:22 AM
I finally sold 99 of my 100 my shares (I keep a symbolic one) with pratically no loss. I lost only 0.0002 BTC.

If one day this project see the sunlight I may come back as user but I'm not confident enough to invest my money in alcurEX. How can I trust a business when the founder leave for some mysterious reasons? What else he will hide from us in the future? What will happen when a security hole in the code will be discovered but the freelancers that coded the thing will not be around anymore?

I don't think it's a scam but I don't believe in their success neither.

But good luck anyway! I wish you all that I am wrong.  Smiley
Do you think Bill Gate ever sent a report status to MS shareholder of what he was doing (on a daily basis) ?
At some point the crypto community, (as I keep reading this in many threads) will have to grow up and stop behaving like little impatient children.
member
Activity: 98
Merit: 10
One life. Live it.
May 03, 2014, 06:03:11 AM
https://github.com/microcoinsource/microcoin/blob/master/src/main.cpp

Quote
int64 GetProofOfWorkReward( int nHeight, uint256 prevHash)
{
...
      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; // Rest of blocks are 1000 coins. Then network working forever with stake blocks.
      }

Clearly wrong logic. It should be:

Quote
            nSubsidy = (10000 - ((nHeight - 310000) * 0.01)) * COIN;

But it is too late to apply this patch. Guys, we need to agree on a block when we will apply this patch. Maybe after block 320000? We then only has 10000 of extreme high block reward, it will affect the coin slightly. Please agree and do something, I cant watch this coin die like this, it is just too sad.
member
Activity: 98
Merit: 10
One life. Live it.
May 03, 2014, 05:44:27 AM
Who are the dev or in charge of MRC coin atm? The coin has a serious bug and we really need a quick fix. I cant watching the coin dies like this, it is too bad and too disappointed Cry

The coin has a serious bug? Really? Which one?

According to ALCUREX: We urgently need an ETA for the bugfixes so we can test further.

The current block reward, after block 310000, is reducing from 310.000, not 10.000 as stated in the coin spec.

With this very huge number of block reward (really surprise me for this very noob bug), the coin will die very soon (value will be less than 1 litoshi).

Time to sell your all MRC if MCR not comming back and fix this.

I am really disappointed right now, hard to say a word. This is my 3 month investment and it will die in a way I can not imagine.
sr. member
Activity: 434
Merit: 250
May 03, 2014, 05:41:39 AM
Who are the dev or in charge of MRC coin atm? The coin has a serious bug and we really need a quick fix. I cant watching the coin dies like this, it is too bad and too disappointed Cry

The coin has a serious bug? Really? Which one?

According to ALCUREX: We urgently need an ETA for the bugfixes so we can test further.
member
Activity: 98
Merit: 10
One life. Live it.
May 03, 2014, 05:34:55 AM
Who are the dev or in charge of MRC coin atm? The coin has a serious bug and we really need a quick fix. I cant watching the coin dies like this, it is too bad and too disappointed Cry
sr. member
Activity: 248
Merit: 250
May 03, 2014, 01:49:26 AM
I am still riding the MRC train and believe in alcurEX.
It looks very promising and i am looking forward to it.
sr. member
Activity: 294
Merit: 250
May 01, 2014, 07:15:17 PM
I finally sold 99 of my 100 my shares (I keep a symbolic one) with pratically no loss. I lost only 0.0002 BTC.

If one day this project see the sunlight I may come back as user but I'm not confident enough to invest my money in alcurEX. How can I trust a business when the founder leave for some mysterious reasons? What else he will hide from us in the future? What will happen when a security hole in the code will be discovered but the freelancers that coded the thing will not be around anymore?

I don't think it's a scam but I don't believe in their success neither.

But good luck anyway! I wish you all that I am wrong.  Smiley
member
Activity: 118
Merit: 100
May 01, 2014, 03:58:59 PM
No scam.  Smiley

If you´re stakeholder, come here:
http://alcurex.info/developers-forum/


Exchange is in beta testing.
I sent request to join 3 weeks ago - no answers.
There is no any "unaccepted" request.
Send request again if you wan to join.
Sorry, my fault. I wait for request on my e-mail but it is notification on the site >.>
legendary
Activity: 1596
Merit: 1006
May 01, 2014, 11:59:38 AM
No scam.  Smiley

If you´re stakeholder, come here:
http://alcurex.info/developers-forum/


Exchange is in beta testing.
I sent request to join 3 weeks ago - no answers.
There is no any "unaccepted" request.
Send request again if you wan to join.
member
Activity: 118
Merit: 100
May 01, 2014, 06:06:54 AM
No scam.  Smiley

If you´re stakeholder, come here:
http://alcurex.info/developers-forum/


Exchange is in beta testing.
I sent request to join 3 weeks ago - no answers.
Pages:
Jump to: