Skip to content

Commit 1118493

Browse files
author
MarcoFalke
committed
Merge #10069: [QA] Fix typo in fundrawtransaction test
803e6a3 [QA] Fix typo in fundrawtransaction test (Nicolas Dorier) Tree-SHA512: 7b88cf09d7e756f0f5535738993868287d4c7049db44072e318f48a9b08786bebb9877f787471bbf6aac58b3d709275eefa372d727f4afd6ded41494fe0024d1
2 parents 90dd9e6 + 803e6a3 commit 1118493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/fundrawtransaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def run_test(self):
472472
rawTx = self.nodes[1].createrawtransaction(inputs, outputs)
473473
# fund a transaction that requires a new key for the change output
474474
# creating the key must be impossible because the wallet is locked
475-
assert_raises_jsonrpc(-4, "Insufficient funds", self.nodes[1].fundrawtransaction, rawtx)
475+
assert_raises_jsonrpc(-4, "Keypool ran out, please call keypoolrefill first", self.nodes[1].fundrawtransaction, rawTx)
476476

477477
#refill the keypool
478478
self.nodes[1].walletpassphrase("test", 100)

0 commit comments

Comments
 (0)