From 85b1dbd58442ae2eab0afa1e7db0a819beda0436 Mon Sep 17 00:00:00 2001 From: amit-momin Date: Wed, 8 Jan 2025 16:52:13 -0600 Subject: [PATCH] Fixed test --- core/chains/evm/txmgr/stuck_tx_detector_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/chains/evm/txmgr/stuck_tx_detector_test.go b/core/chains/evm/txmgr/stuck_tx_detector_test.go index da0b995d9e..187e16e913 100644 --- a/core/chains/evm/txmgr/stuck_tx_detector_test.go +++ b/core/chains/evm/txmgr/stuck_tx_detector_test.go @@ -555,7 +555,7 @@ func mustInsertUnconfirmedTxWithBroadcastAttemptsContainsEmptyBroadcastBeforeBlo attempt := cltest.NewLegacyEthTxAttempt(t, etx.ID) attempt.State = txmgrtypes.TxAttemptBroadcast attempt.BroadcastBeforeBlockNum = nil - attempt.TxFee = gas.EvmFee{GasPrice: latestGasPrice.Sub(assets.NewWeiI(i))} + attempt.TxFee = gas.EvmFee{Legacy: latestGasPrice.Sub(assets.NewWeiI(i))} require.NoError(t, txStore.InsertTxAttempt(ctx, &attempt)) } etx, err := txStore.FindTxWithAttempts(ctx, etx.ID)