Fix bcash EstimateSmartFee functionality

This commit is contained in:
Martin Boehm 2019-03-28 11:24:20 +01:00
parent 9cd35b3616
commit fa4a11c3a7

View File

@ -195,3 +195,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)
}