f7c222e42e
don't use configured RBF for mpool Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
93 lines
2.1 KiB
Go
93 lines
2.1 KiB
Go
package messagepool
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
|
"github.com/ipfs/go-datastore"
|
|
)
|
|
|
|
var (
|
|
ReplaceByFeeRatioDefault = 1.25
|
|
MemPoolSizeLimitHiDefault = 30000
|
|
MemPoolSizeLimitLoDefault = 20000
|
|
PruneCooldownDefault = time.Minute
|
|
GasLimitOverestimation = 1.25
|
|
|
|
ConfigKey = datastore.NewKey("/mpool/config")
|
|
)
|
|
|
|
func loadConfig(ds dtypes.MetadataDS) (*types.MpoolConfig, error) {
|
|
haveCfg, err := ds.Has(ConfigKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if !haveCfg {
|
|
return DefaultConfig(), nil
|
|
}
|
|
|
|
cfgBytes, err := ds.Get(ConfigKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
cfg := new(types.MpoolConfig)
|
|
err = json.Unmarshal(cfgBytes, cfg)
|
|
return cfg, err
|
|
}
|
|
|
|
func saveConfig(cfg *types.MpoolConfig, ds dtypes.MetadataDS) error {
|
|
cfgBytes, err := json.Marshal(cfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return ds.Put(ConfigKey, cfgBytes)
|
|
}
|
|
|
|
func (mp *MessagePool) GetConfig() *types.MpoolConfig {
|
|
mp.cfgLk.Lock()
|
|
defer mp.cfgLk.Unlock()
|
|
return mp.cfg.Clone()
|
|
}
|
|
|
|
func validateConfg(cfg *types.MpoolConfig) error {
|
|
if cfg.ReplaceByFeeRatio < ReplaceByFeeRatioDefault {
|
|
return fmt.Errorf("'ReplaceByFeeRatio' is less than required %f < %f",
|
|
cfg.ReplaceByFeeRatio, ReplaceByFeeRatioDefault)
|
|
}
|
|
if cfg.GasLimitOverestimation < 1 {
|
|
return fmt.Errorf("'GasLimitOverestimation' cannot be less than 1")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (mp *MessagePool) SetConfig(cfg *types.MpoolConfig) error {
|
|
if err := validateConfg(cfg); err != nil {
|
|
return err
|
|
}
|
|
cfg = cfg.Clone()
|
|
|
|
mp.cfgLk.Lock()
|
|
mp.cfg = cfg
|
|
err := saveConfig(cfg, mp.ds)
|
|
if err != nil {
|
|
log.Warnf("error persisting mpool config: %s", err)
|
|
}
|
|
mp.cfgLk.Unlock()
|
|
|
|
return nil
|
|
}
|
|
|
|
func DefaultConfig() *types.MpoolConfig {
|
|
return &types.MpoolConfig{
|
|
SizeLimitHigh: MemPoolSizeLimitHiDefault,
|
|
SizeLimitLow: MemPoolSizeLimitLoDefault,
|
|
ReplaceByFeeRatio: ReplaceByFeeRatioDefault,
|
|
PruneCooldown: PruneCooldownDefault,
|
|
GasLimitOverestimation: GasLimitOverestimation,
|
|
}
|
|
}
|