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) } }