X-Git-Url: https://git.novaco.in/?p=NovacoinLibrary.git;a=blobdiff_plain;f=Novacoin%2FNetInfo.cs;h=345d7aece831da18dad0289404b8f94f3e3cb454;hp=4e0d5191861df6abf57fc7ffe798f9bd5cd1c75c;hb=183708642533185adadd50c36470927d8dd4b914;hpb=86473a10fbebca1b501bd140a5589f08a39311da diff --git a/Novacoin/NetInfo.cs b/Novacoin/NetInfo.cs index 4e0d519..345d7ae 100644 --- a/Novacoin/NetInfo.cs +++ b/Novacoin/NetInfo.cs @@ -8,6 +8,11 @@ namespace Novacoin internal class NetInfo { /// + /// Minimal depth for spending coinbase and coinstake transactions. + /// + public const int nGeneratedMaturity = 500; + + /// /// "standard" scrypt target limit for proof of work, results with 0,000244140625 proof-of-work difficulty /// public static uint256 nProofOfWorkLimit = ~(new uint256(0)) >> 20; @@ -35,19 +40,24 @@ namespace Novacoin /// /// Fri, 20 Sep 2013 00:00:00 GMT /// - public static uint nChainChecksSwitchTime = 1379635200; + public const uint nChainChecksSwitchTime = 1379635200; + + /// + /// Wed, 20 Aug 2014 00:00:00 GMT + /// + public const uint nStakeValidationSwitchTime = 1408492800; /// /// Hash of block #0 /// public static uint256 nHashGenesisBlock = new uint256("00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4"); - public static readonly uint nLockTimeThreshold = 500000000; + public const uint nLockTimeThreshold = 500000000; /// /// Allowed clock drift. /// - private static readonly uint nDrift = 7200; + private const uint nDrift = 7200; /// /// Maximum possible proof-of-work reward.