GetSigOpCount, SetDestination, SetMultiSig + new stubs
[NovacoinLibrary.git] / Novacoin / CKey.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 CKey
10     {
11         public CPubKey GetPubKey()
12         {
13             // stub
14
15             return new CPubKey();
16         }
17     }
18 }