Skip to content

Commit

Permalink
Merge pull request #6548 from filecoin-project/feat/maxprice-agg
Browse files Browse the repository at this point in the history
Update default fees for aggregates
  • Loading branch information
magik6k committed Jun 22, 2021
2 parents 9e4875f + bf82b96 commit 32b9865
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 @@ -333,12 +333,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 32b9865

Please sign in to comment.