Remove legacy stake reward calculation code.
[NovacoinLibrary.git] / Novacoin / NetInfo.cs
index 6db6c22..97d83e8 100644 (file)
         public const uint nStakeValidationSwitchTime = 1408492800;
 
         /// <summary>
-        /// Thu, 20 Jun 2013 00:00:00 GMT
-        /// </summary>
-        public const uint nDynamicStakeRewardTime = 1371686400;
-
-        /// <summary>
-        /// Sun, 20 Oct 2013 00:00:00 GMT
-        /// </summary>
-        public const uint nStakeCurveSwitchTime = 1382227200;
-
-        /// <summary>
         /// Hash of block #0
         /// </summary>
         public static uint256 nHashGenesisBlock = new uint256("00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4");
         /// <summary>
         /// Maximum possible proof-of-work reward.
         /// </summary>
-        public const ulong nMaxMintProofOfWork = CTransaction.nCoin * 100;
+        public const long nMaxMintProofOfWork = CTransaction.nCoin * 100;
 
         /// <summary>
         /// Maximum possible proof-of-stake reward per coin*year.
         /// </summary>
-        public const ulong nMaxMintProofOfStake = CTransaction.nCoin * 100;
+        public const long nMaxMintProofOfStake = CTransaction.nCoin * 100;
 
         public static uint GetAdjustedTime()
         {