Comments
authorCryptoManiac <balthazar@yandex.ru>
Fri, 21 Aug 2015 01:59:25 +0000 (04:59 +0300)
committerCryptoManiac <balthazar@yandex.ru>
Fri, 21 Aug 2015 01:59:25 +0000 (04:59 +0300)
Novacoin/CTransaction.cs

index b92fad1..88ea4a2 100644 (file)
@@ -39,10 +39,10 @@ namespace Novacoin
         /// </summary>
         public CTransaction()
         {
-            vin = new CTxIn[1];
+            vin = new CTxIn[1]; /// Any transaction must provide at least one input ...
             vin[0] = new CTxIn();
 
-            vout = new CTxOut[1];
+            vout = new CTxOut[1]; // ... and output.
             vout[0] = new CTxOut();
         }