You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// lower the basefee to 0 to avoid breaking EVM invariants (basefee < gasprice): <https://github.com/ethereum/go-ethereum/blob/355228b011ef9a85ebc0f21e7196f892038d49f0/internal/ethapi/api.go#L700-L704>
775
+
if tx_env.gas_price() == 0{
776
+
evm_env.block_env.basefee = 0;
777
+
}
778
+
774
779
if request_gas.is_none(){
775
780
// No gas limit was provided in the request, so we need to cap the transaction gas limit
0 commit comments