From f842b9f92c63c34e46eed3269bf0d1ac48338a53 Mon Sep 17 00:00:00 2001 From: Dan Kanefsky Date: Tue, 30 Jan 2024 14:44:15 -0800 Subject: [PATCH] remove full log --- ethereum/broadcast.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ethereum/broadcast.go b/ethereum/broadcast.go index b5e32eb..b752a14 100644 --- a/ethereum/broadcast.go +++ b/ethereum/broadcast.go @@ -164,14 +164,9 @@ func (e *Ethereum) attemptBroadcast( if err == nil { msg.Status = types.Complete - fullLog, err := tx.MarshalJSON() - if err != nil { - logger.Error("error marshalling eth tx log", err) - } - msg.DestTxHash = tx.Hash().Hex() - logger.Info(fmt.Sprintf("Successfully broadcast %s to Ethereum. Tx hash: %s, FULL LOG: %s", msg.SourceTxHash, msg.DestTxHash, string(fullLog))) + logger.Info(fmt.Sprintf("Successfully broadcast %s to Ethereum. Tx hash: %s", msg.SourceTxHash, msg.DestTxHash)) return nil }