remove debug statements.

This commit is contained in:
Raúl Kripalani 2021-06-10 12:14:37 +01:00
parent bcbbd73d65
commit 019394b9e5

View File

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