test.py regtest: support Bitcoin Core v0.20.0
This commit is contained in:
parent
38ade95f23
commit
777f4201a5
1 changed files with 4 additions and 1 deletions
|
|
@ -451,7 +451,10 @@ class BitcoinDaemon(CoinDaemon):
|
|||
if self.platform == 'linux' and not 'no_daemonize' in self.flags:
|
||||
self.daemonize_args = ['--daemon']
|
||||
|
||||
if self.daemon_id == 'bch':
|
||||
if self.daemon_id == 'btc':
|
||||
if self.network == 'regtest':
|
||||
self.coin_specific_coind_args = ['--fallbackfee=0.0002']
|
||||
elif self.daemon_id == 'bch':
|
||||
self.coin_specific_coind_args = ['--usecashaddr=0']
|
||||
elif self.daemon_id == 'ltc':
|
||||
self.coin_specific_coind_args = ['--mempoolreplacement=1']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue