Skip to content

Commit

Permalink
chore: refactor invoke as wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
ArniStarkware committed Jul 31, 2024
1 parent a491474 commit decc9f8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
2 changes: 1 addition & 1 deletion crates/blockifier/src/transaction/account_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl HasRelatedFeeType for AccountTransaction {
match self {
Self::Declare(tx) => tx.tx.version(),
Self::DeployAccount(tx) => tx.tx.tx.version(),
Self::Invoke(tx) => match tx.tx {
Self::Invoke(tx) => match tx.tx.tx {
starknet_api::transaction::InvokeTransaction::V0(_) => TransactionVersion::ZERO,
starknet_api::transaction::InvokeTransaction::V1(_) => TransactionVersion::ONE,
starknet_api::transaction::InvokeTransaction::V3(_) => TransactionVersion::THREE,
Expand Down
29 changes: 17 additions & 12 deletions crates/blockifier/src/transaction/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,7 @@ impl TransactionInfoCreator for DeployAccountTransaction {

#[derive(Debug, Clone)]
pub struct InvokeTransaction {
pub tx: starknet_api::transaction::InvokeTransaction,
pub tx_hash: TransactionHash,
pub tx: starknet_api::executable_transaction::InvokeTransaction,
// Indicates the presence of the only_query bit in the version.
pub only_query: bool,
}
Expand All @@ -414,17 +413,23 @@ impl InvokeTransaction {
invoke_tx: starknet_api::transaction::InvokeTransaction,
tx_hash: TransactionHash,
) -> Self {
Self { tx: invoke_tx, tx_hash, only_query: false }
Self {
tx: starknet_api::executable_transaction::InvokeTransaction { tx: invoke_tx, tx_hash },
only_query: false,
}
}

pub fn new_for_query(
invoke_tx: starknet_api::transaction::InvokeTransaction,
tx_hash: TransactionHash,
) -> Self {
Self { tx: invoke_tx, tx_hash, only_query: true }
Self {
tx: starknet_api::executable_transaction::InvokeTransaction { tx: invoke_tx, tx_hash },
only_query: true,
}
}

implement_inner_tx_getter_calls!(
implement_wrapped_inner_tx_getter_calls!(
(calldata, Calldata),
(signature, TransactionSignature),
(sender_address, ContractAddress)
Expand All @@ -439,7 +444,7 @@ impl<S: State> Executable<S> for InvokeTransaction {
context: &mut EntryPointExecutionContext,
remaining_gas: &mut u64,
) -> TransactionExecutionResult<Option<CallInfo>> {
let entry_point_selector = match &self.tx {
let entry_point_selector = match &self.tx.tx {
starknet_api::transaction::InvokeTransaction::V0(tx) => tx.entry_point_selector,
starknet_api::transaction::InvokeTransaction::V1(_)
| starknet_api::transaction::InvokeTransaction::V3(_) => {
Expand Down Expand Up @@ -477,15 +482,15 @@ impl<S: State> Executable<S> for InvokeTransaction {
impl TransactionInfoCreator for InvokeTransaction {
fn create_tx_info(&self) -> TransactionInfo {
let common_fields = CommonAccountFields {
transaction_hash: self.tx_hash,
version: self.tx.version(),
signature: self.tx.signature(),
nonce: self.tx.nonce(),
sender_address: self.tx.sender_address(),
transaction_hash: self.tx.tx_hash,
version: self.tx.tx.version(),
signature: self.tx.tx.signature(),
nonce: self.tx.tx.nonce(),
sender_address: self.tx.tx.sender_address(),
only_query: self.only_query,
};

match &self.tx {
match &self.tx.tx {
starknet_api::transaction::InvokeTransaction::V0(tx) => {
TransactionInfo::Deprecated(DeprecatedTransactionInfo {
common_fields,
Expand Down
2 changes: 1 addition & 1 deletion crates/gateway/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,6 @@ pub fn get_tx_hash(tx: &AccountTransaction) -> TransactionHash {
match tx {
AccountTransaction::Declare(tx) => tx.tx_hash,
AccountTransaction::DeployAccount(tx) => tx.tx.tx_hash,
AccountTransaction::Invoke(tx) => tx.tx_hash,
AccountTransaction::Invoke(tx) => tx.tx.tx_hash,
}
}

0 comments on commit decc9f8

Please sign in to comment.