From 20dee2e4a4fd4b493e29c203555945dd01b38e7b Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Tue, 27 Mar 2018 10:15:58 -0400 Subject: [PATCH] slight peg-test language fixup --- qa/rpc-tests/pegging.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/rpc-tests/pegging.py b/qa/rpc-tests/pegging.py index 84aba1fe52..0f7b22e694 100755 --- a/qa/rpc-tests/pegging.py +++ b/qa/rpc-tests/pegging.py @@ -178,7 +178,7 @@ try: # First attempt fails the consensus check but gives useful result try: pegtxid = sidechain.claimpegin(raw, proof) - raise Exception("Peg-in should not mature enough yet, need another block.") + raise Exception("Peg-in should not be mature enough yet, need another block.") except JSONRPCException as e: assert("Peg-in Bitcoin transaction needs more confirmations to be sent." in e.error["message"]) pass @@ -187,7 +187,7 @@ try: bitcoin.generate(10) try: pegtxid = sidechain.claimpegin(raw, proof) - raise Exception("Peg-in should not mature enough yet, need another block.") + raise Exception("Peg-in should not be mature enough yet, need another block.") except JSONRPCException as e: assert("Peg-in Bitcoin transaction needs more confirmations to be sent." in e.error["message"]) pass