From 5219f34138c6f10f3caf699b1c069b3921492ba4 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Thu, 6 Aug 2015 12:38:36 +0300 Subject: [PATCH] Update comments. --- Novacoin/CBlock.cs | 3 +++ Novacoin/CTransaction.cs | 3 +++ Novacoin/CTxOut.cs | 3 +++ 3 files changed, 9 insertions(+), 0 deletions(-) diff --git a/Novacoin/CBlock.cs b/Novacoin/CBlock.cs index ca217fe..a794846 100644 --- a/Novacoin/CBlock.cs +++ b/Novacoin/CBlock.cs @@ -2,6 +2,9 @@ namespace Novacoin { + /// + /// Represents the block. Block consists of header, transaction array and header signature. + /// public class CBlock { /// diff --git a/Novacoin/CTransaction.cs b/Novacoin/CTransaction.cs index e068a0d..29de940 100644 --- a/Novacoin/CTransaction.cs +++ b/Novacoin/CTransaction.cs @@ -2,6 +2,9 @@ namespace Novacoin { + /// + /// Represents the transaction. Any transaction must provide one input and one output at least. + /// public class CTransaction { /// diff --git a/Novacoin/CTxOut.cs b/Novacoin/CTxOut.cs index b072985..2dc5344 100644 --- a/Novacoin/CTxOut.cs +++ b/Novacoin/CTxOut.cs @@ -2,6 +2,9 @@ namespace Novacoin { + /// + /// Transaction output. + /// public class CTxOut { /// -- 1.7.1