Update comments.
authorCryptoManiac <balthazar@yandex.ru>
Thu, 6 Aug 2015 09:38:36 +0000 (12:38 +0300)
committerCryptoManiac <balthazar@yandex.ru>
Thu, 6 Aug 2015 09:38:36 +0000 (12:38 +0300)
Novacoin/CBlock.cs
Novacoin/CTransaction.cs
Novacoin/CTxOut.cs

index ca217fe..a794846 100644 (file)
@@ -2,6 +2,9 @@
 
 namespace Novacoin
 {
+       /// <summary>
+       /// Represents the block. Block consists of header, transaction array and header signature.
+       /// </summary>
        public class CBlock
        {
                /// <summary>
index e068a0d..29de940 100644 (file)
@@ -2,6 +2,9 @@
 
 namespace Novacoin
 {
+       /// <summary>
+       /// Represents the transaction. Any transaction must provide one input and one output at least.
+       /// </summary>
        public class CTransaction
        {
                /// <summary>
index b072985..2dc5344 100644 (file)
@@ -2,6 +2,9 @@
 
 namespace Novacoin
 {
+       /// <summary>
+       /// Transaction output.
+       /// </summary>
        public class CTxOut
        {
                /// <summary>