BitcoinLib.Services.CoinService.VerifyChain C# (CSharp) Method

VerifyChain() public method

public VerifyChain ( ushort checkLevel, uint numBlocks ) : bool
checkLevel ushort
numBlocks uint
return bool
        public bool VerifyChain(ushort checkLevel, uint numBlocks)
        {
            return _rpcConnector.MakeRequest<bool>(RpcMethods.verifychain, checkLevel, numBlocks);
        }