Remove VarStr, for now
authorCryptoManiac <balthazar@yandex.ru>
Fri, 21 Aug 2015 18:45:32 +0000 (21:45 +0300)
committerCryptoManiac <balthazar@yandex.ru>
Fri, 21 Aug 2015 18:45:32 +0000 (21:45 +0300)
Novacoin/CTransaction.cs
Novacoin/VarStr.cs [deleted file]

index 1c58089..8e1f871 100644 (file)
@@ -91,11 +91,12 @@ namespace Novacoin
             {
                 // Fill inputs array
                 vin[nCurrentInput] = new CTxIn();
-
+                
                 vin[nCurrentInput].prevout = new COutPoint(wBytes.GetItems(36));
 
                 int nScriptSigLen = (int)VarInt.ReadVarInt(ref wBytes);
                 vin[nCurrentInput].scriptSig = new CScript(wBytes.GetItems(nScriptSigLen));
+
                 vin[nCurrentInput].nSequence = BitConverter.ToUInt32(wBytes.GetItems(4), 0);
             }
 
diff --git a/Novacoin/VarStr.cs b/Novacoin/VarStr.cs
deleted file mode 100644 (file)
index 885e377..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-\feffusing System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Novacoin
-{
-    public class VarStr
-    {
-
-    }
-}