Module io.hotmoka.network
Package io.hotmoka.network.responses
Class CodeExecutionTransactionResponseModel
- java.lang.Object
-
- io.hotmoka.network.responses.TransactionResponseModel
-
- io.hotmoka.network.responses.CodeExecutionTransactionResponseModel
-
- Direct Known Subclasses:
ConstructorCallTransactionResponseModel,MethodCallTransactionResponseModel
public abstract class CodeExecutionTransactionResponseModel extends TransactionResponseModel
-
-
Field Summary
Fields Modifier and Type Field Description StringgasConsumedForCPUThe amount of gas consumed by the transaction for CPU execution.StringgasConsumedForRAMThe amount of gas consumed by the transaction for RAM allocation.StringgasConsumedForStorageThe amount of gas consumed by the transaction for storage consumption.List<UpdateModel>updatesThe updates resulting from the execution of the transaction.
-
Constructor Summary
Constructors Modifier Constructor Description protectedCodeExecutionTransactionResponseModel()protectedCodeExecutionTransactionResponseModel(CodeExecutionTransactionResponse response)
-
-
-
Field Detail
-
updates
public List<UpdateModel> updates
The updates resulting from the execution of the transaction.
-
gasConsumedForCPU
public String gasConsumedForCPU
The amount of gas consumed by the transaction for CPU execution.
-
gasConsumedForRAM
public String gasConsumedForRAM
The amount of gas consumed by the transaction for RAM allocation.
-
gasConsumedForStorage
public String gasConsumedForStorage
The amount of gas consumed by the transaction for storage consumption.
-
-
Constructor Detail
-
CodeExecutionTransactionResponseModel
protected CodeExecutionTransactionResponseModel(CodeExecutionTransactionResponse response)
-
CodeExecutionTransactionResponseModel
protected CodeExecutionTransactionResponseModel()
-
-