aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2015-10-21 23:23:59 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2015-10-28 01:05:32 +0100
commit298e040bca0aad62b616a1d3e66e1e44d2b9bd3a (patch)
tree4057b56ca2f37870d9897beb978fc127bf236d13 /qa
parent8f3b3cdee497b8a1d7c6a7279e7bb13435527b60 (diff)
downloadbitcoin-298e040bca0aad62b616a1d3e66e1e44d2b9bd3a.tar.xz
Fix chainstate serialized_size computation
Diffstat (limited to 'qa')
-rwxr-xr-xqa/rpc-tests/blockchain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/blockchain.py b/qa/rpc-tests/blockchain.py
index a5c98b777e..b7bfe36285 100755
--- a/qa/rpc-tests/blockchain.py
+++ b/qa/rpc-tests/blockchain.py
@@ -43,7 +43,7 @@ class BlockchainTest(BitcoinTestFramework):
assert_equal(res[u'transactions'], 200)
assert_equal(res[u'height'], 200)
assert_equal(res[u'txouts'], 200)
- assert_equal(res[u'bytes_serialized'], 13000),
+ assert_equal(res[u'bytes_serialized'], 13924),
assert_equal(len(res[u'bestblock']), 64)
assert_equal(len(res[u'hash_serialized']), 64)