diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-06-13 17:56:42 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-06-13 17:57:42 +0800 |
commit | bb3651abc865c6f6babec0d357afa85f5a539d83 (patch) | |
tree | 7f1839985359fdb2e25d34b7fd4b0c534f851e91 /eth/api.go | |
parent | fdd61b83ffe1ac0e3ef0621acbd92dd61df9910d (diff) | |
download | go-tangerine-bb3651abc865c6f6babec0d357afa85f5a539d83.tar.gz go-tangerine-bb3651abc865c6f6babec0d357afa85f5a539d83.tar.zst go-tangerine-bb3651abc865c6f6babec0d357afa85f5a539d83.zip |
core/state, eth: Updated suicides objects when tracing transactions
Consensus rules dictate that objects can only be removed during the
finalisation of the transaction (i.e. after all calls have finished).
Thus calling a suicided contract twice from the same transaction:
A->B(S)->ret(A)->B(S) results in 2 suicides. Calling the suicided
object twice from two transactions: A->B(S), A->B, results in only one
suicide and a call to an empty object.
Our current debug tracing functionality replays all transaction that
were executed prior to the targetted transaction in order to provide
the user with an accurate trace.
As a side effect to calling StateDB.IntermediateRoot it also deletes any
suicides objects. Our tracing code never calls this function because it
isn't interested in the intermediate root. Becasue of this it caused a
bug in the tracing code where transactions that were send to priviously
deleted objects resulted in two suicides rather than one suicide and a
call to an empty object.
Fixes #2542
Diffstat (limited to 'eth/api.go')
-rw-r--r-- | eth/api.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eth/api.go b/eth/api.go index f5f942c27..a2be81428 100644 --- a/eth/api.go +++ b/eth/api.go @@ -1876,6 +1876,7 @@ func (api *PrivateDebugAPI) TraceTransaction(txHash common.Hash, logger *vm.LogC if err != nil { return nil, fmt.Errorf("mutation failed: %v", err) } + stateDb.DeleteSuicides() continue } // Otherwise trace the transaction and return |