Update comments.
[NovacoinLibrary.git] / Novacoin / CTxOut.cs
1 \feffusing System;
2
3 namespace Novacoin
4 {
5         /// <summary>
6         /// Transaction output.
7         /// </summary>
8         public class CTxOut
9         {
10                 /// <summary>
11                 /// Input value.
12                 /// </summary>
13                 public ulong nValue;
14
15                 /// <summary>
16                 /// Second half of script which contains spending instructions.
17                 /// </summary>
18                 public byte[] scriptPubKey;
19
20                 public CTxOut ()
21                 {
22                 }
23         }
24 }
25