diff options
| author | Gregory Sanders <[email protected]> | 2019-09-18 09:25:23 -0400 |
|---|---|---|
| committer | Gregory Sanders <[email protected]> | 2019-09-26 16:23:32 -0400 |
| commit | f50785ab56c0c094960c7049cfe9209b101e2823 (patch) | |
| tree | dab9043e8044b6840c195ecd8d6951fe541500b7 /test/functional/feature_rbf.py | |
| parent | Merge #16928: gui: Rename address checkbox back to bech32 (diff) | |
| download | discoin-f50785ab56c0c094960c7049cfe9209b101e2823.tar.xz discoin-f50785ab56c0c094960c7049cfe9209b101e2823.zip | |
Change default address type to bech32
Diffstat (limited to 'test/functional/feature_rbf.py')
| -rwxr-xr-x | test/functional/feature_rbf.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py index fd79df0b0..a1d4ce4c7 100755 --- a/test/functional/feature_rbf.py +++ b/test/functional/feature_rbf.py @@ -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", ], ] |