Package org.aion.avm.embed
Class AvmRule.ResultWrapper
- java.lang.Object
-
- org.aion.avm.embed.AvmRule.ResultWrapper
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Address
getDappAddress()
java.lang.Object
getDecodedReturnData()
java.util.List<org.aion.types.Log>
getLogs()
org.aion.types.TransactionStatus
getReceiptStatus()
org.aion.types.TransactionResult
getTransactionResult()
-
-
-
Method Detail
-
getTransactionResult
public org.aion.types.TransactionResult getTransactionResult()
- Returns:
- Result of the transaction execution
-
getDappAddress
public Address getDappAddress()
- Returns:
- Address of the Dapp deployed in this transaction, Null if the deploy transaction failed
-
getDecodedReturnData
public java.lang.Object getDecodedReturnData()
- Returns:
- Decoded returned data of the call
-
getReceiptStatus
public org.aion.types.TransactionStatus getReceiptStatus()
- Returns:
- Transaction execution result code, which can be SUCCESS, REJECTED, FAILED, REVERT, or FATAL.
-
getLogs
public java.util.List<org.aion.types.Log> getLogs()
- Returns:
- List of execution log objects
-
-