Remove more leftover print statements

This commit is contained in:
Matthieu Vachon 2025-06-10 15:55:18 -04:00
parent e4757ff338
commit f6679a1c19

View file

@ -17,9 +17,7 @@
package state
import (
"fmt"
"math/big"
"os"
"time"
"github.com/ethereum/go-ethereum/common"
@ -259,7 +257,6 @@ func (s *hookedStateDB) SelfDestruct6780(address common.Address) (uint256.Int, b
prev, changed := s.inner.SelfDestruct6780(address)
if s.hooks.OnBalanceChange != nil && changed && !prev.IsZero() {
fmt.Fprintf(os.Stderr, "[Firehose] SelfDestruct6780 (hooked): previous balance withdraw (addr=%s, prev_balance=%s)\n", address, &prev)
s.hooks.OnBalanceChange(address, prev.ToBig(), new(big.Int), tracing.BalanceDecreaseSelfdestruct)
}