1.9.0-rc1

This commit is contained in:
Łukasz Magiera 2021-04-27 09:34:12 +02:00
parent a24a73bb52
commit 95e0c3df1d
6 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# Lotus changelog
# 1.7.0-rc1 / 2021-04-13
# 1.9.0-rc1 / 2021-04-27
This is an optional Lotus release that introduces various improvements to the sealing, mining, and deal-making processes.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -29,7 +29,7 @@ func buildType() string {
}
// BuildVersion is the local build version, set by build system
const BuildVersion = "1.7.0-rc1"
const BuildVersion = "1.9.0-rc1"
func UserVersion() string {
return BuildVersion + buildType() + CurrentCommit

View File

@ -30,9 +30,9 @@ import (
)
const (
ChainFinality = miner4.ChainFinality
SealRandomnessLookback = ChainFinality
PaychSettleDelay = paych4.SettleDelay
ChainFinality = miner4.ChainFinality
SealRandomnessLookback = ChainFinality
PaychSettleDelay = paych4.SettleDelay
MaxPreCommitRandomnessLookback = builtin4.EpochsInDay + SealRandomnessLookback
)