From dd556e738797669f1784ad0aa8e25d486317b063 Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Wed, 30 Oct 2024 16:28:40 +0100 Subject: [PATCH] fix(common): fetch definitions timestamp from signed branch of trezor/definitions --- common/tools/cointool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tools/cointool.py b/common/tools/cointool.py index 40a89baa01..b3358aa73a 100755 --- a/common/tools/cointool.py +++ b/common/tools/cointool.py @@ -22,7 +22,7 @@ DEFINITIONS_TIMESTAMP_PATH = ( coin_info.DEFS_DIR / "ethereum" / "released-definitions-timestamp.txt" ) DEFINITIONS_LATEST_URL = ( - "https://raw.githubusercontent.com/trezor/definitions/main/definitions-latest.json" + "https://raw.githubusercontent.com/trezor/definitions/signed/definitions-latest.json" ) HERE = Path(__file__).parent.resolve()