diff options
| author | Nicolas Dorier <[email protected]> | 2017-03-24 19:10:09 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-24 19:10:09 +0900 |
| commit | 803e6a35037e7371f767585fec36ba17bdd36f4a (patch) | |
| tree | 75271a3bb3f0621b9b7ace4cd492bf0df6d73eb3 | |
| parent | Merge #9701: Make bumpfee tests less fragile (diff) | |
| download | discoin-803e6a35037e7371f767585fec36ba17bdd36f4a.tar.xz discoin-803e6a35037e7371f767585fec36ba17bdd36f4a.zip | |
[QA] Fix typo in fundrawtransaction test
Ping @jnewbery introduced on https://github.com/bitcoin/bitcoin/commit/dab804c18a427901684ebe936b2069a97e04a268
| -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 1dc00f2ba..fcae56f7d 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) |