From 23baaeee6b6869cc91ea3b45800c5c34013603b7 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 2 Dec 2024 13:33:57 +0100 Subject: [PATCH] core: remove debug print --- core/state_transition.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/state_transition.go b/core/state_transition.go index e696f9bcd5..43eb3b6d17 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -472,8 +472,7 @@ func (st *stateTransition) execute() (*ExecutionResult, error) { if msg.AuthList != nil { for _, auth := range msg.AuthList { // Note errors are ignored, we simply skip invalid authorizations here. - err := st.applyAuthorization(msg, &auth) - fmt.Println("err:", err) + st.applyAuthorization(msg, &auth) } }