diff --git a/qa/rpc-tests/fundrawtransaction.py b/qa/rpc-tests/fundrawtransaction.py index 0dcca4cb5..29a9a94df 100755 --- a/qa/rpc-tests/fundrawtransaction.py +++ b/qa/rpc-tests/fundrawtransaction.py @@ -201,9 +201,9 @@ def run_test(self): try: self.nodes[2].fundrawtransaction(rawtx, {'changeAddress': 'foobar'}) - raise AssertionError("Accepted invalid bitcoin address") + raise AssertionError("Accepted invalid litecoin address") except JSONRPCException as e: - assert("changeAddress must be a valid bitcoin address" in e.error['message']) + assert("changeAddress must be a valid litecoin address" in e.error['message']) ############################################################