Create a calibnet build option
This commit is contained in:
parent
bb5a92e2f4
commit
1bd2ae034f
3
Makefile
3
Makefile
@ -63,6 +63,9 @@ debug: lotus lotus-miner lotus-worker lotus-seed
|
|||||||
2k: GOFLAGS+=-tags=2k
|
2k: GOFLAGS+=-tags=2k
|
||||||
2k: lotus lotus-miner lotus-worker lotus-seed
|
2k: lotus lotus-miner lotus-worker lotus-seed
|
||||||
|
|
||||||
|
calibnet: GOFLAGS+=-tags=calibnet
|
||||||
|
calibnet: lotus lotus-miner lotus-worker lotus-seed
|
||||||
|
|
||||||
lotus: $(BUILD_DEPS)
|
lotus: $(BUILD_DEPS)
|
||||||
rm -f lotus
|
rm -f lotus
|
||||||
go build $(GOFLAGS) -o lotus ./cmd/lotus
|
go build $(GOFLAGS) -o lotus ./cmd/lotus
|
||||||
|
@ -2,11 +2,9 @@ package build
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"os"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/filecoin-project/lotus/lib/addrutil"
|
"github.com/filecoin-project/lotus/lib/addrutil"
|
||||||
"golang.org/x/xerrors"
|
|
||||||
|
|
||||||
rice "github.com/GeertJohan/go.rice"
|
rice "github.com/GeertJohan/go.rice"
|
||||||
"github.com/libp2p/go-libp2p-core/peer"
|
"github.com/libp2p/go-libp2p-core/peer"
|
||||||
@ -17,24 +15,12 @@ func BuiltinBootstrap() ([]peer.AddrInfo, error) {
|
|||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
var out []peer.AddrInfo
|
|
||||||
|
|
||||||
b := rice.MustFindBox("bootstrap")
|
b := rice.MustFindBox("bootstrap")
|
||||||
err := b.Walk("", func(path string, info os.FileInfo, err error) error {
|
|
||||||
if err != nil {
|
|
||||||
return xerrors.Errorf("failed to walk box: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !strings.HasSuffix(path, ".pi") {
|
spi := b.MustString(BootstrappersFile)
|
||||||
return nil
|
if spi == "" {
|
||||||
}
|
return nil, nil
|
||||||
spi := b.MustString(path)
|
}
|
||||||
if spi == "" {
|
|
||||||
return nil
|
return addrutil.ParseAddresses(context.TODO(), strings.Split(strings.TrimSpace(spi), "\n"))
|
||||||
}
|
|
||||||
pi, err := addrutil.ParseAddresses(context.TODO(), strings.Split(strings.TrimSpace(spi), "\n"))
|
|
||||||
out = append(out, pi...)
|
|
||||||
return err
|
|
||||||
})
|
|
||||||
return out, err
|
|
||||||
}
|
}
|
||||||
|
4
build/bootstrap/calibnet.pi
Normal file
4
build/bootstrap/calibnet.pi
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
/dns4/bootstrap-0.calibration.fildev.network/tcp/1347/p2p/12D3KooWK1QYsm6iqyhgH7vqsbeoNoKHbT368h1JLHS1qYN36oyc
|
||||||
|
/dns4/bootstrap-1.calibration.fildev.network/tcp/1347/p2p/12D3KooWKDyJZoPsNak1iYNN1GGmvGnvhyVbWBL6iusYfP3RpgYs
|
||||||
|
/dns4/bootstrap-2.calibration.fildev.network/tcp/1347/p2p/12D3KooWJRSTnzABB6MYYEBbSTT52phQntVD1PpRTMh1xt9mh6yH
|
||||||
|
/dns4/bootstrap-3.calibration.fildev.network/tcp/1347/p2p/12D3KooWQLi3kY6HnMYLUtwCe26zWMdNhniFgHVNn1DioQc7NiWv
|
@ -14,7 +14,7 @@ func MaybeGenesis() []byte {
|
|||||||
log.Warnf("loading built-in genesis: %s", err)
|
log.Warnf("loading built-in genesis: %s", err)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
genBytes, err := builtinGen.Bytes("devnet.car")
|
genBytes, err := builtinGen.Bytes(GenesisFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("loading built-in genesis: %s", err)
|
log.Warnf("loading built-in genesis: %s", err)
|
||||||
}
|
}
|
||||||
|
BIN
build/genesis/calibnet.car
Normal file
BIN
build/genesis/calibnet.car
Normal file
Binary file not shown.
@ -10,6 +10,9 @@ import (
|
|||||||
"github.com/filecoin-project/lotus/chain/actors/policy"
|
"github.com/filecoin-project/lotus/chain/actors/policy"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const BootstrappersFile = ""
|
||||||
|
const GenesisFile = ""
|
||||||
|
|
||||||
const UpgradeBreezeHeight = -1
|
const UpgradeBreezeHeight = -1
|
||||||
const BreezeGasTampingDuration = 0
|
const BreezeGasTampingDuration = 0
|
||||||
|
|
||||||
|
64
build/params_calibnet.go
Normal file
64
build/params_calibnet.go
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
// +build calibnet
|
||||||
|
|
||||||
|
package build
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/filecoin-project/go-address"
|
||||||
|
"github.com/filecoin-project/go-state-types/abi"
|
||||||
|
"github.com/filecoin-project/lotus/chain/actors/policy"
|
||||||
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
||||||
|
)
|
||||||
|
|
||||||
|
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
||||||
|
0: DrandMainnet,
|
||||||
|
}
|
||||||
|
|
||||||
|
const BootstrappersFile = "calibnet.pi"
|
||||||
|
const GenesisFile = "calibnet.car"
|
||||||
|
|
||||||
|
const UpgradeBreezeHeight = -1
|
||||||
|
const BreezeGasTampingDuration = 120
|
||||||
|
|
||||||
|
const UpgradeSmokeHeight = -2
|
||||||
|
|
||||||
|
const UpgradeIgnitionHeight = -3
|
||||||
|
const UpgradeRefuelHeight = -4
|
||||||
|
|
||||||
|
var UpgradeActorsV2Height = abi.ChainEpoch(30)
|
||||||
|
|
||||||
|
const UpgradeTapeHeight = 60
|
||||||
|
|
||||||
|
// This signals our tentative epoch for mainnet launch. Can make it later, but not earlier.
|
||||||
|
// Miners, clients, developers, custodians all need time to prepare.
|
||||||
|
// We still have upgrades and state changes to do, but can happen after signaling timing here.
|
||||||
|
const UpgradeLiftoffHeight = -5
|
||||||
|
|
||||||
|
const UpgradeKumquatHeight = 90
|
||||||
|
|
||||||
|
const UpgradeCalicoHeight = 92000
|
||||||
|
const UpgradePersianHeight = UpgradeCalicoHeight + (builtin2.EpochsInHour * 60)
|
||||||
|
|
||||||
|
// 2020-12-17T19:00:00Z
|
||||||
|
const UpgradeClausHeight = 161386
|
||||||
|
|
||||||
|
const UpgradeOrangeHeight = 9999999
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
policy.SetConsensusMinerMinPower(abi.NewStoragePower(10 << 30))
|
||||||
|
policy.SetSupportedProofTypes(
|
||||||
|
abi.RegisteredSealProof_StackedDrg512MiBV1,
|
||||||
|
abi.RegisteredSealProof_StackedDrg32GiBV1,
|
||||||
|
abi.RegisteredSealProof_StackedDrg64GiBV1,
|
||||||
|
)
|
||||||
|
|
||||||
|
SetAddressNetwork(address.Testnet)
|
||||||
|
|
||||||
|
Devnet = true
|
||||||
|
}
|
||||||
|
|
||||||
|
const BlockDelaySecs = uint64(builtin2.EpochDurationSeconds)
|
||||||
|
|
||||||
|
const PropagationDelaySecs = uint64(6)
|
||||||
|
|
||||||
|
// BootstrapPeerThreshold is the minimum number peers we need to track for a sync worker to start
|
||||||
|
const BootstrapPeerThreshold = 4
|
@ -1,6 +1,7 @@
|
|||||||
// +build !debug
|
// +build !debug
|
||||||
// +build !2k
|
// +build !2k
|
||||||
// +build !testground
|
// +build !testground
|
||||||
|
// +build !calibnet
|
||||||
|
|
||||||
package build
|
package build
|
||||||
|
|
||||||
@ -19,7 +20,11 @@ var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
|||||||
UpgradeSmokeHeight: DrandMainnet,
|
UpgradeSmokeHeight: DrandMainnet,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const BootstrappersFile = "mainnet.pi"
|
||||||
|
const GenesisFile = "mainnet.car"
|
||||||
|
|
||||||
const UpgradeBreezeHeight = 41280
|
const UpgradeBreezeHeight = 41280
|
||||||
|
|
||||||
const BreezeGasTampingDuration = 120
|
const BreezeGasTampingDuration = 120
|
||||||
|
|
||||||
const UpgradeSmokeHeight = 51000
|
const UpgradeSmokeHeight = 51000
|
||||||
|
@ -102,6 +102,9 @@ var (
|
|||||||
|
|
||||||
Devnet = true
|
Devnet = true
|
||||||
ZeroAddress = MustParseAddress("f3yaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaby2smx7a")
|
ZeroAddress = MustParseAddress("f3yaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaby2smx7a")
|
||||||
|
|
||||||
|
BootstrappersFile = ""
|
||||||
|
GenesisFile = ""
|
||||||
)
|
)
|
||||||
|
|
||||||
const BootstrapPeerThreshold = 1
|
const BootstrapPeerThreshold = 1
|
||||||
|
Loading…
Reference in New Issue
Block a user