Merge pull request #3777 from filecoin-project/feat/plan-20-blocks

Increase the FeeCap estimation to 20 blocks in a future
This commit is contained in:
Łukasz Magiera 2020-09-14 10:20:17 +02:00 committed by GitHub
commit 18c025f10e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,7 +204,7 @@ func (a *GasAPI) GasEstimateMessageGas(ctx context.Context, msg *types.Message,
} }
if msg.GasFeeCap == types.EmptyInt || types.BigCmp(msg.GasFeeCap, types.NewInt(0)) == 0 { if msg.GasFeeCap == types.EmptyInt || types.BigCmp(msg.GasFeeCap, types.NewInt(0)) == 0 {
feeCap, err := a.GasEstimateFeeCap(ctx, msg, 10, types.EmptyTSK) feeCap, err := a.GasEstimateFeeCap(ctx, msg, 20, types.EmptyTSK)
if err != nil { if err != nil {
return nil, xerrors.Errorf("estimating fee cap: %w", err) return nil, xerrors.Errorf("estimating fee cap: %w", err)
} }