Class DryrunTxnResult
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.DryrunTxnResult
-
public class DryrunTxnResult extends PathResponse
DryrunTxnResult contains any LogicSig or ApplicationCall program debug information and state updates from a dryrun.
-
-
Field Summary
Fields Modifier and Type Field Description List<String>
appCallMessages
List<DryrunState>
appCallTrace
Long
budgetAdded
Budget added during execution of app call transaction.Long
budgetConsumed
Budget consumed during execution of app call transaction.List<String>
disassembly
Disassembled program line by line.List<EvalDeltaKeyValue>
globalDelta
Application state delta.List<AccountStateDelta>
localDeltas
List<String>
logicSigDisassembly
Disassembled lsig program line by line.List<String>
logicSigMessages
List<DryrunState>
logicSigTrace
List<byte[]>
logs
-
Constructor Summary
Constructors Constructor Description DryrunTxnResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<String>
logs()
void
logs(List<String> base64Encoded)
-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
appCallTrace
public List<DryrunState> appCallTrace
-
budgetAdded
public Long budgetAdded
Budget added during execution of app call transaction.
-
budgetConsumed
public Long budgetConsumed
Budget consumed during execution of app call transaction.
-
globalDelta
public List<EvalDeltaKeyValue> globalDelta
Application state delta.
-
localDeltas
public List<AccountStateDelta> localDeltas
-
logicSigTrace
public List<DryrunState> logicSigTrace
-
logs
public List<byte[]> logs
-
-