Skip to content

Commit

Permalink
Merge #10069: [QA] Fix typo in fundrawtransaction test
Browse files Browse the repository at this point in the history
803e6a3 [QA] Fix typo in fundrawtransaction test (Nicolas Dorier)

Tree-SHA512: 7b88cf09d7e756f0f5535738993868287d4c7049db44072e318f48a9b08786bebb9877f787471bbf6aac58b3d709275eefa372d727f4afd6ded41494fe0024d1
  • Loading branch information
MarcoFalke committed Mar 25, 2017
2 parents 90dd9e6 + 803e6a3 commit 1118493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/fundrawtransaction.py
Expand Up @@ -472,7 +472,7 @@ def run_test(self):
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)
Expand Down

0 comments on commit 1118493

Please sign in to comment.