Gate z_mergetoaddress as an experimental feature

This commit is contained in:
Jack Grigg
2018-01-18 22:01:13 +00:00
parent 6e9c7629af
commit 553a5c1ab2
3 changed files with 15 additions and 2 deletions

View File

@@ -19,11 +19,11 @@ class WalletMergeToAddressTest (BitcoinTestFramework):
initialize_chain_clean(self.options.tmpdir, 4)
def setup_network(self, split=False):
args = ['-debug=zrpcunsafe']
args = ['-debug=zrpcunsafe', '-experimentalfeatures', '-zmergetoaddress']
self.nodes = []
self.nodes.append(start_node(0, self.options.tmpdir, args))
self.nodes.append(start_node(1, self.options.tmpdir, args))
args2 = ['-debug=zrpcunsafe', '-mempooltxinputlimit=7']
args2 = ['-debug=zrpcunsafe', '-experimentalfeatures', '-zmergetoaddress', '-mempooltxinputlimit=7']
self.nodes.append(start_node(2, self.options.tmpdir, args2))
connect_nodes_bi(self.nodes,0,1)
connect_nodes_bi(self.nodes,1,2)