Skip to content

Commit

Permalink
set buildtype in nerpa and butterfly
Browse files Browse the repository at this point in the history
  • Loading branch information
Cory Schwartz authored and Stebalien committed Jul 30, 2021
1 parent b584f44 commit c4ca366
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 2 additions & 0 deletions build/params_butterfly.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ func init() {
SetAddressNetwork(address.Testnet)

Devnet = true

BuildType = BuildButterflynet
}

const BlockDelaySecs = uint64(builtin2.EpochDurationSeconds)
Expand Down
2 changes: 2 additions & 0 deletions build/params_nerpanet.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ func init() {
//miner.WPoStChallengeLookback = abi.ChainEpoch(2)

Devnet = false

BuildType = BuildNerpanet
}

const BlockDelaySecs = uint64(builtin2.EpochDurationSeconds)
Expand Down
18 changes: 12 additions & 6 deletions build/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ var CurrentCommit string
var BuildType int

const (
BuildDefault = 0
BuildMainnet = 0x1
Build2k = 0x2
BuildDebug = 0x3
BuildCalibnet = 0x4
BuildInteropnet = 0x5
BuildDefault = 0
BuildMainnet = 0x1
Build2k = 0x2
BuildDebug = 0x3
BuildCalibnet = 0x4
BuildInteropnet = 0x5
BuildNerpanet = 0x6
BuildButterflynet = 0x7
)

func buildType() string {
Expand All @@ -28,6 +30,10 @@ func buildType() string {
return "+calibnet"
case BuildInteropnet:
return "+interopnet"
case BuildNerpanet:
return "+nerpanet"
case BuildButterflynet:
return "+butterflynet"
default:
return "+huh?"
}
Expand Down

0 comments on commit c4ca366

Please sign in to comment.