mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(rpc): make memSize optional (#2999)
This commit is contained in:
@ -481,7 +481,7 @@ impl From<&CallTraceStep> for StructLog {
|
||||
// Filled in `CallTraceArena::geth_trace` as a result of compounding all slot changes
|
||||
return_data: None,
|
||||
storage: None,
|
||||
memory_size: step.memory_size as u64,
|
||||
memory_size: Some(step.memory_size as u64),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user