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

@@ -29,9 +29,10 @@ NOT_FINAL_ERROR = "non-BIP68-final (code 64)"
class BIP68Test(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 2
# TODO remove output type argument and fix resulting "tx-size-small" errors
self.extra_args = [
["-acceptnonstdtxn=1"],
["-acceptnonstdtxn=0"],
["-acceptnonstdtxn=1", "-addresstype=p2sh-segwit"],
["-acceptnonstdtxn=0", "-addresstype=p2sh-segwit"],
]
def skip_test_if_missing_module(self):