aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/blockchain.py
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2016-03-06 18:30:51 +0100
committerMarcoFalke <[email protected]>2016-03-17 11:21:34 +0100
commitfa4a52254178655f50e73b50153730a60ffafd32 (patch)
treeb455dfb2b8538640c870ee9c2d5c75be1e2cefb6 /qa/rpc-tests/blockchain.py
parentMerge #7187: Keep reorgs fast for SequenceLocks checks (diff)
downloaddiscoin-fa4a52254178655f50e73b50153730a60ffafd32.tar.xz
discoin-fa4a52254178655f50e73b50153730a60ffafd32.zip
[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 7045ae435..272a5dc15 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]