Author

Topic: [AC] AsiaCoin | Pure PoS | 100% Interest - page 129. (Read 264526 times)

full member
Activity: 154
Merit: 100
Actually the nethash rate from the client is NOT a real number.. No one is actually mining 19 Gh/s.

It's just a calculated number using timestamp delta between blocks and difficulty

It is simply just this forumla: https://en.bitcoin.it/wiki/Difficulty#What_is_the_formula_for_difficulty.3F

In code..

Code:
// Litecoin: Return average network hashes per second based on last number of blocks.
Value GetNetworkHashPS(int lookup) {
    if (pindexBest == NULL)
        return 0;

    // If lookup is -1, then use blocks since last difficulty change.
    if (lookup <= 0)
        lookup = pindexBest->nHeight % 2016 + 1;

    // If lookup is larger than chain, then set it to chain length.
    if (lookup > pindexBest->nHeight)
        lookup = pindexBest->nHeight;

    CBlockIndex* pindexPrev = pindexBest;
    for (int i = 0; i < lookup; i++)
        pindexPrev = pindexPrev->pprev;

    double timeDiff = pindexBest->GetBlockTime() - pindexPrev->GetBlockTime();
    double timePerBlock = timeDiff / lookup;

    return (boost::int64_t)(((double)GetDifficulty() * pow(2.0, 32)) / timePerBlock);
}

full member
Activity: 210
Merit: 100
After PoW stage, it should be difficult to reach 19,21 GH of network hashpowers at block 27377 and 32106. We will be stay at PoW+PoS stage if the data trogdorjw73 provided is correct. Is this possible to reopen the block explorer let more community members to check this issue? We should do more care about this matter since three exchanges allow AC transaction now.  Thanks for all your efforts, great community and team members.  

I'm not sure what you mean, can you clarify?

Do you mean that you think PoW is still going on?

I can assure that PoW is not currently being accepted into the blockchain at this point.  Although one can try to generate a proof of work, no other nodes would accept it into the blockchain due to this statement in CBlock::AcceptBlock()

Code:
	if (IsProofOfWork() && nHeight > CUTOFF_HEIGHT)
        return DoS(100, error("AcceptBlock() : No proof-of-work allowed anymore (height = %d)", nHeight));


But it's still interesting to me, where does that ~19 GH/s come from? I mean, someone or some pool with that amount of hashpower should clearly know that they're not getting reward for their hashrate. I think it could be a pool whose settings gone totally wrong. getdifficulty output:

Code:
{
"proof-of-work" : 274.46071294,
"proof-of-stake" : 0.00367996,
"search-interval" : 1
}
sr. member
Activity: 532
Merit: 250
+5000 AC & Thanks you very much

You saved $1 million of investor’s money
The dragon with second heart will rise again , far more , for sure



Nice dragon there! I usually think of us as more of a phoenix that rises from its ashes
full member
Activity: 154
Merit: 100
After PoW stage, it should be difficult to reach 19,21 GH of network hashpowers at block 27377 and 32106. We will be stay at PoW+PoS stage if the data trogdorjw73 provided is correct. Is this possible to reopen the block explorer let more community members to check this issue? We should do more care about this matter since three exchanges allow AC transaction now.  Thanks for all your efforts, great community and team members.  

I'm not sure what you mean, can you clarify?

Do you mean that you think PoW is still going on?

I can assure that PoW is not currently being accepted into the blockchain at this point.  Although one can try to generate a proof of work, no other nodes would accept it into the blockchain due to this statement in CBlock::AcceptBlock()

Code:
	if (IsProofOfWork() && nHeight > CUTOFF_HEIGHT)
        return DoS(100, error("AcceptBlock() : No proof-of-work allowed anymore (height = %d)", nHeight));

full member
Activity: 193
Merit: 100
+5000 AC & Thanks you very much

You saved $1 million of investor’s money
The dragon with second heart will rise again , far more , for sure



newbie
Activity: 31
Merit: 0
just donated 10,000 AC
8a461586e431f240ebee51b550408c9ace5edbfc7c74a403231a0bf06bfc4bc4

Great jobs and thanks to the team.
Welcome guy, thank you very much for your contribution to this new born community.
newbie
Activity: 45
Merit: 0
MICRYON FOR EMPEROR
sr. member
Activity: 532
Merit: 250
Is the coin PoW difficulty frozen at 274.46071294? What's up with that? It's stayed static over the past 5000 blocks or so, and I see the hash rate hasn't really changed either. According to the latest wallet, networkhashps  went from ~19GH at block 27377 up to ~21GH at block 32106. What's up with that? Are people still trying to mine AC directly? Or are these just miscellaneous bugs? Considering the temporary block explorer is down, I think we still have a problem. Hopefully it doesn't really matter, but given the checkered past of this coin things like this won't help instill confidence!
AsiaCoin is already in POS stage, no more directing mining of AC. The only way to mine AC is to mine on multipools and have your payout in AC.
After PoW stage, it should be difficult to reach 19,21 GH of network hashpowers at block 27377 and 32106. We will be stay at PoW+PoS stage if the data trogdorjw73 provided is correct. Is this possible to reopen the block explorer let more community members to check this issue? We should do more care about this matter since three exchanges allow AC transaction now.  Thanks for all your efforts, great community and team members. 
A hard fork will be required. However, the community and the current team has already decided on retaining the PoS specification with some with ensure that the total number of coins will be similar to the original specifications.
newbie
Activity: 55
Merit: 0
Is the coin PoW difficulty frozen at 274.46071294? What's up with that? It's stayed static over the past 5000 blocks or so, and I see the hash rate hasn't really changed either. According to the latest wallet, networkhashps  went from ~19GH at block 27377 up to ~21GH at block 32106. What's up with that? Are people still trying to mine AC directly? Or are these just miscellaneous bugs? Considering the temporary block explorer is down, I think we still have a problem. Hopefully it doesn't really matter, but given the checkered past of this coin things like this won't help instill confidence!
AsiaCoin is already in POS stage, no more directing mining of AC. The only way to mine AC is to mine on multipools and have your payout in AC.
After PoW stage, it should be difficult to reach 19,21 GH of network hashpowers at block 27377 and 32106. We will be stay at PoW+PoS stage if the data trogdorjw73 provided is correct. Is this possible to reopen the block explorer let more community members to check this issue? We should do more care about this matter since three exchanges allow AC transaction now.  Thanks for all your efforts, great community and team members.  
full member
Activity: 210
Merit: 100
I just want to let everyone know that I've staked successfully in the new wallet. It is working great!

I have to give micryon kudos for his technical expertise that helped save AsiaCoin and Maestro1 to his tireless effort in reviving this coin.

AsiaCoin has resurrected from the dead in 7 days, which is just simply jaw-dropping, amazing and historical for the cryptocurrency world.

This revival will be remembered for years to come.

I just want to add that this is not the finish, this is the beginning. In order to make Asia Coin what all of us wanted it to be, it will take all of us. This includes helping out in marketing, development, donation, testing and many more.

That's why we're creating a foundation, somewhere everyone can join, we will have our own website and a Slack channel for coordination. We need people who are fully committed to the project in order to make Asia Coin what we want it to become. A lot of people, including the experienced members here, mentioned that AC can be 0.001 BTC at some point within 2014, but it will not get there by itself. This revival is the example that the community is all that matters for a coin, and it's always true, not just at the moments of crisis.

Look at other successful examples and see who made them what they are today, and it's always the community. Look at failed examples and see who failed the coins? The community. So whether our revival is forgotten in a couple of weeks or become a shining example in the years to come will depends on ALL OF US, the community.

Now that the technical challenge is over and AC is already listed on many exchanges and will be on major ones very shortly, all of us have a decision to make. We can go as quickly as we can (in a race) to dump our coins onto others to revive a fraction of our initial investments, or we can help make AC what we wanted it to be when we made our investments. There will be people who cut their losses and will dump, and it's fine, it's their right. Nobody can tell people what to do with their own stuff. This is a decision that all of us have to make. After all that we've been through, what's the best thing to do? Get out while you can for a fraction of your initial investment or help us build Asia Coin. You have some time to think about it Smiley
member
Activity: 84
Merit: 10
just donated 10,000 AC
8a461586e431f240ebee51b550408c9ace5edbfc7c74a403231a0bf06bfc4bc4

Great jobs and thanks to the team.
full member
Activity: 210
Merit: 100
The AsiaCoin Team is calling for more articles. If you are a writer, then go ahead and write an article about the resurrection of AsiaCoin! You have all the information you need.

We need more people to push it hard to blogs and websites, mostly in local languages, and mostly in Asian local languages. That's the key audience.
member
Activity: 98
Merit: 10
I just want to let everyone know that I've staked successfully in the new wallet. It is working great!

I have to give micryon kudos for his technical expertise that helped save AsiaCoin and Maestro1 to his tireless effort in reviving this coin.

AsiaCoin has resurrected from the dead in 7 days, which is just simply jaw-dropping, amazing and historical for the cryptocurrency world.

This revival will be remembered for years to come.



Maestro1 has done a tremendous job.
full member
Activity: 126
Merit: 100
The AsiaCoin Team is calling for more articles. If you are a writer, then go ahead and write an article about the resurrection of AsiaCoin! You have all the information you need.
newbie
Activity: 10
Merit: 0
Now looks good, the problem may be my computer.
full member
Activity: 210
Merit: 100
I removed the block to re-update the new wallet. Wallet showed 12 available nodes, but is very slow to update

I have 30+ available nodes here. You didn't need to remove the blockchain, I mentioned it specifically in the instructions that you don't need to redownload the entire blockchain again. But no harm done, just some download Smiley
newbie
Activity: 10
Merit: 0
I removed the block to re-update the new wallet. Wallet showed 12 available nodes, but is very slow to update
full member
Activity: 126
Merit: 100
I just want to let everyone know that I've staked successfully in the new wallet. It is working great!

I have to give micryon kudos for his technical expertise that helped save AsiaCoin and Maestro1 to his tireless effort in reviving this coin.

AsiaCoin has resurrected from the dead in 7 days, which is just simply jaw-dropping, amazing and historical for the cryptocurrency world.

This revival will be remembered for years to come.

full member
Activity: 126
Merit: 100
...still 7 pages behind to catch up on the latest here, while reading a coding concern popped into my head, so this might be for micryon :

Still trying to wrap my head around staking, was Wondering if the new rev v2.0 software considers the 3B+ coins premined by original dev/scammer, would they still stake coin for him?

....from the new blockchain while his old version software wallet was running?

just wondering...

No, they will not stake in the new wallet (we specifically made sure of that). If he tries to do anything with his coins (including transfer/stake) using the old wallet, he will be on his own blockchain, and anyone running the new wallet will reject those blocks/blockchain.

Thank you Maestro1.
full member
Activity: 210
Merit: 100
...still 7 pages behind to catch up on the latest here, while reading a coding concern popped into my head, so this might be for micryon :

Still trying to wrap my head around staking, was Wondering if the new rev v2.0 software considers the 3B+ coins premined by original dev/scammer, would they still stake coin for him?

....from the new blockchain while his old version software wallet was running?

just wondering...

No, they will not stake in the new wallet (we specifically made sure of that). If he tries to do anything with his coins (including transfer/stake) using the old wallet, he will be on his own blockchain, and anyone running the new wallet will reject those blocks/blockchain.
Jump to: