mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
fix(tracers/native): set CreationMethod
Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
parent
351e01ff58
commit
1a96310526
1 changed files with 5 additions and 4 deletions
|
|
@ -296,10 +296,11 @@ func newFlatCreate(input *callFrame) *flatCallFrame {
|
|||
return &flatCallFrame{
|
||||
Type: strings.ToLower(vm.CREATE.String()),
|
||||
Action: flatCallAction{
|
||||
From: &input.From,
|
||||
Gas: &input.Gas,
|
||||
Value: input.Value,
|
||||
Init: &actionInit,
|
||||
CreationMethod: strings.ToLower(vm.OpCode(input.Type).String()),
|
||||
From: &input.From,
|
||||
Gas: &input.Gas,
|
||||
Value: input.Value,
|
||||
Init: &actionInit,
|
||||
},
|
||||
Result: &flatCallResult{
|
||||
GasUsed: &input.GasUsed,
|
||||
|
|
|
|||
Loading…
Reference in a new issue