public Result SetTxFee(double fee) { var feeLong = Convert.ToInt64(fee * Math.Pow(10, 8)); ApiResponse response = TransactionApi.SetTxFee(feeLong).Result; return(base.GetResult(response)); }
public async Task TestSetTxFee() { ApiResponse response = await TransactionApi.SetTxFee(100000); Assert.IsFalse(response.HasError); }