Change default address type to bech32

This commit is contained in:
Gregory Sanders
2019-09-18 09:25:23 -04:00
parent ae3902ee3f
commit f50785ab56
7 changed files with 11 additions and 7 deletions

View File

@ -65,6 +65,7 @@ def make_utxo(node, amount, confirmed=True, scriptPubKey=CScript([1])):
class ReplaceByFeeTest(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 1
# TODO remove output type argument and fix resulting "tx-size-small" errors
self.extra_args = [
[
"-acceptnonstdtxn=1",
@ -73,6 +74,7 @@ class ReplaceByFeeTest(BitcoinTestFramework):
"-limitancestorsize=101",
"-limitdescendantcount=200",
"-limitdescendantsize=101",
"-addresstype=p2sh-segwit",
],
]