Class SimulationEvalOverrides
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.SimulationEvalOverrides
-
public class SimulationEvalOverrides extends PathResponse
The set of parameters and limits override during simulation. If this set of parameters is present, then evaluation parameters may differ from standard evaluation in certain ways.
-
-
Field Summary
Fields Modifier and Type Field Description Boolean
allowEmptySignatures
If true, transactions without signatures are allowed and simulated as if they were properly signed.Boolean
allowUnnamedResources
If true, allows access to unnamed resources during simulation.Long
extraOpcodeBudget
The extra opcode budget added to each transaction group during simulationLong
maxLogCalls
The maximum log calls one can make during simulationLong
maxLogSize
The maximum byte number to log during simulation
-
Constructor Summary
Constructors Constructor Description SimulationEvalOverrides()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
allowEmptySignatures
public Boolean allowEmptySignatures
If true, transactions without signatures are allowed and simulated as if they were properly signed.
-
allowUnnamedResources
public Boolean allowUnnamedResources
If true, allows access to unnamed resources during simulation.
-
extraOpcodeBudget
public Long extraOpcodeBudget
The extra opcode budget added to each transaction group during simulation
-
maxLogCalls
public Long maxLogCalls
The maximum log calls one can make during simulation
-
maxLogSize
public Long maxLogSize
The maximum byte number to log during simulation
-
-