From 764e3c8d752d14ad92af6154c814c5cd2823f234 Mon Sep 17 00:00:00 2001 From: David Misiak Date: Fri, 10 Feb 2023 09:06:30 +0100 Subject: [PATCH] fix(cardano): update cvote bech32 prefix --- core/src/apps/cardano/helpers/bech32.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/apps/cardano/helpers/bech32.py b/core/src/apps/cardano/helpers/bech32.py index d2e088d3c8..95d93cb289 100644 --- a/core/src/apps/cardano/helpers/bech32.py +++ b/core/src/apps/cardano/helpers/bech32.py @@ -7,7 +7,7 @@ HRP_ADDRESS = "addr" HRP_TESTNET_ADDRESS = "addr_test" HRP_REWARD_ADDRESS = "stake" HRP_TESTNET_REWARD_ADDRESS = "stake_test" -HRP_GOVERNANCE_PUBLIC_KEY = "gov_vk" +HRP_GOVERNANCE_PUBLIC_KEY = "cvote_vk" HRP_SCRIPT_HASH = "script" HRP_KEY_HASH = "addr_vkh" HRP_SHARED_KEY_HASH = "addr_shared_vkh"