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

misc: add waffle to match w/ forest #12248

Closed
wants to merge 1 commit into from
Closed
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
57 changes: 0 additions & 57 deletions chain/consensus/filcns/FVMLiftoff.txt

This file was deleted.

36 changes: 36 additions & 0 deletions chain/consensus/filcns/UpgradeSplash.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
nv23 Waffle

#### ###
## ##
###### ## ## ######
## ## ### ### ## ##
### ########### ########### ###
#### ## ## ## ## ####
######## ########### ########### ########
######### ######### ######### #########
## ##
### ###
######### ########### ########### #########
## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ###
#### ## ## ## ## ## ## ####
############## ########### ########### ##############
## ##
### ##
############## ########### ########### ##############
### ## ## ## ## ## ## ###
## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ##
### ## ## ## ## ## ## ##
########## ########### ########### ##########
## ##
## ##
########## ########### ########### ##########
###### ## ## ## ## ######
### ## #### ## ## #### ## ###
## #### ##### ##### #### ##
## ## ## ### ## ##
###### ## ## ######
## ##
######
7 changes: 3 additions & 4 deletions chain/consensus/filcns/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ import (
"github.com/filecoin-project/lotus/node/bundle"
)

//go:embed FVMLiftoff.txt
var fvmLiftoffBanner string
//go:embed UpgradeSplash.txt
var upgradeSplash string

var (
MigrationMaxWorkerCount int
Expand Down Expand Up @@ -1465,8 +1465,6 @@ func UpgradeActorsV8(ctx context.Context, sm *stmgr.StateManager, cache stmgr.Mi
return cid.Undef, xerrors.Errorf("migrating actors v7 state: %w", err)
}

fmt.Print(fvmLiftoffBanner)

return newRoot, nil
}

Expand Down Expand Up @@ -2520,6 +2518,7 @@ func UpgradeActorsV14(ctx context.Context, sm *stmgr.StateManager, cache stmgr.M
if err != nil {
return cid.Undef, xerrors.Errorf("migrating actors v14 state: %w", err)
}
fmt.Print(upgradeSplash)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see #12247 (comment)

return newRoot, nil
}

Expand Down
Loading