support Bitcoin Core v26.0.0

This commit is contained in:
The MMGen Project 2024-01-19 11:05:10 +00:00
commit 8a87aebeb1
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
3 changed files with 4 additions and 3 deletions

View file

@ -1 +1 @@
December 2023
January 2024

View file

@ -1 +1 @@
14.1.dev2
14.1.dev3

View file

@ -19,7 +19,7 @@ from ...util import list_gen
from ...daemon import CoinDaemon,_nw,_dd
class bitcoin_core_daemon(CoinDaemon):
daemon_data = _dd('Bitcoin Core', 250100, '25.1.0')
daemon_data = _dd('Bitcoin Core', 260000, '26.0.0')
exec_fn = 'bitcoind'
cli_fn = 'bitcoin-cli'
testnet_dir = 'testnet3'
@ -78,6 +78,7 @@ class bitcoin_core_daemon(CoinDaemon):
['--daemon', self.platform == 'linux' and not self.opt.no_daemonize],
['--fallbackfee=0.0002', self.coin == 'BTC' and self.network == 'regtest'],
['--usecashaddr=0', self.coin == 'BCH'],
['--deprecatedrpc=create_bdb', self.coin == 'BTC'],
['--mempoolreplacement=1', self.coin == 'LTC'],
['--txindex=1', self.coin == 'LTC' or self.network == 'regtest'],
['--addresstype=bech32', self.coin == 'LTC' and self.network == 'regtest'],