Skip to content

Commit ef8afe9

Browse files
committed
Update tracing instrumentation in AtomicEoaExecutorStore to log transaction length instead of transactions directly.
1 parent 5def3de commit ef8afe9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

executors/src/eoa/store/atomic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ impl AtomicEoaExecutorStore {
141141
///
142142
/// The transactions must have sequential nonces starting from the current optimistic count.
143143
/// This operation validates nonce ordering and atomically moves all transactions.
144-
#[tracing::instrument(skip_all, fields(transactions = ?transactions))]
144+
#[tracing::instrument(skip_all, fields(transactions_length = transactions.len()))]
145145
pub async fn atomic_move_pending_to_borrowed_with_incremented_nonces(
146146
&self,
147147
transactions: &[BorrowedTransactionData],

0 commit comments

Comments
 (0)