Browse Source

Fix a test

metaverse
Jonathan "Duke" Leto 6 years ago
parent
commit
df09c378ca
  1. 2
      qa/rpc-tests/cryptoconditions.py

2
qa/rpc-tests/cryptoconditions.py

@ -68,7 +68,7 @@ class CryptoConditionsTest (BitcoinTestFramework):
# basic sanity tests
result = rpc.getwalletinfo()
assert_equal(result['txcount'], 101)
assert_greater_than(result['txcount'], 100)
assert_greater_than(result['balance'], 0.0)
balance = result['balance']

Loading…
Cancel
Save