VarInt class, TxIn/TXOut/Tx serializarion, some CKey and CPubKey methods
[NovacoinLibrary.git] / Novacoin / CKeyID.cs
1 \feffusing System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace Novacoin
8 {
9     public class CKeyID : Hash160
10     {
11         public CKeyID(Hash160 pubKeyHash)
12         {
13             _hashBytes = pubKeyHash.hashBytes;
14         }
15     }
16 }