f35fcb7215
vendored https://github.com/decred/dcrd/tree/master/internal/fees Commit of the last modification commit a6e205b88fbb44f7ee85be25a81f4dad155670d8 Author: Dave Collins <davec@conformal.com> Date: Sat Dec 26 12:17:48 2020 -0600 fees: Remove deprecated DisableLog.
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
// Copyright (c) 2018-2020 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Tool dumpfeedb can be used to dump the internal state of the buckets of an
|
|
// estimator's feedb so that it can be externally analyzed.
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
|
|
"github.com/decred/dcrd/dcrutil/v4"
|
|
"github.com/decred/dcrd/internal/fees"
|
|
flags "github.com/jessevdk/go-flags"
|
|
)
|
|
|
|
type config struct {
|
|
DB string `short:"b" long:"db" description:"Path to fee database"`
|
|
}
|
|
|
|
func main() {
|
|
cfg := config{
|
|
DB: path.Join(dcrutil.AppDataDir("dcrd", false), "data", "mainnet", "feesdb"),
|
|
}
|
|
|
|
parser := flags.NewParser(&cfg, flags.Default)
|
|
_, err := parser.Parse()
|
|
if err != nil {
|
|
var e *flags.Error
|
|
if !errors.As(err, &e) || e.Type != flags.ErrHelp {
|
|
parser.WriteHelp(os.Stderr)
|
|
}
|
|
return
|
|
}
|
|
|
|
ecfg := fees.EstimatorConfig{
|
|
DatabaseFile: cfg.DB,
|
|
ReplaceBucketsOnLoad: true,
|
|
MinBucketFee: 1,
|
|
MaxBucketFee: 2,
|
|
FeeRateStep: fees.DefaultFeeRateStep,
|
|
}
|
|
est, err := fees.NewEstimator(&ecfg)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println(est.DumpBuckets())
|
|
}
|