aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/blockchain.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-03-06 18:30:51 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-03-17 11:21:34 +0100
commitfa4a52254178655f50e73b50153730a60ffafd32 (patch)
treeb455dfb2b8538640c870ee9c2d5c75be1e2cefb6 /qa/rpc-tests/blockchain.py
parent14d6324a248df50cb79fbeb5b60a978687a3b64e (diff)
downloadbitcoin-fa4a52254178655f50e73b50153730a60ffafd32.tar.xz
[qa] Add tests verifychain, lockunspent, getbalance, listsinceblock
Diffstat (limited to 'qa/rpc-tests/blockchain.py')
-rwxr-xr-xqa/rpc-tests/blockchain.py2
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]