4
4
"context"
5
5
"fmt"
6
6
"math"
7
+ stdbig "math/big"
7
8
"math/rand"
8
9
"sort"
9
10
@@ -410,19 +411,30 @@ func evalMessage(ctx context.Context, smgr *stmgr.StateManager, cstore *store.Ch
410
411
}
411
412
412
413
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 )
413
415
if msg .GasLimit == 0 {
414
416
gasLimit , err := m .GasEstimateGasLimit (ctx , msg , types .EmptyTSK )
415
417
if err != nil {
416
418
return nil , xerrors .Errorf ("estimating gas used: %w" , err )
417
419
}
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 )
419
425
}
420
426
421
427
if msg .GasPremium == types .EmptyInt || types .BigCmp (msg .GasPremium , types .NewInt (0 )) == 0 {
422
428
gasPremium , err := m .GasEstimateGasPremium (ctx , 10 , msg .From , msg .GasLimit , types .EmptyTSK )
423
429
if err != nil {
424
430
return nil , xerrors .Errorf ("estimating gas price: %w" , err )
425
431
}
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
+ }
426
438
msg .GasPremium = gasPremium
427
439
}
428
440
@@ -465,10 +477,7 @@ func (m *GasModule) GasBatchEstimateMessageGas(ctx context.Context, estimateMess
465
477
estimateMsg := estimateMessage .Msg
466
478
estimateMsg .Nonce = fromNonce
467
479
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 )
472
481
473
482
if estimateMsg .GasLimit == 0 {
474
483
gasUsed , err := evalMessage (ctx , m .Stmgr , m .Chain , estimateMsg , priorMsgs , ts )
@@ -480,7 +489,11 @@ func (m *GasModule) GasBatchEstimateMessageGas(ctx context.Context, estimateMess
480
489
})
481
490
continue
482
491
}
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 )
484
497
}
485
498
486
499
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
493
506
})
494
507
continue
495
508
}
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
+ }
496
515
estimateMsg .GasPremium = gasPremium
497
516
}
498
517
0 commit comments