CentralMine.NET.ClientManager.GetHashesDone C# (CSharp) Method

GetHashesDone() public method

public GetHashesDone ( ) : uint
return uint
        public uint GetHashesDone()
        {
            uint hashesDone = mBlock.mHashMan.mHashesDone;
            foreach (WorkBlock b in mPrevBlocks)
            {
                if (b != null)
                    hashesDone += b.mHashMan.mHashesDone;
            }
            return hashesDone;
        }