Skip to content

Commit

Permalink
default createaddress
Browse files Browse the repository at this point in the history
  • Loading branch information
freddie committed Nov 19, 2024
1 parent ff8cbc2 commit 64ed62b
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions core/vm/logger_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,15 @@ func (t *ActionLogger) CaptureEnter(typ OpCode, from common.Address, to common.A

call := types.ActionFrame{
Action: types.Action{
OpCode: typ.String(),
From: from,
To: to,
Value: value,
Depth: uint64(depth),
Gas: gas,
Input: input,
TraceAddress: traceAddr,
OpCode: typ.String(),
From: from,
To: to,
Value: value,
Depth: uint64(depth),
Gas: gas,
Input: input,
TraceAddress: traceAddr,
CreateAddress: common.Address{},
},
}
t.callstack = append(t.callstack, call)
Expand Down

0 comments on commit 64ed62b

Please sign in to comment.