mirror of
https://github.com/filecoin-project/lotus.git
synced 2025-08-23 16:55:22 +08:00

* chore: drand: remove unused devnet and localnet configs * remove connection info from legacy 'mainnet' drand source this is identical to https://github.com/filecoin-project/lotus/pull/10476/files * better `iota` use Co-authored-by: AnomalRoil <AnomalRoil@users.noreply.github.com> --------- Co-authored-by: AnomalRoil <AnomalRoil@users.noreply.github.com>
15 lines
748 B
Go
15 lines
748 B
Go
package build
|
|
|
|
import (
|
|
"github.com/filecoin-project/lotus/build/buildconstants"
|
|
)
|
|
|
|
var DrandMainnet = buildconstants.DrandMainnet // Deprecated: Use buildconstants.DrandMainnet instead
|
|
var DrandTestnet = buildconstants.DrandTestnet // Deprecated: Use buildconstants.DrandTestnet instead
|
|
var DrandIncentinet = buildconstants.DrandIncentinet // Deprecated: Use buildconstants.DrandIncentinet instead
|
|
var DrandQuicknet = buildconstants.DrandQuicknet // Deprecated: Use buildconstants.DrandQuicknet instead
|
|
|
|
var DrandConfigs = buildconstants.DrandConfigs // Deprecated: Use buildconstants.DrandConfigs instead
|
|
|
|
var DrandConfigSchedule = buildconstants.DrandConfigSchedule // Deprecated: Use buildconstants.DrandConfigSchedule instead
|