mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
eth/tracers: fix lint
Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
parent
abf084c7b0
commit
ad338a8064
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue