From 1d3df02a6119c2a414befa1c7a8af9070ebba53b Mon Sep 17 00:00:00 2001 From: Bartek Tofel Date: Fri, 8 Mar 2024 20:52:08 +0100 Subject: [PATCH] don't log txhash (#12358) --- integration-tests/actions/seth/actions.go | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/integration-tests/actions/seth/actions.go b/integration-tests/actions/seth/actions.go index ae5016852fe..990b195a800 100644 --- a/integration-tests/actions/seth/actions.go +++ b/integration-tests/actions/seth/actions.go @@ -72,22 +72,21 @@ func FundChainlinkNodes( if err != nil { fundingErrors = append(fundingErrors, err) - txHash := "(none)" - if receipt != nil { - txHash = receipt.TxHash.String() - } - logger.Err(err). Str("From", fromAddress.Hex()). Str("To", toAddress). - Str("TxHash", txHash). Msg("Failed to fund Chainlink node") } + txHash := "(none)" + if receipt != nil { + txHash = receipt.TxHash.String() + } + logger.Info(). Str("From", fromAddress.Hex()). Str("To", toAddress). - Str("TxHash", receipt.TxHash.String()). + Str("TxHash", txHash). Str("Amount", amount.String()). Msg("Funded Chainlink node") }