1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

common: update coins_details.json

This commit is contained in:
Pavol Rusnak 2019-08-31 23:43:17 +02:00
parent a540a3f15b
commit 68d2e4c075
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 795 additions and 684 deletions

File diff suppressed because it is too large Load Diff

View File

@ -422,6 +422,7 @@ def main(refresh, api_key, verbose):
print(json.dumps(info, sort_keys=True, indent=4)) print(json.dumps(info, sort_keys=True, indent=4))
with open(os.path.join(coin_info.DEFS_DIR, "coins_details.json"), "w") as f: with open(os.path.join(coin_info.DEFS_DIR, "coins_details.json"), "w") as f:
json.dump(details, f, sort_keys=True, indent=4) json.dump(details, f, sort_keys=True, indent=4)
f.write("\n")
if __name__ == "__main__": if __name__ == "__main__":