Fix chainstate serialized_size computation

This commit is contained in:
Pieter Wuille 2015-10-21 23:23:59 +02:00 committed by Jack Grigg
parent 79272bfaf9
commit f95bf4c417
No known key found for this signature in database
GPG Key ID: 665DBCD284F7DAFF
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class BlockchainTest(BitcoinTestFramework):
assert_equal(res[u'transactions'], 200) assert_equal(res[u'transactions'], 200)
assert_equal(res[u'height'], 200) assert_equal(res[u'height'], 200)
assert_equal(res[u'txouts'], 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'bestblock']), 64)
assert_equal(len(res[u'hash_serialized']), 64) assert_equal(len(res[u'hash_serialized']), 64)

View File

@ -185,7 +185,7 @@ bool CCoinsViewDB::GetStats(CCoinsStats &stats) const {
nTotalAmount += out.nValue; nTotalAmount += out.nValue;
} }
} }
stats.nSerializedSize += 32 + pcursor->GetKeySize(); stats.nSerializedSize += 32 + pcursor->GetValueSize();
ss << VARINT(0); ss << VARINT(0);
} else { } else {
return error("CCoinsViewDB::GetStats() : unable to read value"); return error("CCoinsViewDB::GetStats() : unable to read value");