Skip to content

Commit 878b48b

Browse files
committed
feat: add GasOverPremium for gas estimate
1 parent dc4ed86 commit 878b48b

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

api/types.go

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ type PubsubScore struct {
5656
type MessageSendSpec struct {
5757
MaxFee abi.TokenAmount
5858
GasOverEstimation float64
59+
GasOverPremium float64
5960
}
6061

6162
// GraphSyncDataTransfer provides diagnostics on a data transfer happening over graphsync

node/impl/full/gas.go

+25-6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55
"fmt"
66
"math"
7+
stdbig "math/big"
78
"math/rand"
89
"sort"
910

@@ -410,19 +411,30 @@ func evalMessage(ctx context.Context, smgr *stmgr.StateManager, cstore *store.Ch
410411
}
411412

412413
func (m *GasModule) GasEstimateMessageGas(ctx context.Context, msg *types.Message, spec *api.MessageSendSpec, _ types.TipSetKey) (*types.Message, error) {
414+
log.Debugf("call GasEstimateMessageGas %v, send spec: %v", msg, spec)
413415
if msg.GasLimit == 0 {
414416
gasLimit, err := m.GasEstimateGasLimit(ctx, msg, types.EmptyTSK)
415417
if err != nil {
416418
return nil, xerrors.Errorf("estimating gas used: %w", err)
417419
}
418-
msg.GasLimit = int64(float64(gasLimit) * m.Mpool.GetConfig().GasLimitOverestimation)
420+
gasLimitOverestimation := m.Mpool.GetConfig().GasLimitOverestimation
421+
if spec != nil && spec.GasOverEstimation > 0 {
422+
gasLimitOverestimation = spec.GasOverEstimation
423+
}
424+
msg.GasLimit = int64(float64(gasLimit) * gasLimitOverestimation)
419425
}
420426

421427
if msg.GasPremium == types.EmptyInt || types.BigCmp(msg.GasPremium, types.NewInt(0)) == 0 {
422428
gasPremium, err := m.GasEstimateGasPremium(ctx, 10, msg.From, msg.GasLimit, types.EmptyTSK)
423429
if err != nil {
424430
return nil, xerrors.Errorf("estimating gas price: %w", err)
425431
}
432+
if spec != nil && spec.GasOverPremium > 0 {
433+
olgGasPremium := gasPremium
434+
newGasPremium, _ := new(stdbig.Float).Mul(new(stdbig.Float).SetInt(stdbig.NewInt(gasPremium.Int64())), stdbig.NewFloat(spec.GasOverPremium)).Int(nil)
435+
log.Debugf("call GasEstimateMessageGas old premium %v, new premium %v, premium ration %f", olgGasPremium, newGasPremium, spec.GasOverPremium)
436+
gasPremium = big.NewFromGo(newGasPremium)
437+
}
426438
msg.GasPremium = gasPremium
427439
}
428440

@@ -465,10 +477,7 @@ func (m *GasModule) GasBatchEstimateMessageGas(ctx context.Context, estimateMess
465477
estimateMsg := estimateMessage.Msg
466478
estimateMsg.Nonce = fromNonce
467479

468-
if estimateMessage.Spec != nil {
469-
log.Infof("GasBatchEstimateMessageGas from %s, nonce %d, gas limit %d, gas fee cap %s, max fee %s",
470-
estimateMsg.From, estimateMsg.Nonce, estimateMsg.GasLimit, estimateMsg.GasFeeCap, estimateMessage.Spec.MaxFee)
471-
}
480+
log.Debugf("call GasBatchEstimateMessageGas msg %v, spec %v", estimateMsg, estimateMessage.Spec)
472481

473482
if estimateMsg.GasLimit == 0 {
474483
gasUsed, err := evalMessage(ctx, m.Stmgr, m.Chain, estimateMsg, priorMsgs, ts)
@@ -480,7 +489,11 @@ func (m *GasModule) GasBatchEstimateMessageGas(ctx context.Context, estimateMess
480489
})
481490
continue
482491
}
483-
estimateMsg.GasLimit = int64(float64(gasUsed) * estimateMessage.Spec.GasOverEstimation)
492+
gasLimitOverestimation := m.Mpool.GetConfig().GasLimitOverestimation
493+
if estimateMessage.Spec != nil && estimateMessage.Spec.GasOverEstimation > 0 {
494+
gasLimitOverestimation = estimateMessage.Spec.GasOverEstimation
495+
}
496+
estimateMsg.GasLimit = int64(float64(gasUsed) * gasLimitOverestimation)
484497
}
485498

486499
if estimateMsg.GasPremium == types.EmptyInt || types.BigCmp(estimateMsg.GasPremium, types.NewInt(0)) == 0 {
@@ -493,6 +506,12 @@ func (m *GasModule) GasBatchEstimateMessageGas(ctx context.Context, estimateMess
493506
})
494507
continue
495508
}
509+
if estimateMessage.Spec != nil && estimateMessage.Spec.GasOverPremium > 0 {
510+
olgGasPremium := gasPremium
511+
newGasPremium, _ := new(stdbig.Float).Mul(new(stdbig.Float).SetInt(stdbig.NewInt(gasPremium.Int64())), stdbig.NewFloat(estimateMessage.Spec.GasOverPremium)).Int(nil)
512+
gasPremium = big.NewFromGo(newGasPremium)
513+
log.Debugf("call GasBatchEstimateMessageGas old premium %v, new premium %v, premium ration %f", olgGasPremium, newGasPremium, estimateMessage.Spec.GasOverPremium)
514+
}
496515
estimateMsg.GasPremium = gasPremium
497516
}
498517

0 commit comments

Comments
 (0)