Skip to content

Commit 52f1a22

Browse files
committed
network param update filecoin-project#6371
1 parent 83e8a88 commit 52f1a22

File tree

7 files changed

+9
-2
lines changed

7 files changed

+9
-2
lines changed

fixtures/networks/butterfly.go

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ func ButterflySnapNet() *NetworkConf {
7171
ActorDebugging: false,
7272
F3Enabled: true,
7373
F3BootstrapEpoch: 200,
74+
ManifestServerID: "12D3KooWHcNBkqXEBrsjoveQvj6zDF3vK5S9tAfqyYaQF1LGSJwG",
7475
},
7576
}
7677

fixtures/networks/calibration.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ func Calibration() *NetworkConf {
7575
AllowableClockDriftSecs: 1,
7676
Eip155ChainID: 314159,
7777
ActorDebugging: false,
78-
F3Enabled: false,
79-
F3BootstrapEpoch: -1,
78+
F3Enabled: true,
79+
F3BootstrapEpoch: 9999999999 + 100,
80+
ManifestServerID: "12D3KooWHcNBkqXEBrsjoveQvj6zDF3vK5S9tAfqyYaQF1LGSJwG",
8081
},
8182
}
8283

fixtures/networks/forcenet.go

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ func ForceNet() *NetworkConf {
7373
ActorDebugging: true,
7474
F3Enabled: true,
7575
F3BootstrapEpoch: 100,
76+
ManifestServerID: "12D3KooWHcNBkqXEBrsjoveQvj6zDF3vK5S9tAfqyYaQF1LGSJwG",
7677
},
7778
}
7879
nc.Network.DrandSchedule[nc.Network.ForkUpgradeParam.UpgradePhoenixHeight] = config.DrandQuicknet

fixtures/networks/interopnet.go

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ func InteropNet() *NetworkConf {
7171
ActorDebugging: false,
7272
F3Enabled: true,
7373
F3BootstrapEpoch: 1000,
74+
ManifestServerID: "12D3KooWHcNBkqXEBrsjoveQvj6zDF3vK5S9tAfqyYaQF1LGSJwG",
7475
},
7576
}
7677

fixtures/networks/mainnet.go

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ func Mainnet() *NetworkConf {
7676
ActorDebugging: false,
7777
F3Enabled: false,
7878
F3BootstrapEpoch: -1,
79+
ManifestServerID: "12D3KooWHcNBkqXEBrsjoveQvj6zDF3vK5S9tAfqyYaQF1LGSJwG",
7980
},
8081
}
8182

fixtures/networks/net_2k.go

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ func Net2k() *NetworkConf {
6767
ActorDebugging: true,
6868
F3Enabled: true,
6969
F3BootstrapEpoch: 100,
70+
ManifestServerID: "12D3KooWHcNBkqXEBrsjoveQvj6zDF3vK5S9tAfqyYaQF1LGSJwG",
7071
},
7172
}
7273

pkg/config/config.go

+1
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ type NetworkParamsConfig struct {
308308
ActorDebugging bool `json:"-"`
309309
F3Enabled bool `json:"f3Enabled"`
310310
F3BootstrapEpoch abi.ChainEpoch `json:"f3BootstrapEpoch"`
311+
ManifestServerID string `json:"manifestServerID"`
311312
}
312313

313314
// ForkUpgradeConfig record upgrade parameters

0 commit comments

Comments
 (0)