Example #1
0
 public Transfer(TransferHash previous, byte[] destinyPk)
 {
     this.coin = null;
     this.destinyPk = destinyPk;
     this.previous = previous;
 }
Example #2
0
 public Transfer(Coin coin, byte[] destinyPk)
 {
     this.coin = coin;
     this.destinyPk = destinyPk;
     this.previous = null;
 }
Example #3
0
 public Transfer PayTo(Transfer trans, byte[] destinyPk)
 {
     var prevHash = new TransferHash(trans, mySig);
     return new Transfer(prevHash, destinyPk);
 }
Example #4
0
        public Transfer PayTo(Transfer trans, byte[] destinyPk)
        {
            var prevHash = new TransferHash(trans, mySig);

            return(new Transfer(prevHash, destinyPk));
        }
Example #5
0
 public Transfer(TransferHash previous, byte[] destinyPk)
 {
     this.coin      = null;
     this.destinyPk = destinyPk;
     this.previous  = previous;
 }
Example #6
0
 public Transfer(Coin coin, byte[] destinyPk)
 {
     this.coin      = coin;
     this.destinyPk = destinyPk;
     this.previous  = null;
 }