BitSharper.BlockChain.BlockChain C# (CSharp) Method

BlockChain() public method

Constructs a BlockChain that has no wallet at all. This is helpful when you don't actually care about sending and receiving coins but rather, just want to explore the network data structures.
public BlockChain ( NetworkParameters @params, IBlockStore blockStore ) : System
@params NetworkParameters
blockStore IBlockStore
return System
        public BlockChain(NetworkParameters @params, IBlockStore blockStore)
            : this(@params, new List<Wallet>(), blockStore)
        {
        }

Same methods

BlockChain::BlockChain ( NetworkParameters @params, IEnumerable wallets, IBlockStore blockStore ) : System
BlockChain::BlockChain ( NetworkParameters @params, Wallet wallet, IBlockStore blockStore ) : System