Skip to content

Commit ad338a8

Browse files
committed
eth/tracers: fix lint
Signed-off-by: jsvisa <delweng@gmail.com>
1 parent abf084c commit ad338a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eth/tracers/native/call_flat.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ func newFlatCreate(input *callFrame) *flatCallFrame {
296296
return &flatCallFrame{
297297
Type: strings.ToLower(vm.CREATE.String()),
298298
Action: flatCallAction{
299-
CreateType: strings.ToLower(vm.OpCode(input.Type).String()),
299+
CreateType: strings.ToLower(input.Type.String()),
300300
From: &input.From,
301301
Gas: &input.Gas,
302302
Value: input.Value,

0 commit comments

Comments
 (0)