Fix bcash EstimateSmartFee functionality
This commit is contained in:
parent
9cd35b3616
commit
fa4a11c3a7
@ -195,3 +195,9 @@ func (b *BCashRPC) EstimateFee(blocks int) (big.Int, error) {
|
|||||||
}
|
}
|
||||||
return r, nil
|
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)
|
||||||
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user