diff --git a/bchain/coins/dogecoin/dogecoinrpc.go b/bchain/coins/dogecoin/dogecoinrpc.go index 84a28e7c..d0ebb31c 100644 --- a/bchain/coins/dogecoin/dogecoinrpc.go +++ b/bchain/coins/dogecoin/dogecoinrpc.go @@ -69,3 +69,8 @@ func (b *DogecoinRPC) GetBlock(hash string, height uint32) (*bchain.Block, error } return b.GetBlockWithoutHeader(hash, height) } + +// EstimateSmartFee returns fee estimation. +func (b *DogecoinRPC) EstimateSmartFee(blocks int, conservative bool) (float64, error) { + return b.EstimateFee(blocks) +}