[QA] Fix typo in fundrawtransaction test
Ping @jnewbery introduced on dab804c18a
This commit is contained in:
parent
a230b05887
commit
803e6a3503
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ class RawTransactionsTest(BitcoinTestFramework):
|
||||||
rawTx = self.nodes[1].createrawtransaction(inputs, outputs)
|
rawTx = self.nodes[1].createrawtransaction(inputs, outputs)
|
||||||
# fund a transaction that requires a new key for the change output
|
# fund a transaction that requires a new key for the change output
|
||||||
# creating the key must be impossible because the wallet is locked
|
# 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
|
#refill the keypool
|
||||||
self.nodes[1].walletpassphrase("test", 100)
|
self.nodes[1].walletpassphrase("test", 100)
|
||||||
|
|
Loading…
Reference in a new issue