Merge pull request #1106 from terorie/debug-trust-params

params_debug.go: remove $TRUST_PARAMS override
This commit is contained in:
Łukasz Magiera 2020-01-18 12:26:37 +01:00 committed by GitHub
commit f7ab2103ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,8 +2,6 @@
package build
import "os"
var SectorSizes = []uint64{1024}
// Seconds
@ -31,7 +29,3 @@ const InteractivePoRepConfidence = 6
// Bytes
var MinimumMinerPower uint64 = 2 << 10 // 2KiB
func init() {
os.Setenv("TRUST_PARAMS", "1")
}