We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1fe075 commit 19443b0Copy full SHA for 19443b0
crates/evm/src/executor/inspector/access_list.rs
@@ -69,7 +69,7 @@ impl<DB: Database> Inspector<DB> for AccessListTracer {
69
opcode::BALANCE |
70
opcode::SELFDESTRUCT => {
71
if let Ok(slot) = interpreter.stack().peek(0) {
72
- let addr: Address = Address::from_word(slot.to_be_bytes::<32>().into());
+ let addr: Address = Address::from_word(slot.into());
73
if !self.excluded.contains(&addr) {
74
self.access_list.entry(addr).or_default();
75
}
0 commit comments