diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-03-25 16:10:44 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-03-25 16:11:02 +0100 |
commit | 111849345bb5140f86b48e730ceab4bff45fa2e9 (patch) | |
tree | 67f23e7ecbdf46d01bbf579e33b5f5daedae3c18 /test/functional/fundrawtransaction.py | |
parent | 90dd9e6c4c0cd96072b3c4e5c476fd55a95a38c4 (diff) | |
parent | 803e6a35037e7371f767585fec36ba17bdd36f4a (diff) |
Merge #10069: [QA] Fix typo in fundrawtransaction test
803e6a3 [QA] Fix typo in fundrawtransaction test (Nicolas Dorier)
Tree-SHA512: 7b88cf09d7e756f0f5535738993868287d4c7049db44072e318f48a9b08786bebb9877f787471bbf6aac58b3d709275eefa372d727f4afd6ded41494fe0024d1
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) |