From b6f77cfb330052aa790112f4a77b2fd0860798b0 Mon Sep 17 00:00:00 2001 From: elizabeth Date: Thu, 13 Jul 2023 17:00:16 -0400 Subject: [PATCH] log updates --- internal/ethapi/sequencer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ethapi/sequencer.go b/internal/ethapi/sequencer.go index fc1843c418..727234f37a 100644 --- a/internal/ethapi/sequencer.go +++ b/internal/ethapi/sequencer.go @@ -51,6 +51,6 @@ func sendTransactionToSequencer(ctx context.Context, txBytes []byte) error { return fmt.Errorf("failed to broadcast tx (error code %d): %s", resp.Code, resp.Log) } - log.Info("successfully broadcasted tx to sequencer; hash: %s", resp.Hash) + log.Info("successfully broadcasted tx to sequencer", "hash", resp.Hash) return nil }