Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5756d8eb91 | ||
|
|
64b8597b8b | ||
|
|
8aa3bf160c | ||
|
|
438480750e |
@@ -1,2 +1,2 @@
|
|||||||
/dns4/bootstrap-0.butterfly.fildev.network/tcp/1347/p2p/12D3KooWMQBVoPirSWwrNr9QBj6RhGa48NGAeyr4cZvMMAzSEUZW
|
/dns4/bootstrap-0.butterfly.fildev.network/tcp/1347/p2p/12D3KooWPYikj1dM7dRJ1kxp9URih4iWFC4H7MhqZaP8tnvRCHb6
|
||||||
/dns4/bootstrap-1.butterfly.fildev.network/tcp/1347/p2p/12D3KooWQ2Q1yhD799kSDcbjeb5mr4ZSCK2PsGa4gyBZemfgx1uT
|
/dns4/bootstrap-1.butterfly.fildev.network/tcp/1347/p2p/12D3KooWAZCy1ZnJk3ykNEk9y87fWQo3TtBK6MDApjLnVAZ8DdhF
|
||||||
|
|||||||
Binary file not shown.
+2
-2
@@ -61,9 +61,9 @@ var UpgradeSharkHeight = abi.ChainEpoch(-20)
|
|||||||
|
|
||||||
var UpgradeHyggeHeight = abi.ChainEpoch(-21)
|
var UpgradeHyggeHeight = abi.ChainEpoch(-21)
|
||||||
|
|
||||||
var UpgradeLightningHeight = 30
|
var UpgradeLightningHeight = abi.ChainEpoch(30)
|
||||||
|
|
||||||
var UpgradeThunderHeight = 1000
|
var UpgradeThunderHeight = abi.ChainEpoch(1000)
|
||||||
|
|
||||||
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
||||||
0: DrandMainnet,
|
0: DrandMainnet,
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ var DrandSchedule = map[abi.ChainEpoch]DrandEnum{
|
|||||||
0: DrandMainnet,
|
0: DrandMainnet,
|
||||||
}
|
}
|
||||||
|
|
||||||
const GenesisNetworkVersion = network.Version17
|
const GenesisNetworkVersion = network.Version18
|
||||||
|
|
||||||
var NetworkBundle = "butterflynet"
|
var NetworkBundle = "butterflynet"
|
||||||
var BundleOverrides map[actorstypes.Version]string
|
var BundleOverrides map[actorstypes.Version]string
|
||||||
@@ -50,12 +50,12 @@ const UpgradeHyperdriveHeight = -16
|
|||||||
const UpgradeChocolateHeight = -17
|
const UpgradeChocolateHeight = -17
|
||||||
const UpgradeOhSnapHeight = -18
|
const UpgradeOhSnapHeight = -18
|
||||||
const UpgradeSkyrHeight = -19
|
const UpgradeSkyrHeight = -19
|
||||||
const UpgradeSharkHeight = abi.ChainEpoch(-20)
|
const UpgradeSharkHeight = -20
|
||||||
const UpgradeHyggeHeight = abi.ChainEpoch(-21)
|
const UpgradeHyggeHeight = -21
|
||||||
|
|
||||||
const UpgradeLightningHeight = 600
|
const UpgradeLightningHeight = 20
|
||||||
|
|
||||||
const UpgradeThunderHeight = UpgradeLightningHeight + 1440
|
const UpgradeThunderHeight = UpgradeLightningHeight + 20
|
||||||
|
|
||||||
var SupportedProofTypes = []abi.RegisteredSealProof{
|
var SupportedProofTypes = []abi.RegisteredSealProof{
|
||||||
abi.RegisteredSealProof_StackedDrg512MiBV1,
|
abi.RegisteredSealProof_StackedDrg512MiBV1,
|
||||||
|
|||||||
@@ -1778,9 +1778,9 @@ func upgradeActorsV11Common(
|
|||||||
return cid.Undef, xerrors.Errorf("failed to decode state root: %w", err)
|
return cid.Undef, xerrors.Errorf("failed to decode state root: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if stateRoot.Version != types.StateTreeVersion4 {
|
if stateRoot.Version != types.StateTreeVersion5 {
|
||||||
return cid.Undef, xerrors.Errorf(
|
return cid.Undef, xerrors.Errorf(
|
||||||
"expected state root version 4 for actors v11 upgrade, got %d",
|
"expected state root version 5 for actors v11 upgrade, got %d",
|
||||||
stateRoot.Version,
|
stateRoot.Version,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -1794,7 +1794,7 @@ func upgradeActorsV11Common(
|
|||||||
newHamtRoot, err := nv19.MigrateStateTree(ctx, adtStore, manifest, stateRoot.Actors, epoch, config,
|
newHamtRoot, err := nv19.MigrateStateTree(ctx, adtStore, manifest, stateRoot.Actors, epoch, config,
|
||||||
migrationLogger{}, cache)
|
migrationLogger{}, cache)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return cid.Undef, xerrors.Errorf("upgrading to actors v10: %w", err)
|
return cid.Undef, xerrors.Errorf("upgrading to actors v11: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Persist the result.
|
// Persist the result.
|
||||||
|
|||||||
Reference in New Issue
Block a user