[qa] Fix compact block shortids for a test case

Github-Pull: #8904
Rebased-From: 4cdece4041
This commit is contained in:
Dagur Valberg Johannsson 2016-10-09 15:47:55 -04:00 committed by Wladimir J. van der Laan
parent 4bb9ce8a95
commit cc6f55191a
1 changed files with 3 additions and 1 deletions

View File

@ -402,7 +402,9 @@ class CompactBlocksTest(BitcoinTestFramework):
comp_block = HeaderAndShortIDs()
comp_block.header = CBlockHeader(block)
comp_block.nonce = 0
comp_block.shortids = [1] # this is useless, and wrong
[k0, k1] = comp_block.get_siphash_keys()
comp_block.shortids = [
calculate_shortid(k0, k1, block.vtx[0].sha256) ]
test_node.send_and_ping(msg_cmpctblock(comp_block.to_p2p()))
assert_equal(int(node.getbestblockhash(), 16), block.hashPrevBlock)
# Expect a getblocktxn message.