eth/tracers: fix lint

Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
jsvisa 2024-10-31 09:56:42 +08:00
parent abf084c7b0
commit ad338a8064

View file

@ -296,7 +296,7 @@ func newFlatCreate(input *callFrame) *flatCallFrame {
return &flatCallFrame{
Type: strings.ToLower(vm.CREATE.String()),
Action: flatCallAction{
CreateType: strings.ToLower(vm.OpCode(input.Type).String()),
CreateType: strings.ToLower(input.Type.String()),
From: &input.From,
Gas: &input.Gas,
Value: input.Value,