BitMaker.Miner.Pool.Pool C# (CSharp) Method

Pool() private method

Initializes a new instance.
private Pool ( Uri url ) : System
url System.Uri
return System
        internal Pool(Uri url)
        {
            this.url = url;

            CurrentBlockNumber = 0;

            // periodically check latest block number
            refreshThread = new Thread(RefreshThreadMain);
            refreshThread.Start();
        }