File tree Expand file tree Collapse file tree
capabilities/blockchain/aptos/v1alpha Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,11 +151,17 @@ message WriteReportRequest {
151151 sdk.v1alpha.ReportResponse report = 3 ; // signed report from consensus
152152}
153153
154+ enum ReceiverContractExecutionStatus {
155+ RECEIVER_CONTRACT_EXECUTION_STATUS_SUCCESS = 0 ;
156+ RECEIVER_CONTRACT_EXECUTION_STATUS_REVERTED = 1 ;
157+ }
158+
154159message WriteReportReply {
155160 TxStatus tx_status = 1 ;
156- optional string tx_hash = 2 ; // transaction hash (hex string with 0x prefix)
157- optional uint64 transaction_fee = 3 ; // gas used in octas
158- optional string error_message = 4 ;
161+ optional ReceiverContractExecutionStatus receiver_contract_execution_status = 2 ;
162+ optional string tx_hash = 3 ; // transaction hash (hex string with 0x prefix)
163+ optional uint64 transaction_fee = 4 ; // gas used in octas
164+ optional string error_message = 5 ;
159165}
160166
161167// ========== Service ==========
You can’t perform that action at this time.
0 commit comments