Skip to content

Commit

Permalink
MAIN-24 generalizing collection name
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoRuzzier committed Jan 13, 2025
1 parent 6420a80 commit 4773e79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/updateABI/listABICosmos.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

old_abi = sys.argv[1]

queryText = "SELECT * FROM bundles b WHERE b.abi = @abi"
queryText = "SELECT * FROM collection b WHERE b.abi = @abi"

results = container.query_items(
query=queryText,
Expand Down
2 changes: 1 addition & 1 deletion scripts/updateABI/updateABICosmos.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
old_abi = sys.argv[1]
new_abi = sys.argv[2]

queryText = "SELECT * FROM bundles b WHERE b.abi = @abi"
queryText = "SELECT * FROM collection b WHERE b.abi = @abi"

results = container.query_items(
query=queryText,
Expand Down

0 comments on commit 4773e79

Please sign in to comment.