mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix: use gas limit for gas (#3063)
This commit is contained in:
@ -373,7 +373,7 @@ impl CallTraceNode {
|
||||
from: self.trace.caller,
|
||||
to: Some(self.trace.address),
|
||||
value: Some(self.trace.value),
|
||||
gas: U256::from(self.trace.gas_used),
|
||||
gas: U256::from(self.trace.gas_limit),
|
||||
gas_used: U256::from(self.trace.gas_used),
|
||||
input: self.trace.data.clone().into(),
|
||||
output: Some(self.trace.output.clone().into()),
|
||||
|
||||
Reference in New Issue
Block a user