Support bitcoin-abc v0.19.6
This commit is contained in:
parent
d1b8aefde6
commit
af564ba7a6
1 changed files with 2 additions and 1 deletions
|
|
@ -545,7 +545,8 @@ Selected non-{pnm} inputs: {{}}""".strip().format(pnm=g.proj_name,pnl=g.proj_nam
|
|||
rel_fee = ret['feerate'] if 'feerate' in ret else -2
|
||||
fe_type = 'estimatesmartfee'
|
||||
except:
|
||||
rel_fee = g.rpch.estimatefee(opt.tx_confs)
|
||||
rel_fee = g.rpch.estimatefee() if g.coin=='BCH' and g.rpch.daemon_version >= 190100 \
|
||||
else g.rpch.estimatefee(opt.tx_confs)
|
||||
fe_type = 'estimatefee'
|
||||
|
||||
return rel_fee,fe_type
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue