We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cdf4b0 commit a211685Copy full SHA for a211685
evm/evm-normalization/src/data.ts
@@ -124,7 +124,7 @@ export interface TraceCreateResult {
124
export interface TraceCallAction {
125
from: Bytes20,
126
to: Bytes20,
127
- value: Qty,
+ value?: Qty,
128
gas: Qty,
129
input: Bytes,
130
sighash?: Bytes,
evm/evm-normalization/src/mapping.ts
@@ -100,7 +100,7 @@ function* mapDebugFrame(
100
callType: frame.type.toLowerCase(),
101
from: frame.from,
102
to: assertNotNull(frame.to),
103
- value: assertNotNull(frame.value),
+ value: frame.value ?? undefined,
104
gas: frame.gas,
105
input: frame.input,
106
sighash: getSigHash(frame.input)
0 commit comments