Use signed 64 bit integers for better compatibility.
[NovacoinLibrary.git] / Novacoin / DatabaseObjects.cs
index d9668f5..df58f35 100644 (file)
@@ -768,7 +768,7 @@ namespace Novacoin
         /// Getter for output value.
         /// </summary>
         [Ignore]
-        public ulong nValue
+        public long nValue
         {
             get { return VarInt.DecodeVarInt(OutputValue); }
             set { OutputValue = VarInt.EncodeVarInt(value); }