Skip to content

Commit

Permalink
Merge pull request #2697 from CounterpartyXCP/preprelease
Browse files Browse the repository at this point in the history
Update compare hashes test
  • Loading branch information
ouziel-slama authored Nov 11, 2024
2 parents 3447d6d + c844562 commit ad16c8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions counterparty-core/counterpartycore/test/mainnet_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# [server_url, api_version, server_version]
CHECK_SERVERS = [
# ["http://rpc:[email protected]:4000", "v1", "v9.61.1"],
["https://api.counterparty.io:4000", "v2", "v10.6.0"],
["https://dev.counterparty.io:4000", "v2", "v10.6.0"],
["https://api.counterparty.io:4000", "v2", "v10.6.1"],
["https://dev.counterparty.io:4000", "v2", "v10.7.0"],
["https://api.counterparty.info", "v2", "v10.6.0"],
# ["http://rpc:[email protected]:4000", "v1", "v9.61.3"],
# ["https://api.xcp.dev/v9_61/", "xcpdev", "v9.61.3"],
Expand Down Expand Up @@ -172,7 +172,7 @@ def test_mainnet_api_db(skip):
f"{MAINNET_DB_DIR}counterparty.api.db", read_only=True, check_wal=False
)

api_sql = "SELECT * FROM balances ORDER BY random() LIMIT 10000"
api_sql = "SELECT * FROM balances WHERE address IS NOT NULL ORDER BY random() LIMIT 10000"
api_balances = api_db.execute(api_sql)
i = 0
for api_balance in api_balances:
Expand Down

0 comments on commit ad16c8d

Please sign in to comment.