dcrd/fees/go.mod
Matheus Degiovani 0055632f68
fees: Add estimator package
This adds the first version of the fees package, responsible for
performing fee estimation of network transactions.

The main goal of fee estimation is to allow the usage of dynamic fees
by wallets, contingent on block contention and the desired confirmation
range for a given transaction.

This version was based on bitcoin core fee estimation.
2018-12-06 19:40:39 -02:00

25 lines
875 B
Modula-2

module github.com/decred/dcrd/fees
require (
github.com/btcsuite/goleveldb v1.0.0
github.com/decred/dcrd/chaincfg v1.2.0
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
github.com/decred/dcrd/dcrutil v1.1.1
github.com/decred/slog v1.0.0
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/hpcloud/tail v1.0.0 // indirect
github.com/jessevdk/go-flags v1.4.0
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect
golang.org/x/sys v0.0.0-20180831094639-fa5fdf94c789 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)
replace (
github.com/decred/dcrd/chaincfg => ../chaincfg
github.com/decred/dcrd/chaincfg/chainhash => ../chaincfg/chainhash
github.com/decred/dcrd/dcrutil => ../dcrutil
github.com/decred/dcrd/wire => ../wire
)