Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Litecoin: Fix fundrawtransaction test
Browse files Browse the repository at this point in the history
  • Loading branch information
thrasher- committed Dec 22, 2016
1 parent 953490f commit 761243c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qa/rpc-tests/fundrawtransaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])


############################################################
Expand Down

0 comments on commit 761243c

Please sign in to comment.