From 9cce1dda67caf4e112694618c1d6a9bb55573bb6 Mon Sep 17 00:00:00 2001 From: AnieeG Date: Tue, 2 Jul 2024 08:23:13 -0700 Subject: [PATCH] fix smoke --- integration-tests/ccip-tests/actions/ccip_helpers.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/integration-tests/ccip-tests/actions/ccip_helpers.go b/integration-tests/ccip-tests/actions/ccip_helpers.go index 464109e2fd..97a00c0d51 100644 --- a/integration-tests/ccip-tests/actions/ccip_helpers.go +++ b/integration-tests/ccip-tests/actions/ccip_helpers.go @@ -2874,7 +2874,7 @@ func (lane *CCIPLane) Multicall(noOfRequests int, multiSendAddr common.Address) func (lane *CCIPLane) SendRequests(noOfRequests int, gasLimit *big.Int) error { for i := 1; i <= noOfRequests; i++ { stat := testreporters.NewCCIPRequestStats(int64(lane.NumberOfReq+i), lane.SourceNetworkName, lane.DestNetworkName) - _, txConfirmationDur, fee, err := lane.Source.SendRequest( + txHash, txConfirmationDur, fee, err := lane.Source.SendRequest( lane.Dest.ReceiverDapp.EthAddress, gasLimit, ) @@ -2894,7 +2894,10 @@ func (lane *CCIPLane) SendRequests(noOfRequests int, gasLimit *big.Int) error { noOfTokens++ } } - + _, err = lane.AddToSentReqs(txHash, []*testreporters.RequestStat{stat}) + if err != nil { + return err + } stat.UpdateState(lane.Logger, 0, testreporters.TX, txConfirmationDur, testreporters.Success, nil) lane.TotalFee = bigmath.Add(lane.TotalFee, fee) }