diff --git a/.changeset/cuddly-eels-lay.md b/.changeset/cuddly-eels-lay.md index 9c11e4e36db..0262f64ded6 100644 --- a/.changeset/cuddly-eels-lay.md +++ b/.changeset/cuddly-eels-lay.md @@ -2,4 +2,4 @@ "chainlink": minor --- -Improve TXM performance by optimize Confirmer and Finalizer queries to stop pulling EVM receipt. #internal #changed #updated +Improve TXM performance by optimize Confirmer and Finalizer queries to stop pulling EVM receipt. #internal diff --git a/core/chains/evm/txmgr/evm_tx_store.go b/core/chains/evm/txmgr/evm_tx_store.go index 8bcd9a118cf..b30383b281f 100644 --- a/core/chains/evm/txmgr/evm_tx_store.go +++ b/core/chains/evm/txmgr/evm_tx_store.go @@ -669,9 +669,7 @@ func (o *evmTxStore) loadEthTxAttemptsReceipts(ctx context.Context, etx *Tx) (er return o.loadEthTxesAttemptsReceipts(ctx, []*Tx{etx}) } -// initEthTxesAttempts takes an input txes slice, return initialized an attempt map and attemptHashes slice, as well as -// -// a third value indicate if the input slice is empty +// initEthTxesAttempts takes an input txes slice, return initialized an attempt map and attemptHashes slice, plus a third value indicate if the input slice is empty func initEthTxesAttempts(etxs []*Tx) (map[common.Hash]*TxAttempt, [][]byte, bool) { if len(etxs) == 0 { return nil, nil, true