ethereum-optimism / op-geth

GNU Lesser General Public License v3.0
255 stars 653 forks source link

tracer: Account for the L1 Fee in the prestate tracer #279

Open trianglesphere opened 2 months ago

trianglesphere commented 2 months ago

Description

This undoes the L1 fee for the prestate tracer. To implement this change I had to modify the tracer API because I need access to the Message object to get the L1 cost. This object is only available at CaptureTxStart, but the VM & L1 Cost is not available until CaptureStart thus the modification of the Tracer API & extra fields in the Prestate Trace.

Tests

TODO

Metadata