From fa88495a024f11fc5f89d98bed3f54761328e931 Mon Sep 17 00:00:00 2001 From: rianhughes Date: Mon, 21 Aug 2023 13:13:04 +0300 Subject: [PATCH] rpcv04 Update pending --- rpc/types_transaction_receipt.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rpc/types_transaction_receipt.go b/rpc/types_transaction_receipt.go index b226f359..fd9fca60 100644 --- a/rpc/types_transaction_receipt.go +++ b/rpc/types_transaction_receipt.go @@ -117,9 +117,12 @@ type PendingCommonTransactionReceiptProperties struct { // TransactionHash The hash identifying the transaction TransactionHash *felt.Felt `json:"transaction_hash"` // ActualFee The fee that was charged by the sequencer - ActualFee *felt.Felt `json:"actual_fee"` - Type TransactionType `json:"type,omitempty"` - MessagesSent []MsgToL1 `json:"messages_sent"` + ActualFee *felt.Felt `json:"actual_fee"` + Type TransactionType `json:"type,omitempty"` + MessagesSent []MsgToL1 `json:"messages_sent"` + ExecutionStatus TxnExecutionStatus `json:"execution_status"` + FinalityStatus TxnFinalityStatus `json:"finality_status"` + RevertReason string `json:"revert_reason"` // Events The events emitted as part of this transaction Events []Event `json:"events"` }