Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update wallaby and hyperspace asset #5676

Merged
merged 1 commit into from
Jan 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions fixtures/assets/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,12 @@ func GetGenesis(networkType types.NetworkType) ([]byte, error) {
switch networkType {
case types.NetworkForce:
fileName = "forcenet.car"
case types.NetworkNerpa:
fileName = "nerpanet.car"
case types.NetworkInterop:
fileName = "interopnet.car"
case types.NetworkButterfly:
fileName = "butterflynet.car"
case types.NetworkHyperspace:
fileName = "hyperspace.car"
fileName = "hyperspacenet.car"
case types.NetworkCalibnet:
fileName = "calibnet.car"
case types.NetworkWallaby:
Expand Down
Binary file added fixtures/assets/genesis-car/hyperspacenet.car
Binary file not shown.
Binary file removed fixtures/assets/genesis-car/nerpanet.car
Binary file not shown.
Binary file modified fixtures/assets/genesis-car/wallabynet.car
Binary file not shown.
9 changes: 8 additions & 1 deletion fixtures/networks/hyperspace.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ import (
func HyperspaceNet() *NetworkConf {
return &NetworkConf{
Bootstrap: config.BootstrapConfig{
Addresses: []string{},
Addresses: []string{
"/dns4/de0.bootstrap.hyperspace.yoga/tcp/31000/p2p/12D3KooWRiwg6EHAJMR5w3DZTgpS5W4ncWPSVP2Mr1o4ey1RYSQo",
"/dns4/de1.bootstrap.hyperspace.yoga/tcp/31000/p2p/12D3KooWM9HZsp1bh5jNu2m9FBSbkKSeSWUPPuDBQiiMfPDBAK3U",
"/dns4/au0.bootstrap.hyperspace.yoga/tcp/31000/p2p/12D3KooWLup1gTdG9ipt3bSUyPCmM4CT86p9nNe12oqrCX8Zo8Na",
"/dns4/ca0.bootstrap.hyperspace.yoga/tcp/31000/p2p/12D3KooWNJ4evKioh6gexD4fyvyeFecNtp2oTEPTyp3jtSQ3pWaP",
"/dns4/sg0.bootstrap.hyperspace.yoga/tcp/31000/p2p/12D3KooWCENec46HHByaJKzbjSqz9TqVdSxSAdi9FKNwdMvfw3vp",
},
MinPeerThreshold: 0,
Period: "30s",
},
Expand Down Expand Up @@ -56,6 +62,7 @@ func HyperspaceNet() *NetworkConf {
AddressNetwork: address.Testnet,
PropagationDelaySecs: 6,
Eip155ChainID: 3141,
ActorDebugging: false,
},
}
}
11 changes: 6 additions & 5 deletions fixtures/networks/wallaby.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ func WallabyNet() *NetworkConf {
return &NetworkConf{
Bootstrap: config.BootstrapConfig{
Addresses: []string{
"/dns4/de0.bootstrap.wallaby.network/tcp/1337/p2p/12D3KooWHAvUVk5XuxSwi2dNLWbTDDRSGeHxMuWdQ3SQpRuNHbLz",
"/dns4/de1.bootstrap.wallaby.network/tcp/1337/p2p/12D3KooWBRqtxhJCtiLmCwKgAQozJtdGinEDdJGoS5oHw7vCjMGc",
"/dns4/ca0.bootstrap.wallaby.network/tcp/1337/p2p/12D3KooWCApBpUk7EX9pmEfyky1gKC6N2KJ74S1AwFfvnkDqw3pK",
"/dns4/sg0.bootstrap.wallaby.network/tcp/1337/p2p/12D3KooWLnYqr4hRoNHBJQVXsFGkDoKuoVfw5R2ASw1bHzrWU5Px",
"/dns4/de0.bootstrap.wallaby.yoga/tcp/41000/p2p/12D3KooWGXLjN4FCXyTsvLPUrbZfkA5p7gXJ11WXXB56cQLEmNkE",
"/dns4/de1.bootstrap.wallaby.yoga/tcp/41000/p2p/12D3KooWEHyGpfQsLMPhCo4zmfp6uZfhQisiWZMYaPu1j92d2dax",
"/dns4/au0.bootstrap.wallaby.yoga/tcp/41000/p2p/12D3KooWLEPk3TcgpD7aWoou4dzbgdQA14Y9eTCg9rcoLaLruHtf",
"/dns4/ca0.bootstrap.wallaby.yoga/tcp/41000/p2p/12D3KooWQAupDxeHoLzmc617FzhWnHHWEt8e2fNfccqByT5mHWPp",
"/dns4/sg0.bootstrap.wallaby.yoga/tcp/41000/p2p/12D3KooWAkSaZCXSngvgSi4ufVModcExCysnS3JhG6nnprPjVV4o",
},
MinPeerThreshold: 0,
Period: "30s",
Expand Down Expand Up @@ -61,7 +62,7 @@ func WallabyNet() *NetworkConf {
AddressNetwork: address.Testnet,
PropagationDelaySecs: 6,
Eip155ChainID: 31415,
ActorDebugging: true,
ActorDebugging: false,
},
}
}
2 changes: 1 addition & 1 deletion venus-shared/actors/builtin_actors.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func SetNetworkBundle(networkType int) error {
networkBundle = "wallaby"
// case types.NetworkHyperspace:
case 0x10:
networkBundle = "hyperspacenet"
networkBundle = "hyperspace"
default:
networkBundle = "mainnet"
}
Expand Down
2 changes: 1 addition & 1 deletion venus-shared/utils/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestLoadBuiltinActors(t *testing.T) {
full := mock.NewMockFullNode(ctrl)

for nn := range NetworkNameWithNetworkType {
if nn == types.NetworkNameWallaby || nn == types.NetworkNameHyperspace {
if nn == types.NetworkNameWallaby {
continue
}

Expand Down