Skip to content

Commit

Permalink
Merge pull request #88 from ton-studio/hotfix/nft_sales_field
Browse files Browse the repository at this point in the history
Fix for wrong field in nft_sales exporter
  • Loading branch information
shuva10v authored Feb 3, 2025
2 parents 6f998aa + 2aeb979 commit 851a3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datalake/converters/nft_sales.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def convert(self, obj, table_name=None):
"address": obj['address'],
"type": "sale",
"nft_address": obj['nft_address'],
"nft_owner_address": obj['nft_address'],
"nft_owner_address": obj['nft_owner_address'],
"created_at": obj['created_at'],
"is_complete": obj['is_complete'],
"is_canceled": False,
Expand Down

0 comments on commit 851a3ed

Please sign in to comment.