Browse Source

support Bitcoin Core v27.0.0

The MMGen Project 9 months ago
parent
commit
e3d68e698f
4 changed files with 4 additions and 3 deletions
  1. 1 1
      mmgen/data/release_date
  2. 1 1
      mmgen/data/version
  3. 1 1
      mmgen/proto/btc/daemon.py
  4. 1 0
      test/unit_tests_d/ut_tx.py

+ 1 - 1
mmgen/data/release_date

@@ -1 +1 @@
-April 2024
+May 2024

+ 1 - 1
mmgen/data/version

@@ -1 +1 @@
-14.1.dev30
+14.1.dev31

+ 1 - 1
mmgen/proto/btc/daemon.py

@@ -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', 260000, '26.0.0')
+	daemon_data = _dd('Bitcoin Core', 270000, '27.0.0')
 	exec_fn = 'bitcoind'
 	cli_fn = 'bitcoin-cli'
 	testnet_dir = 'testnet3'

+ 1 - 0
test/unit_tests_d/ut_tx.py

@@ -66,6 +66,7 @@ class unit_tests:
 		await NewTX( cfg=cfg, proto=proto )
 
 		d.stop()
+		d.remove_datadir()
 		qmsg('  OK')
 		return True