Map call to not implemented in dogecoin EstimateSmartFee as EstimateFee

This commit is contained in:
Martin Boehm 2018-06-18 12:43:22 +02:00
parent f686a37aab
commit 631710fdd2

View File

@ -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)
}