Fix bcash EstimateSmartFee functionality

This commit is contained in:
Martin Boehm 2019-03-28 11:24:20 +01:00
parent 0bfe1d5558
commit f01273ab10

View File

@ -194,3 +194,9 @@ func (b *BCashRPC) EstimateFee(blocks int) (big.Int, error) {
}
return r, nil
}
// EstimateSmartFee returns fee estimation
func (b *BCashRPC) EstimateSmartFee(blocks int, conservative bool) (big.Int, error) {
// EstimateSmartFee is not supported by bcash
return b.EstimateFee(blocks)
}