diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 78f793a..26c2b83 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [macos-13, ubuntu-latest] - python-version: ["3.9", "3.13"] + python-version: ["3.12", "3.13"] bitcoind-version: ["28.3", "29.2"] steps: diff --git a/test/bitcoin.conf b/test/bitcoin.conf index 1ab079f..3a6f2ef 100644 --- a/test/bitcoin.conf +++ b/test/bitcoin.conf @@ -1,3 +1,4 @@ rpcuser=bitcoinrpc rpcpassword=123456abcdef fallbackfee=0.0002 +txindex=1 diff --git a/test/run_tests.sh b/test/run_tests.sh index 5d003b4..c7651c7 100755 --- a/test/run_tests.sh +++ b/test/run_tests.sh @@ -196,7 +196,12 @@ run_jm_tests () return 1 fi [[ -f ./joinmarket.cfg ]] && unlink ./joinmarket.cfg + [[ -f ./taproot/joinmarket.cfg ]] && unlink ./taproot/joinmarket.cfg + [[ -f ./frost/joinmarket.cfg ]] && unlink ./frost/joinmarket.cfg + mkdir -p taproot frost ln -s ./test/regtest_joinmarket.cfg ./joinmarket.cfg + ln -s ./test/regtest_taproot_joinmarket.cfg ./taproot/joinmarket.cfg + ln -s ./test/regtest_frost_joinmarket.cfg ./frost/joinmarket.cfg orig_umask="$(umask -p)" umask 077 rm -rf "${jm_test_datadir}"