dcrd/internal/fees
Ryan Staudt c3680d0ce0 blockchain/stake: Start v5 module dev cycle.
Upcoming changes constitute breaking public API changes to the
blockchain/stake module, therefore, this follows the process for
introducing major API breaks which consists of:

- Bump the major version in the go.mod of the affected module if not
  already done since the last release tag
- Add a replacement to the go.mod in the main module if not already done
  since the last release tag
- Update all imports in the repo to use the new major version as
  necessary
- Make necessary modifications to allow all other modules to use the new
  version in the same commit
- Repeat the process for any other modules the require a new major as a
  result of consuming the new major(s)
2022-05-08 11:47:32 -05:00
..
cmd/dumpfeedb multi: sprinkle on more errors.As/Is 2020-12-24 13:46:38 -06:00
doc.go fees: Move to internal. 2020-07-25 18:10:39 -05:00
estimator.go blockchain/stake: Start v5 module dev cycle. 2022-05-08 11:47:32 -05:00
log.go fees: Remove deprecated DisableLog. 2020-12-28 13:13:47 -06:00
README.md fees: Move to internal. 2020-07-25 18:10:39 -05:00

fees

Build Status ISC License Doc

Package fees provides decred-specific methods for tracking and estimating fee rates for new transactions to be mined into the network. Fee rate estimation has two main goals:

  • Ensuring transactions are mined within a target confirmation range (expressed in blocks);
  • Attempting to minimize fees while maintaining be above restriction.

This package was started in order to resolve issue decred/dcrd#1412 and related. See that issue for discussion of the selected approach.

License

Package dcrutil is licensed under the copyfree ISC License.