diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-03-18 12:18:38 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-03-18 12:23:55 +0100 |
commit | 29e1131c4642459349a0ed4737121fb1902f8a47 (patch) | |
tree | 83be1d3fb1c278bae9149fa4428c2322c6bf0971 /qa/rpc-tests/blockchain.py | |
parent | efde86b4aae6cb58c9086c668853fcb8a6dac756 (diff) | |
parent | fa4a52254178655f50e73b50153730a60ffafd32 (diff) |
Merge #7702: [qa] Add tests verifychain, lockunspent, getbalance, listsinceblock
fa4a522 [qa] Add tests verifychain, lockunspent, getbalance, listsinceblock (MarcoFalke)
Diffstat (limited to 'qa/rpc-tests/blockchain.py')
-rwxr-xr-x | qa/rpc-tests/blockchain.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qa/rpc-tests/blockchain.py b/qa/rpc-tests/blockchain.py index 7045ae435c..272a5dc154 100755 --- a/qa/rpc-tests/blockchain.py +++ b/qa/rpc-tests/blockchain.py @@ -28,6 +28,7 @@ class BlockchainTest(BitcoinTestFramework): Test blockchain-related RPC calls: - gettxoutsetinfo + - verifychain """ @@ -44,6 +45,7 @@ class BlockchainTest(BitcoinTestFramework): def run_test(self): self._test_gettxoutsetinfo() self._test_getblockheader() + self.nodes[0].verifychain(4, 0) def _test_gettxoutsetinfo(self): node = self.nodes[0] |