diff --git a/bchain/coins/bch/bcashrpc.go b/bchain/coins/bch/bcashrpc.go index a57154bb..79500773 100644 --- a/bchain/coins/bch/bcashrpc.go +++ b/bchain/coins/bch/bcashrpc.go @@ -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) +}