From 03ea7218c0610f96e1c3371e11e18643b68af152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Gonz=C3=A1lez=20Calder=C3=B3n?= Date: Thu, 11 Jul 2024 13:46:40 -0300 Subject: [PATCH] Remove unused function --- .../src/blockifier_state_reader.rs | 83 ------------------- 1 file changed, 83 deletions(-) diff --git a/rpc-state-reader/src/blockifier_state_reader.rs b/rpc-state-reader/src/blockifier_state_reader.rs index c88b4b5..519984e 100644 --- a/rpc-state-reader/src/blockifier_state_reader.rs +++ b/rpc-state-reader/src/blockifier_state_reader.rs @@ -279,89 +279,6 @@ fn calculate_class_info_for_testing(contract_class: ContractClass) -> ClassInfo ClassInfo::new(&contract_class, sierra_program_length, 100).unwrap() } -pub fn execute_tx_configurable_with_state( - tx_hash: &TransactionHash, - tx: SNTransaction, - block_info: BlockInfo, - _skip_validate: bool, - _skip_nonce_check: bool, - state: &mut CachedState, -) -> TransactionExecutionResult { - // let _fee_token_address = FeeTokenAddresses { - // strk_fee_token_address: ContractAddress::default(), - // eth_fee_token_address: ContractAddress(starknet_api::patricia_key!( - // "0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7" - // )), - // }; - - // Get values for block context before giving ownership of the reader - let chain_id = state.state.0.get_chain_name(); - - let chain_info = ChainInfo { - chain_id, - fee_token_addresses: FeeTokenAddresses::default(), - }; - - let block_context = BlockContext::new_unchecked( - &block_info, - &chain_info, - &VersionedConstants::latest_constants_with_overrides(u32::MAX, usize::MAX), - ); - - // Get transaction before giving ownership of the reader - let blockifier_tx: AccountTransaction = match tx { - SNTransaction::Invoke(tx) => { - let invoke = InvokeTransaction { - tx, - tx_hash: *tx_hash, - only_query: false, - }; - AccountTransaction::Invoke(invoke) - } - SNTransaction::DeployAccount(tx) => { - let contract_address = calculate_contract_address( - tx.contract_address_salt(), - tx.class_hash(), - &tx.constructor_calldata(), - ContractAddress::default(), - ) - .unwrap(); - AccountTransaction::DeployAccount(DeployAccountTransaction { - only_query: false, - tx, - tx_hash: *tx_hash, - contract_address, - }) - } - SNTransaction::Declare(tx) => { - let contract_class = state - .state - .get_compiled_contract_class(tx.class_hash()) - .unwrap(); - - let class_info = calculate_class_info_for_testing(contract_class); - - let declare = DeclareTransaction::new(tx, *tx_hash, class_info).unwrap(); - AccountTransaction::Declare(declare) - } - SNTransaction::L1Handler(tx) => { - // As L1Hanlder is not an account transaction we execute it here and return the result - let blockifier_tx = L1HandlerTransaction { - tx, - tx_hash: *tx_hash, - paid_fee_on_l1: starknet_api::transaction::Fee(u128::MAX), - }; - return blockifier_tx.execute(state, &block_context, true, true); - } - _ => unimplemented!(), - }; - - #[cfg(not(feature = "cairo-native"))] - let blockifier_execution = blockifier_tx.execute(state, &block_context, false, true); - - blockifier_execution -} - pub fn execute_tx_configurable( state: &mut CachedState, tx_hash: &str,