From 90f78173e545c1740fb51888698680ee2fea6314 Mon Sep 17 00:00:00 2001 From: Lennart Date: Fri, 22 Sep 2023 23:25:17 +0200 Subject: [PATCH] [REF] Use segwit in test_tools --- tests/test_tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_tools.py b/tests/test_tools.py index 68de0e98..e22753cb 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -79,7 +79,7 @@ def test_tools_clw_create_wallet(self): (self.python_executable, self.clw_executable, self.DATABASE_URI) cmd_wlt_delete = "%s %s test --wallet-remove -d %s" % \ (self.python_executable, self.clw_executable, self.DATABASE_URI) - output_wlt_create = "14guS7uQpEbgf1e8TDo1zTEURJW3NGPc9E" + output_wlt_create = "bc1qdv5tuzrluh4lzhnu59je9n83w4hkqjhgg44d5g" output_wlt_delete = "Wallet test has been removed" process = Popen(cmd_wlt_create, stdin=PIPE, stdout=PIPE, shell=True) @@ -147,7 +147,7 @@ def test_tools_clw_transaction_with_script(self): (self.python_executable, self.clw_executable, self.DATABASE_URI) cmd_wlt_delete = "%s %s test2 --wallet-remove -d %s" % \ (self.python_executable, self.clw_executable, self.DATABASE_URI) - output_wlt_create = "21GPfxeCbBunsVev4uS6exPhqE8brPs1ZDF" + output_wlt_create = "blt1qj0mgwyhxuw9p0ngj5kqnxhlrx8ypecqekm2gr7" output_wlt_transaction = 'Transaction pushed to network' output_wlt_delete = "Wallet test2 has been removed"