[qa] Add tests verifychain, lockunspent, getbalance, listsinceblock

This commit is contained in:
MarcoFalke
2016-03-06 18:30:51 +01:00
parent 14d6324a24
commit fa4a522541
4 changed files with 23 additions and 2 deletions

View File

@ -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]