Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix selfdestruct ExpectBalanceBurn #437

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions core/vm/instructions.go
Original file line number Diff line number Diff line change
Expand Up @@ -942,8 +942,12 @@ func opSelfdestruct6780(pc *uint64, interpreter *EVMInterpreter, scope *ScopeCon
interpreter.evm.StateDB.AddBalance(beneficiary.Bytes20(), balance, tracing.BalanceIncreaseSelfdestruct)
interpreter.evm.StateDB.SelfDestruct6780(scope.Contract.Address())
if beneficiary.Bytes20() == scope.Contract.Address() {
// Arbitrum: calling selfdestruct(this) burns the balance
interpreter.evm.StateDB.ExpectBalanceBurn(balance.ToBig())
// SelfDestruct6780 only destructs the contract if selfdestructing in the same transaction as contract creation
// So we only account for the balance burn if the contract is actually destructed by checking if the balance is zero.
if interpreter.evm.StateDB.GetBalance(scope.Contract.Address()).Sign() == 0 {
// Arbitrum: calling selfdestruct(this) burns the balance
interpreter.evm.StateDB.ExpectBalanceBurn(balance.ToBig())
}
}
if tracer := interpreter.evm.Config.Tracer; tracer != nil {
if tracer.OnEnter != nil {
Expand Down
Loading