plan: fix gas price and show gas price in summary

Co-authored-by: drQedwards <213266729+drQedwards@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-12 16:12:40 +00:00
parent 9ed063f56e
commit 53ff818308

View file

@ -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