Merge remote-tracking branch 'origin/release/v1.10.0' into chore/merge-1.10

This commit is contained in:
Łukasz Magiera 2021-06-23 15:51:00 +02:00
commit fa2be42eb0
3 changed files with 6 additions and 7 deletions

View File

@ -468,7 +468,6 @@ jobs:
paths: paths:
- appimage - appimage
gofmt: gofmt:
executor: golang executor: golang
steps: steps:

View File

@ -62,8 +62,8 @@ const UpgradeNorwegianHeight = 665280
// 2021-04-29T06:00:00Z // 2021-04-29T06:00:00Z
const UpgradeTurboHeight = 712320 const UpgradeTurboHeight = 712320
// ??? // 2021-06-30T22:00:00Z
var UpgradeHyperdriveHeight = abi.ChainEpoch(9999999) var UpgradeHyperdriveHeight = abi.ChainEpoch(892800)
func init() { func init() {
if os.Getenv("LOTUS_USE_TEST_ADDRESSES") != "1" { if os.Getenv("LOTUS_USE_TEST_ADDRESSES") != "1" {

View File

@ -377,12 +377,12 @@ func DefaultStorageMiner() *StorageMiner {
MaxCommitGasFee: types.MustParseFIL("0.05"), MaxCommitGasFee: types.MustParseFIL("0.05"),
MaxPreCommitBatchGasFee: BatchFeeConfig{ MaxPreCommitBatchGasFee: BatchFeeConfig{
Base: types.MustParseFIL("0.025"), // TODO: update before v1.10.0 Base: types.MustParseFIL("0"),
PerSector: types.MustParseFIL("0.025"), // TODO: update before v1.10.0 PerSector: types.MustParseFIL("0.02"),
}, },
MaxCommitBatchGasFee: BatchFeeConfig{ MaxCommitBatchGasFee: BatchFeeConfig{
Base: types.MustParseFIL("0.05"), // TODO: update before v1.10.0 Base: types.MustParseFIL("0"),
PerSector: types.MustParseFIL("0.05"), // TODO: update before v1.10.0 PerSector: types.MustParseFIL("0.03"), // enough for 6 agg and 1nFIL base fee
}, },
MaxTerminateGasFee: types.MustParseFIL("0.5"), MaxTerminateGasFee: types.MustParseFIL("0.5"),