示例#1
0
 /// <summary>
 /// Constructor. Reconstructs an extended key from the Base58 representations of
 /// the public key and corresponding private key.
 /// </summary>
 public ExtKey(BitcoinExtPubKey extPubKey, BitcoinSecret key)
     : this(extPubKey.ExtPubKey, key.PrivateKey)
 {
 }
示例#2
0
		public ExtKey(BitcoinExtPubKey extPubKey, BitcoinSecret key)
			: this(extPubKey.ExtPubKey, key.PrivateKey)
		{
		}
 public BitcoinExtKey(BitcoinExtPubKey bitcoinExtPubKey, Key key)
     : base(new ExtKey(bitcoinExtPubKey.ExtPubKey, key), bitcoinExtPubKey.Network)
 {
 }