GetSigOpCount, SetDestination, SetMultiSig + new stubs
[NovacoinLibrary.git] / Novacoin / CPubKey.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 CPubKey
10     {
11         private List<byte> pubKeyBytes;
12
13         public IList<byte> Raw
14         {
15             get { return pubKeyBytes; }
16         }
17     }
18 }