Remove old ToString code
authorCryptoManiac <balthazar.ad@gmail.com>
Fri, 21 Aug 2015 14:01:34 +0000 (17:01 +0300)
committerCryptoManiac <balthazar.ad@gmail.com>
Fri, 21 Aug 2015 14:01:34 +0000 (17:01 +0300)
Novacoin/CTxIn.cs

index 671a0a1..bc80f0f 100644 (file)
@@ -100,18 +100,6 @@ namespace Novacoin
                {
                        StringBuilder sb = new StringBuilder ();
 
-            /*
-            if (IsCoinBase)
-            {
-                sb.AppendFormat("CTxIn(txId={0}, coinbase={2}, nSequence={3})", txID.ToString(), n, Interop.ToHex(scriptSig.Bytes), nSequence);
-            }
-            else
-            {
-                sb.AppendFormat("CTxIn(txId={0}, n={1}, scriptSig={2}, nSequence={3})", txID.ToString(), n, scriptSig.ToString(), nSequence);
-            }
-            */
-
-
             sb.AppendFormat("CTxIn(");
             sb.Append(prevout.ToString());