Ejemplo n.º 1
0
 public Transaction(Coin coin, String receiverPk)
 {
     this.coin = coin;
     this.previous = null;
     this.previousTransSignedByMe = null;
     this.receiverPk = receiverPk;
 }
Ejemplo n.º 2
0
        public Transaction Payto(SignedMessage sgndTrans, String receiverPk)
        {
            var trans = new Transaction();
            trans.previous = this;
            trans.previousTransSignedByMe = sgndTrans;
            trans.receiverPk = receiverPk;

            return trans;
        }
Ejemplo n.º 3
0
 public Coin(Signature mySignature)
 {
     coinId = Counter.Coin;
     sgndCoin = mySignature.SignMessage(this);
 }