From d11c6e7151606da12265dfe1d3ef56b6e18ac958 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Tue, 10 May 2016 16:13:37 +0300 Subject: [PATCH] fix blockchain.py --- qa/rpc-tests/blockchain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/rpc-tests/blockchain.py b/qa/rpc-tests/blockchain.py index 61df75c273..99c72002e8 100755 --- a/qa/rpc-tests/blockchain.py +++ b/qa/rpc-tests/blockchain.py @@ -49,11 +49,11 @@ class BlockchainTest(BitcoinTestFramework): node = self.nodes[0] res = node.gettxoutsetinfo() - assert_equal(res[u'total_amount'], Decimal('98214.28571450')) + assert_equal(res[u'total_amount'], Decimal('98178.57142879')) assert_equal(res[u'transactions'], 200) assert_equal(res[u'height'], 200) assert_equal(res[u'txouts'], 200) - assert_equal(res[u'bytes_serialized'], 14273), + assert_equal(res[u'bytes_serialized'], 14277), assert_equal(len(res[u'bestblock']), 64) assert_equal(len(res[u'hash_serialized']), 64)