diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-18 10:41:27 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-18 10:41:32 +0100 |
commit | a8bd616fea62e0b15c6041d687230f5d9dd47bf9 (patch) | |
tree | 0e86fd376821825e0d50e56bcc7c6a0f38680a24 /qa | |
parent | 2350ab28fb8c46df0887c6cb8286c3e8ffc352ce (diff) | |
parent | 9d263bd17c2bdd5ba9e31bd5fb110c332eb80691 (diff) |
Merge pull request #7329
9d263bd Typo fixes in comments (Chris Wheeler)
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/rpc-tests/merkle_blocks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/merkle_blocks.py b/qa/rpc-tests/merkle_blocks.py index 08e5db45fa..94775f84ce 100755 --- a/qa/rpc-tests/merkle_blocks.py +++ b/qa/rpc-tests/merkle_blocks.py @@ -72,7 +72,7 @@ class MerkleBlockTest(BitcoinTestFramework): txid_spent = txin_spent["txid"] txid_unspent = txid1 if txin_spent["txid"] != txid1 else txid2 - # We cant find the block from a fully-spent tx + # We can't find the block from a fully-spent tx assert_raises(JSONRPCException, self.nodes[2].gettxoutproof, [txid_spent]) # ...but we can if we specify the block assert_equal(self.nodes[2].verifytxoutproof(self.nodes[2].gettxoutproof([txid_spent], blockhash)), [txid_spent]) |