From f782b303716711238785167964cae41bb024cf51 Mon Sep 17 00:00:00 2001 From: Justin Kaseman Date: Mon, 1 Apr 2024 12:13:07 -0700 Subject: [PATCH] (test): functions contract transmitter test uses nil txMetadata --- .../services/relay/evm/functions/contract_transmitter_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/services/relay/evm/functions/contract_transmitter_test.go b/core/services/relay/evm/functions/contract_transmitter_test.go index 55be3f177ba..fb50f6941b2 100644 --- a/core/services/relay/evm/functions/contract_transmitter_test.go +++ b/core/services/relay/evm/functions/contract_transmitter_test.go @@ -151,7 +151,7 @@ func TestContractTransmitter_Transmit_V1(t *testing.T) { EncodedPayload: payload, FeeLimit: gasLimit, ForwarderAddress: gethcommon.Address{}, - Meta: &txmgr.TxMeta{}, + Meta: nil, Strategy: strategy, }).Return(txmgr.Tx{}, nil).Once() require.NoError(t, ot.Transmit(testutils.Context(t), ocrtypes.ReportContext{}, reportBytes, []ocrtypes.AttributedOnchainSignature{})) @@ -235,7 +235,7 @@ func TestContractTransmitter_Transmit_V1_CoordinatorMismatch(t *testing.T) { EncodedPayload: payload, FeeLimit: gasLimit, ForwarderAddress: gethcommon.Address{}, - Meta: &txmgr.TxMeta{}, + Meta: nil, Strategy: strategy, }).Return(txmgr.Tx{}, nil).Once() require.NoError(t, ot.Transmit(testutils.Context(t), ocrtypes.ReportContext{}, reportBytes, []ocrtypes.AttributedOnchainSignature{}))