From 9685dabf70c06fee5ef4dbe4252f5a13e9e89857 Mon Sep 17 00:00:00 2001 From: Steven Roose Date: Tue, 25 Sep 2018 09:59:25 +0100 Subject: [PATCH] qa: Fix bug in feature_fedpeg test script --- qa/rpc-tests/feature_fedpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/rpc-tests/feature_fedpeg.py b/qa/rpc-tests/feature_fedpeg.py index 698133b029..5947d5602a 100755 --- a/qa/rpc-tests/feature_fedpeg.py +++ b/qa/rpc-tests/feature_fedpeg.py @@ -147,7 +147,7 @@ def run_test(self): # Should fail due to non-witness try: - pegtxid = sidechain.claimpegin(raw, proof, get_new_unconfidential_address(parent)) + pegtxid = sidechain.claimpegin(raw, proof, get_new_unconfidential_address(sidechain)) raise Exception("Peg-in with non-matching claim_script should fail.") except JSONRPCException as e: print(e.error["message"])