Skip to content

Commit

Permalink
Update default fees for aggregates
Browse files Browse the repository at this point in the history
Resolves #6422

Signed-off-by: Jakub Sztandera <[email protected]>
  • Loading branch information
Jakub Sztandera committed Jun 22, 2021
1 parent 7151766 commit 7ff1413
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions node/config/def.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,12 +374,12 @@ func DefaultStorageMiner() *StorageMiner {
MaxCommitGasFee: types.MustParseFIL("0.05"),

MaxPreCommitBatchGasFee: BatchFeeConfig{
Base: types.MustParseFIL("0.025"), // TODO: update before v1.10.0
PerSector: types.MustParseFIL("0.025"), // TODO: update before v1.10.0
Base: types.MustParseFIL("0"),
PerSector: types.MustParseFIL("0.02"),
},
MaxCommitBatchGasFee: BatchFeeConfig{
Base: types.MustParseFIL("0.05"), // TODO: update before v1.10.0
PerSector: types.MustParseFIL("0.05"), // TODO: update before v1.10.0
Base: types.MustParseFIL("0"),
PerSector: types.MustParseFIL("0.03"), // enough for 6 agg and 1nFIL base fee
},

MaxTerminateGasFee: types.MustParseFIL("0.5"),
Expand Down

0 comments on commit 7ff1413

Please sign in to comment.