diff options
author | Nicolas Dorier <nicolas.dorier@gmail.com> | 2017-03-24 19:10:09 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 19:10:09 +0900 |
commit | 803e6a35037e7371f767585fec36ba17bdd36f4a (patch) | |
tree | 75271a3bb3f0621b9b7ace4cd492bf0df6d73eb3 /test/functional/fundrawtransaction.py | |
parent | a230b0588788dbe1ac84622aea169c577b381241 (diff) |
[QA] Fix typo in fundrawtransaction test
Ping @jnewbery introduced on https://github.com/bitcoin/bitcoin/commit/dab804c18a427901684ebe936b2069a97e04a268
Diffstat (limited to 'test/functional/fundrawtransaction.py')
-rwxr-xr-x | test/functional/fundrawtransaction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/fundrawtransaction.py b/test/functional/fundrawtransaction.py index 1dc00f2ba1..fcae56f7dd 100755 --- a/test/functional/fundrawtransaction.py +++ b/test/functional/fundrawtransaction.py @@ -472,7 +472,7 @@ class RawTransactionsTest(BitcoinTestFramework): rawTx = self.nodes[1].createrawtransaction(inputs, outputs) # fund a transaction that requires a new key for the change output # creating the key must be impossible because the wallet is locked - assert_raises_jsonrpc(-4, "Insufficient funds", self.nodes[1].fundrawtransaction, rawtx) + assert_raises_jsonrpc(-4, "Keypool ran out, please call keypoolrefill first", self.nodes[1].fundrawtransaction, rawTx) #refill the keypool self.nodes[1].walletpassphrase("test", 100) |