From 7e4f425b79df7314af35f78a61d3a8e2abb0e7a4 Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Thu, 23 Jul 2020 19:55:10 +0200 Subject: [PATCH] Fix testgrounds build Signed-off-by: Jakub Sztandera --- build/params_testground.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/build/params_testground.go b/build/params_testground.go index 1b81ebae3..ab7c16436 100644 --- a/build/params_testground.go +++ b/build/params_testground.go @@ -10,8 +10,6 @@ package build import ( "math/big" - "github.com/filecoin-project/lotus/node/modules/dtypes" - "github.com/filecoin-project/specs-actors/actors/abi" "github.com/filecoin-project/specs-actors/actors/builtin" "github.com/filecoin-project/specs-actors/actors/builtin/miner" @@ -61,13 +59,4 @@ var ( v = v.Mul(v, big.NewInt(int64(FilecoinPrecision))) return v }() - - DrandConfig = dtypes.DrandConfig{ - Servers: []string{ - "https://pl-eu.testnet.drand.sh", - "https://pl-us.testnet.drand.sh", - "https://pl-sin.testnet.drand.sh", - }, - ChainInfoJSON: `{"public_key":"922a2e93828ff83345bae533f5172669a26c02dc76d6bf59c80892e12ab1455c229211886f35bb56af6d5bea981024df","period":25,"genesis_time":1590445175,"hash":"138a324aa6540f93d0dad002aa89454b1bec2b6e948682cde6bd4db40f4b7c9b"}`, - } )