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

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