-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Update to specs 0.9.7 and markets 0.6.0 #3627
Conversation
76efeec
to
6eea5dd
Compare
chain/stmgr/stmgr.go
Outdated
@@ -1120,3 +1123,11 @@ func (sm *StateManager) GetCirculatingSupply(ctx context.Context, height abi.Cha | |||
|
|||
return csi.FilCirculating, nil | |||
} | |||
|
|||
func (sm *StateManager) GetNtwkVersion(ctx context.Context, height abi.ChainEpoch) runtime.NetworkVersion { | |||
if build.UpgradeBreezeHeight == 0 || height <= build.UpgradeBreezeHeight { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool name. Is the next one going to be hurricane?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirming this means that UpgradeBreezeHeight
will still run protocol version 0. UpgradeBreezeHeight + 1
is version 1
No description provided.