dcrd/fees
Dave Collins 8eee4be755
fees: Prepare v2.0.0.
This updates the fees module dependencies and serves as a base for
fees/v2.0.0.

The updated direct dependencies in this commit are as follows:

- github.com/decred/dcrd/blockchain/stake/v2@v2.0.2
- github.com/decred/dcrd/dcrutil/v2@v2.0.1

The full list of updated direct dependencies since the previous
fees/v1.0.0 release are as follows:

- github.com/decred/dcrd/blockchain/stake/v2@v2.0.2
- github.com/decred/dcrd/chaincfg/chainhash v1.0.2
- github.com/decred/dcrd/dcrutil/v2@v2.0.1
2019-10-15 14:56:32 -05:00
..
cmd/dumpfeedb main: Update to use all new major module versions. 2019-08-13 11:22:37 -05:00
doc.go fees: Add estimator package 2018-12-06 19:40:39 -02:00
estimator.go multi: Correct typos. 2019-08-16 17:37:58 -05:00
go.mod fees: Prepare v2.0.0. 2019-10-15 14:56:32 -05:00
go.sum fees: Prepare v2.0.0. 2019-10-15 14:56:32 -05:00
log.go multi: deprecate DisableLog 2019-03-18 11:16:35 -05:00
README.md build: Replace TravisCI with CI via Github actions. 2019-09-20 19:59:04 -05:00

fees

Build Status ISC License GoDoc

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.

This package was developed for dcrd, a full-node implementation of Decred which is under active development. Although it was primarily written for dcrd, this package has intentionally been designed so it can be used as a standalone package for any projects needing the functionality provided.

Installation and Updating

$ go get -u github.com/decred/dcrd/fees

License

Package dcrutil is licensed under the copyfree ISC License.