ActualFeeGet()
Retrieve Actual Fee with given size
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectFunction Call
Field
Type
Description
TransactionSize
int
Input the size of the transaction to retrieve Actual Fee
ActualFeeGet(1);
Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.ActualFeeGetResult ActualFee = connect_.ActualFeeGet(1);
Console.WriteLine(ActualFee);
Output of Example
Output is printed via ObjectDumper
Keep in mind the outcome commission needs to be normalized to normal values
{ActualFeeGetResult}
Fee: {AmountCommission}
Commission: 17279
Last updated
Was this helpful?