Skip to content

Commit

Permalink
🐛 Fix scripthash in `get_atomicals_by_location_extended_info_long_f…
Browse files Browse the repository at this point in the history
…orm`
  • Loading branch information
AlexV525 committed Feb 29, 2024
1 parent 9f8503d commit f359ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrumx/server/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -1326,7 +1326,7 @@ def get_atomicals_by_location_extended_info_long_form(self, location):
'location': location_id_bytes_to_compact(location),
'txid': hash_to_hex_str(tx_hash),
'index': index,
'scripthash': hash_to_hex_str(last_scripthash),
'scripthash': last_scripthash,
'script': script.hex(),
'value': last_value
}
Expand Down

0 comments on commit f359ee5

Please sign in to comment.