Skip to content

Commit

Permalink
(test): functions contract transmitter test uses nil txMetadata
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkaseman committed Apr 1, 2024
1 parent eaa00c7 commit f782b30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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{}))
Expand Down Expand Up @@ -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{}))
Expand Down

0 comments on commit f782b30

Please sign in to comment.