diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-03-06 18:30:51 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-03-17 11:21:34 +0100 |
commit | fa4a52254178655f50e73b50153730a60ffafd32 (patch) | |
tree | b455dfb2b8538640c870ee9c2d5c75be1e2cefb6 /qa/rpc-tests/blockchain.py | |
parent | 14d6324a248df50cb79fbeb5b60a978687a3b64e (diff) |
[qa] Add tests verifychain, lockunspent, getbalance, listsinceblock
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] |