Bitcoin Forum
September 20, 2025, 07:36:34 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: HoboNickels - HBN - High Fast Stake - Version 1.5 - Must Upgrade by Jan 17 2015 on: December 10, 2014, 05:44:22 AM
Sent out an alert for version below 1.5.

Yesterday I already updated wallet.
Preparing for suffering ...))
But everything went smoothly.
good job Tranz

Wish I could say the same... Been poking at the upgrade for close to a week now.  I couldn't get any responses from any peers.  The wallet is installed on a Windows 8 computer along with a Hyper wallet and an AsiaCoin Wallet.  Hyper and AsiaCoin are working fine.  My router is set up for uPnP and had shown a port forward for TCP Port 7372, but for some reason it disappeared.  I manually added it back, but still no success.  I also upgraded the version of DD-WRT on my router around the same time I upgraded the HoboNickels Wallet.  I just figured out that DD-WRT has decided that HoboNickels on Port 7372 constitutes a P2P protocol and my rule blocking all P2P was blocking HoboNickels.  I'm finally getting The wallet caught up, but I'm puzzled by what it took.
2  Alternate cryptocurrencies / Altcoin Discussion / Re: Proof of Stake Coin List on: April 27, 2014, 09:42:19 AM
Another Proof-Of-Stake Coin -- AsiaCoin -- http://theasiacoin.com/

Claims first year 100%

From source code at https://github.com/AsiaCoin/AsiaCoin/blob/master/src/util.h
Code:
static const int64 COIN = 1000000;

From source code at https://github.com/AsiaCoin/AsiaCoin/blob/master/src/main.h
Code:
static const int64 MAX_MONEY = 360000000 * COIN;	// 36 mil
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.10 * COIN; // 10% annual interest

From source code at https://github.com/AsiaCoin/AsiaCoin/blob/master/src/main.cpp
Code:
unsigned int nStakeMinAge = 60 * 60 * 24 * 14;	// minimum age for coin age: 14d
unsigned int nStakeMaxAge = 60 * 60 * 24 * 365 * 10; // stake age of full weight: 10y
unsigned int nStakeTargetSpacing = 60; // 60 sec block spacing
Code:
const int YEARLY_BLOCKCOUNT = 525600;	// 365 * 1440
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < YEARLY_BLOCKCOUNT)
{
nRewardCoinYear = 7.15 * MAX_MINT_PROOF_OF_STAKE; //due to the compounded interest
}
else
{
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE / 5;
}

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);

    return nSubsidy;
}
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!