diff --git a/core/vm/evmc.go b/core/vm/evmc.go index 6550c8e8f6d9..495b61d564d4 100644 --- a/core/vm/evmc.go +++ b/core/vm/evmc.go @@ -184,7 +184,7 @@ func (host *hostContext) GetCode(addr common.Address) []byte { func (host *hostContext) Selfdestruct(addr common.Address, beneficiary common.Address) { db := host.env.StateDB if !db.HasSuicided(addr) { - db.AddRefund(params.SuicideRefundGas) + db.AddRefund(params.SelfdestructRefundGas) } db.AddBalance(beneficiary, db.GetBalance(addr)) db.Suicide(addr)