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

SetTxFee() public method

public SetTxFee ( decimal amount ) : string
amount decimal
return string
        public string SetTxFee(decimal amount)
        {
            return _rpcConnector.MakeRequest<string>(RpcMethods.settxfee, amount);
        }