diff --git a/core/chains/evm/txmgr/evm_tx_store.go b/core/chains/evm/txmgr/evm_tx_store.go index 248db7ccc21..f7dd768741a 100644 --- a/core/chains/evm/txmgr/evm_tx_store.go +++ b/core/chains/evm/txmgr/evm_tx_store.go @@ -59,6 +59,7 @@ type TxStoreWebApi interface { FindTxAttempt(hash common.Hash) (*TxAttempt, error) FindTxWithAttempts(etxID int64) (etx Tx, err error) UnstartedTransactions(limit, offset int, fromAddress common.Address, chainID *big.Int) ([]Tx, int, error) + UnconfirmedTransactions(limit, offset int, fromAddress common.Address, chainID *big.Int) ([]Tx, int, error) } type TestEvmTxStore interface {