ConnectInputs + stubs for GetCoinAge, GetMinFee and GetProofOfStakeReward.
[NovacoinLibrary.git] / Novacoin / CBlock.cs
index e8f2207..bf487cf 100644 (file)
@@ -516,6 +516,11 @@ namespace Novacoin
 
             return Math.Min(nSubsidy, NetInfo.nMaxMintProofOfWork) + nFees;
         }
+
+        internal static ulong GetProofOfStakeReward(ulong nCoinAge, uint nBits, uint nTime)
+        {
+            throw new NotImplementedException();
+        }
     }
 }