ActualFeeGet()

Retrieve Actual Fee with given size

Before calling the function make sure you have the Connector object initialized.

pageUnderstanding Connector Object

Function Call

Field

Type

Description

TransactionSize

int

Input the size of the transaction to retrieve Actual Fee

ActualFeeGet(1);

Return value of function: ActualFeeGetResult

Example

Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.ActualFeeGetResult ActualFee = connect_.ActualFeeGet(1);
Console.WriteLine(ActualFee);

Return value of function: ActualFeeGetResult

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