mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 02:40:45 +00:00
This commit is contained in:
parent
b0e3d4118c
commit
e4d4fb7d9c
1 changed files with 2 additions and 2 deletions
|
|
@ -248,7 +248,7 @@ func flatFromNested(input *callFrame, traceAddress []int, convertErrs bool, ctx
|
||||||
case vm.CREATE, vm.CREATE2:
|
case vm.CREATE, vm.CREATE2:
|
||||||
frame = newFlatCreate(input)
|
frame = newFlatCreate(input)
|
||||||
case vm.SELFDESTRUCT:
|
case vm.SELFDESTRUCT:
|
||||||
frame = newFlatSuicide(input)
|
frame = newFlatSelfdestruct(input)
|
||||||
case vm.CALL, vm.STATICCALL, vm.CALLCODE, vm.DELEGATECALL:
|
case vm.CALL, vm.STATICCALL, vm.CALLCODE, vm.DELEGATECALL:
|
||||||
frame = newFlatCall(input)
|
frame = newFlatCall(input)
|
||||||
default:
|
default:
|
||||||
|
|
@ -330,7 +330,7 @@ func newFlatCall(input *callFrame) *flatCallFrame {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func newFlatSuicide(input *callFrame) *flatCallFrame {
|
func newFlatSelfdestruct(input *callFrame) *flatCallFrame {
|
||||||
return &flatCallFrame{
|
return &flatCallFrame{
|
||||||
Type: "suicide",
|
Type: "suicide",
|
||||||
Action: flatCallAction{
|
Action: flatCallAction{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue