From 6eccaccb359fe3455479bebe47f5f7b8911414c6 Mon Sep 17 00:00:00 2001 From: elizabeth Date: Tue, 26 Mar 2024 00:24:35 -0400 Subject: [PATCH] cleanup --- core/state_transition.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/state_transition.go b/core/state_transition.go index 3df62ad93dcd..cca999e7790b 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -26,7 +26,6 @@ import ( cmath "github.com/ethereum/go-ethereum/common/math" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" - "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/params" ) @@ -365,7 +364,6 @@ func (st *StateTransition) preCheck() error { func (st *StateTransition) TransitionDb() (*ExecutionResult, error) { // if this is a deposit tx, we only need to mint funds and no gas is used. if st.msg.IsDepositTx { - log.Info("executing deposit tx", "from", st.msg.From, "value", st.msg.Value) st.state.AddBalance(st.msg.From, st.msg.Value) return &ExecutionResult{ UsedGas: 0,