• Lee Bousfield's avatar
    core: prevent negative fee during RPC calls (#25214) · 1c9afc56
    Lee Bousfield authored
    During RPC calls such as eth_call and eth_estimateGas, st.evm.Config.NoBaseFee is set
    which allows the gas price to be below the base fee. This results the tip being negative,
    and balance being subtracted from the coinbase instead of added to it, which results in a
    potentially negative coinbase balance interestingly. This can't happen during normal chain
    processing as outside of RPC calls the gas price is required to be at least the base fee,
    as NoBaseFee is false.
    
    This change prevents this behavior by disabling fee payment when the fee is not set.
    Co-authored-by: 's avatarlightclient@protonmail.com <lightclient@protonmail.com>
    Co-authored-by: 's avatarFelix Lange <fjl@twurst.com>
    1c9afc56
state_transition.go 12.9 KB