We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a20bba commit 3f2ba37Copy full SHA for 3f2ba37
indexer_app/utils.py
@@ -2136,7 +2136,7 @@ def handle_new_stellar_list_registration(
2136
parent_list = List.objects.get(on_chain_id=data["list_id"], chain=chain)
2137
try:
2138
project = Account.objects.get_or_create(
2139
- {"chain": chain, "id": data["registrant_id"]}
+ defaults={"chain": chain}, id=data["registrant_id"]
2140
)
2141
except Exception as e:
2142
logger.error(f"Encountered error trying to get create acct: {e}")
0 commit comments