Skip to content

Commit 065c4bb

Browse files
authored
Merge pull request #437 from OffchainLabs/fix_selfdestruct
Fix selfdestruct ExpectBalanceBurn
2 parents 37d142e + a9e9406 commit 065c4bb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

core/vm/instructions.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -942,8 +942,12 @@ func opSelfdestruct6780(pc *uint64, interpreter *EVMInterpreter, scope *ScopeCon
942942
interpreter.evm.StateDB.AddBalance(beneficiary.Bytes20(), balance, tracing.BalanceIncreaseSelfdestruct)
943943
interpreter.evm.StateDB.SelfDestruct6780(scope.Contract.Address())
944944
if beneficiary.Bytes20() == scope.Contract.Address() {
945-
// Arbitrum: calling selfdestruct(this) burns the balance
946-
interpreter.evm.StateDB.ExpectBalanceBurn(balance.ToBig())
945+
// SelfDestruct6780 only destructs the contract if selfdestructing in the same transaction as contract creation
946+
// So we only account for the balance burn if the contract is actually destructed by checking if the balance is zero.
947+
if interpreter.evm.StateDB.GetBalance(scope.Contract.Address()).Sign() == 0 {
948+
// Arbitrum: calling selfdestruct(this) burns the balance
949+
interpreter.evm.StateDB.ExpectBalanceBurn(balance.ToBig())
950+
}
947951
}
948952
if tracer := interpreter.evm.Config.Tracer; tracer != nil {
949953
if tracer.OnEnter != nil {

0 commit comments

Comments
 (0)