BitSharper.BlockChain.AddWallet C# (CSharp) Method

AddWallet() public method

Add a wallet to the BlockChain. Note that the wallet will be unaffected by any blocks received while it was not part of this BlockChain. This method is useful if the wallet has just been created, and its keys have never been in use, or if the wallet has been loaded along with the BlockChain
public AddWallet ( Wallet wallet ) : void
wallet Wallet
return void
        public void AddWallet(Wallet wallet)
        {
            lock (this)
            {
                _wallets.Add(wallet);
            }
        }