Module io.hotmoka.network
Package io.hotmoka.network.responses
Class JarStoreTransactionResponseModel
- java.lang.Object
-
- io.hotmoka.network.responses.TransactionResponseModel
-
- io.hotmoka.network.responses.JarStoreTransactionResponseModel
-
- Direct Known Subclasses:
JarStoreTransactionFailedResponseModel,JarStoreTransactionSuccessfulResponseModel
public abstract class JarStoreTransactionResponseModel 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 protectedJarStoreTransactionResponseModel()protectedJarStoreTransactionResponseModel(JarStoreNonInitialTransactionResponse 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
-
JarStoreTransactionResponseModel
protected JarStoreTransactionResponseModel(JarStoreNonInitialTransactionResponse response)
-
JarStoreTransactionResponseModel
protected JarStoreTransactionResponseModel()
-
-