From bfaef8a0b277e89f654ff1757f7cc7fcd866d3c7 Mon Sep 17 00:00:00 2001 From: Marco Granelli Date: Thu, 5 Sep 2024 17:37:48 +0200 Subject: [PATCH] Code reusage in `dry_run_tx` --- crates/node/src/dry_run_tx.rs | 69 +++++++++-------------------------- crates/node/src/protocol.rs | 11 +++--- 2 files changed, 23 insertions(+), 57 deletions(-) diff --git a/crates/node/src/dry_run_tx.rs b/crates/node/src/dry_run_tx.rs index 661faa9557..17d3f9f64f 100644 --- a/crates/node/src/dry_run_tx.rs +++ b/crates/node/src/dry_run_tx.rs @@ -9,9 +9,7 @@ use namada_sdk::queries::{EncodedResponseQuery, RequestQuery}; use namada_sdk::state::{ DBIter, Result, ResultExt, StorageHasher, TxIndex, DB, }; -use namada_sdk::tx::data::{ - DryRunResult, ExtendedTxResult, GasLimit, TxResult, TxType, -}; +use namada_sdk::tx::data::{DryRunResult, GasLimit, TxResult, TxType}; use namada_sdk::tx::Tx; use namada_vm::wasm::{TxCache, VpCache}; use namada_vm::WasmCacheAccess; @@ -19,9 +17,6 @@ use namada_vm::WasmCacheAccess; use crate::protocol; use crate::protocol::ShellParams; -// FIXME: at the end try to use dispatch_tx andh change everything needed -// FIXME: or maybe just change dispatch_inner_tx to handle S isntead of -// WlState?? /// Dry run a transaction pub fn dry_run_tx( mut state: namada_sdk::state::TempWlState<'static, D, H>, @@ -39,7 +34,7 @@ where let gas_scale = parameters::get_gas_scale(&state)?; - // Wrapper dry run to allow estimating the gas cost of a transaction + // Wrapper dry run to allow estimating the entire gas cost of a transaction let (wrapper_hash, extended_tx_result, tx_gas_meter) = match tx.header().tx_type { TxType::Wrapper(wrapper) => { @@ -69,8 +64,8 @@ where (Some(tx.header_hash()), tx_result, tx_gas_meter) } _ => { - // If dry run only the inner tx, use the max block gas as - // the gas limit + // When dry running only the inner tx(s), use the max block gas + // as the gas limit let max_block_gas = parameters::get_max_block_gas(&state)?; let gas_limit = GasLimit::from(max_block_gas) .as_scaled_gas(gas_scale) @@ -83,49 +78,19 @@ where } }; - let ExtendedTxResult { - mut tx_result, - ref masp_tx_refs, - ibc_tx_data_refs, - } = extended_tx_result; - for cmt in - protocol::get_batch_txs_to_execute(&tx, masp_tx_refs, &ibc_tx_data_refs) - { - let batched_tx = tx.batch_ref_tx(cmt); - let batched_tx_result = protocol::apply_wasm_tx( - &batched_tx, - &TxIndex(0), - ShellParams::new( - &tx_gas_meter, - &mut state, - &mut vp_wasm_cache, - &mut tx_wasm_cache, - ), - ); - match &batched_tx_result { - Err(crate::protocol::Error::GasError(err)) => { - // Gas errors interrupt the execution of the batch - Err(crate::protocol::Error::GasError(err.to_owned())) - .into_storage_result()?; - } - res => { - let is_accepted = - matches!(res, Ok(result) if result.is_accepted()); - if is_accepted { - state.write_log_mut().commit_tx_to_batch(); - } else { - state.write_log_mut().drop_tx(); - } - - tx_result.insert_inner_tx_result( - wrapper_hash.as_ref(), - either::Right(cmt), - batched_tx_result, - ); - } - } - } - let tx_result_string = tx_result.to_result_string(); + let extended_tx_result = protocol::dispatch_inner_txs( + &tx, + wrapper_hash.as_ref(), + extended_tx_result, + TxIndex(0), + &tx_gas_meter, + &mut state, + &mut vp_wasm_cache, + &mut tx_wasm_cache, + ) + .map_err(|err| err.error) + .into_storage_result()?; + let tx_result_string = extended_tx_result.tx_result.to_result_string(); let dry_run_result = DryRunResult( tx_result_string, tx_gas_meter diff --git a/crates/node/src/protocol.rs b/crates/node/src/protocol.rs index 8a09a3b873..66bd751e66 100644 --- a/crates/node/src/protocol.rs +++ b/crates/node/src/protocol.rs @@ -329,17 +329,18 @@ pub(crate) fn get_batch_txs_to_execute<'a>( } #[allow(clippy::too_many_arguments)] -fn dispatch_inner_txs<'a, D, H, CA>( +pub(crate) fn dispatch_inner_txs<'a, S, D, H, CA>( tx: &Tx, wrapper_hash: Option<&'a Hash>, mut extended_tx_result: ExtendedTxResult, tx_index: TxIndex, tx_gas_meter: &'a RefCell, - state: &'a mut WlState, + state: &'a mut S, vp_wasm_cache: &'a mut VpCache, tx_wasm_cache: &'a mut TxCache, ) -> std::result::Result, DispatchError> where + S: 'static + State + Read + Sync, D: 'static + DB + for<'iter> DBIter<'iter> + Sync, H: 'static + StorageHasher + Sync, CA: 'static + WasmCacheAccess + Sync, @@ -931,9 +932,9 @@ where } } -/// Apply a transaction going via the wasm environment. Gas will be metered and -/// validity predicates will be triggered in the normal way. -pub fn apply_wasm_tx( +// Apply a transaction going via the wasm environment. Gas will be metered and +// validity predicates will be triggered in the normal way. +fn apply_wasm_tx( batched_tx: &BatchedTxRef<'_>, tx_index: &TxIndex, shell_params: ShellParams<'_, S, D, H, CA>,