diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-12-02 18:12:23 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-01-13 20:31:03 +0100 |
commit | 7777994846cdb9b9cf69e391a33eeed30393bbcf (patch) | |
tree | 371953417d82780ca58a8cd7c8fe96e4c71fa216 /qa/rpc-tests/blockchain.py | |
parent | 17ef279304a94ec01a8525189b80c163d931b1cf (diff) |
[qa] Fix pyton syntax in rpc tests
Diffstat (limited to 'qa/rpc-tests/blockchain.py')
-rwxr-xr-x | qa/rpc-tests/blockchain.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/blockchain.py b/qa/rpc-tests/blockchain.py index 673f1cc545..eccb506e57 100755 --- a/qa/rpc-tests/blockchain.py +++ b/qa/rpc-tests/blockchain.py @@ -7,7 +7,7 @@ # Test RPC calls related to blockchain state. # -import decimal +from decimal import Decimal from test_framework.test_framework import BitcoinTestFramework from test_framework.util import ( @@ -39,7 +39,7 @@ class BlockchainTest(BitcoinTestFramework): node = self.nodes[0] res = node.gettxoutsetinfo() - assert_equal(res[u'total_amount'], decimal.Decimal('8725.00000000')) + assert_equal(res[u'total_amount'], Decimal('8725.00000000')) assert_equal(res[u'transactions'], 200) assert_equal(res[u'height'], 200) assert_equal(res[u'txouts'], 200) |