Returns a mutable reference to the underlying database.
(&mut self)
| 108 | |
| 109 | /// Returns a mutable reference to the underlying database. |
| 110 | pub fn db_mut(&mut self) -> &mut DB { |
| 111 | self.evm.db_mut() |
| 112 | } |
| 113 | |
| 114 | /// Seeds block-level offsets when appending transactions to an already-executed pending block. |
| 115 | pub const fn set_execution_offsets(&mut self, cumulative_gas_used: u64, next_log_index: usize) { |
no outgoing calls