From 53ff8183080fd87d7dcb6f3119d7e747f3af1bb7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Mar 2026 16:12:40 +0000 Subject: [PATCH] plan: fix gas price and show gas price in summary Co-authored-by: drQedwards <213266729+drQedwards@users.noreply.github.com> --- cmd/pushtx/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/pushtx/main.go b/cmd/pushtx/main.go index fe4540f05b..87fce39a57 100644 --- a/cmd/pushtx/main.go +++ b/cmd/pushtx/main.go @@ -92,6 +92,8 @@ func run(args []string, stdin io.Reader) error { if err != nil { return fmt.Errorf("invalid hex data: %w", err) } + // Normalize to 0x-prefixed form for consistent output. + txHex = "0x" + hex.EncodeToString(rawTx) // Decode the transaction so we can display a summary. var tx types.Transaction