From 019394b9e5e64b638d3b60c824534a8c8227e5e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Thu, 10 Jun 2021 12:14:37 +0100 Subject: [PATCH] remove debug statements. --- itests/kit/init.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/itests/kit/init.go b/itests/kit/init.go index 84ca5ecfe..57d60ad2a 100644 --- a/itests/kit/init.go +++ b/itests/kit/init.go @@ -3,8 +3,6 @@ package kit import ( "fmt" "os" - "runtime/debug" - "strings" "github.com/filecoin-project/go-state-types/abi" "github.com/filecoin-project/lotus/build" @@ -24,9 +22,4 @@ func init() { panic(fmt.Sprintf("failed to set BELLMAN_NO_GPU env variable: %s", err)) } build.InsecurePoStValidation = true - - debug.PrintStack() - - fmt.Println(strings.HasSuffix(os.Args[0], ".test")) - }