示例#1
0
        public Wallet()
        {
            this.Balance = Constants.STARTING_BALANCE;

            this.KeyPair   = EllipticCurve.GenerateKeys();
            this.PublicKey = this.KeyPair.PublicKey();
        }