Skip to content

Commit

Permalink
Merge branch 'develop' into composer
Browse files Browse the repository at this point in the history
  • Loading branch information
Ouziel committed Dec 31, 2024
2 parents 44a6c2b + 3598fff commit 15ff5ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion counterparty-core/counterpartycore/lib/api/api_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@ def execute_api_function(rule, route, function_args):
result = route["function"](**function_args)
# don't cache API v1 and mempool queries
if (
is_cachable(rule)
result is not None
and is_cachable(rule)
and route["function"].__name__ != "redirect_to_api_v1"
and not request.path.startswith("/v2/mempool/")
):
Expand Down
1 change: 1 addition & 0 deletions release-notes/release-notes-v10.9.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
- Fix query to fill `issuances.asset_events` field
- Fix `assets_info.supply` field
- Fix `verbose=True` when `give_asset` or `get_asset` contain an `asset_longname`
- Don't put null values in API cache

## Codebase

Expand Down

0 comments on commit 15ff5ac

Please sign in to comment.