示例#1
0
文件: Transfer.cs 项目: vinils/GCT2
 public Transfer(TransferHash previous, byte[] destinyPk)
 {
     this.coin = null;
     this.destinyPk = destinyPk;
     this.previous = previous;
 }
示例#2
0
文件: Transfer.cs 项目: vinils/GCT2
 public Transfer(Coin coin, byte[] destinyPk)
 {
     this.coin = coin;
     this.destinyPk = destinyPk;
     this.previous = null;
 }
示例#3
0
文件: Transfer.cs 项目: vinils/GCT2
 public Transfer PayTo(Transfer trans, byte[] destinyPk)
 {
     var prevHash = new TransferHash(trans, mySig);
     return new Transfer(prevHash, destinyPk);
 }
示例#4
0
文件: Transfer.cs 项目: vinils/GCT2
        public Transfer PayTo(Transfer trans, byte[] destinyPk)
        {
            var prevHash = new TransferHash(trans, mySig);

            return(new Transfer(prevHash, destinyPk));
        }
示例#5
0
文件: Transfer.cs 项目: vinils/GCT2
 public Transfer(TransferHash previous, byte[] destinyPk)
 {
     this.coin      = null;
     this.destinyPk = destinyPk;
     this.previous  = previous;
 }
示例#6
0
文件: Transfer.cs 项目: vinils/GCT2
 public Transfer(Coin coin, byte[] destinyPk)
 {
     this.coin      = coin;
     this.destinyPk = destinyPk;
     this.previous  = null;
 }