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

EstimateFee() public method

public EstimateFee ( ushort nBlocks ) : decimal
nBlocks ushort
return decimal
        public decimal EstimateFee(ushort nBlocks)
        {
            return _rpcConnector.MakeRequest<decimal>(RpcMethods.estimatefee, nBlocks);
        }