Show / Hide Table of Contents

Policy.GetExecFeeFactor Method

Gets NeoVM execution fee.

Namespace: Neo.SmartContract.Framework.Native

Assembly: Neo.SmartContract.Framework

Syntax

public static extern uint GetExecFeeFactor();

Return:

  • vm execution fee

Example

public static void Test()
{
    var factor = Policy.GetExecFeeFactor();
}

Back