X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=Novacoin%2FCTransaction.cs;h=b0d4f08799612d6f8722764277e0300a1688fd23;hb=183708642533185adadd50c36470927d8dd4b914;hp=b525dfc9a0b4947e6c1527102062ee73ddbb09c6;hpb=4370732bca42bcd668c0cb3997b9268f88ca863e;p=NovacoinLibrary.git diff --git a/Novacoin/CTransaction.cs b/Novacoin/CTransaction.cs index b525dfc..b0d4f08 100644 --- a/Novacoin/CTransaction.cs +++ b/Novacoin/CTransaction.cs @@ -67,6 +67,13 @@ namespace Novacoin /// public const uint nMaxTxSize = 250000; + public enum MinFeeMode + { + GMF_BLOCK, + GMF_RELAY, + GMF_SEND, + } + /// /// Version of transaction schema. /// @@ -545,5 +552,14 @@ namespace Novacoin return new CTxOut(outItem.nValue, outItem.scriptPubKey); } + internal bool GetCoinAge(ref Dictionary inputs, out ulong nCoinAge) + { + throw new NotImplementedException(); + } + + internal static ulong GetMinFee(int v1, bool v2, MinFeeMode gMF_BLOCK, int nTxSize) + { + throw new NotImplementedException(); + } } }