Example #1
0
 public AccountOptions()
 {
     MemoKey       = new PublicKeyType();
     VotingAccount = new AccountIdType();
     Votes         = new object[0];
     Extensions    = new object[0];
 }
Example #2
0
 public Authority(PublicKeyType key)
     : this()
 {
     KeyAuths.Add(new KeyValuePair <PublicKeyType, ushort>(key, 1));
 }