aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_coinstatsindex.py
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2021-12-09 16:18:44 +0100
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2021-12-09 16:40:35 +0100
commit50b044a88e3cfa67e28261333e658f4288d54018 (patch)
tree961d4e364cb2f245efa7e3fb0f62711b82634c42 /test/functional/feature_coinstatsindex.py
parent09e60df115f752ed9843d307db88238b7af577bb (diff)
test: fix test feature_coinstatsindex.py for descriptor wallets
Diffstat (limited to 'test/functional/feature_coinstatsindex.py')
-rwxr-xr-xtest/functional/feature_coinstatsindex.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/feature_coinstatsindex.py b/test/functional/feature_coinstatsindex.py
index 8afd0ff74a..c70f8a83db 100755
--- a/test/functional/feature_coinstatsindex.py
+++ b/test/functional/feature_coinstatsindex.py
@@ -40,7 +40,9 @@ class CoinStatsIndexTest(BitcoinTestFramework):
self.num_nodes = 2
self.supports_cli = False
self.extra_args = [
- [],
+ # Explicitly set the output type in order to have consistent tx vsize / fees
+ # for both legacy and descriptor wallets (disables the change address type detection algorithm)
+ ["-addresstype=bech32", "-changetype=bech32"],
["-coinstatsindex"]
]