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