fix(dep): update and lock revm (#1681)

This commit is contained in:
Roman Krasiuk
2023-03-09 12:43:56 +02:00
committed by GitHub
parent e494011819
commit d0b1e0aa02
3 changed files with 8 additions and 9 deletions

View File

@ -232,9 +232,9 @@ where
(ret, address, remaining_gas, out)
}
fn selfdestruct(&mut self) {
fn selfdestruct(&mut self, contract: Address, target: Address) {
call_inspectors!(inspector, [&mut self.custom_print_tracer], {
Inspector::<DB>::selfdestruct(inspector);
Inspector::<DB>::selfdestruct(inspector, contract, target);
});
}
}