From c636c233ad8e70865c93d1b167b6b31180245ae2 Mon Sep 17 00:00:00 2001 From: z2453564902 <2453564902@qq.com> Date: Wed, 16 Jun 2021 11:26:54 +0800 Subject: [PATCH] update bech32 prefix for `gx` --- app/prefix.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/prefix.go b/app/prefix.go index 27b55d017..5c82a89eb 100644 --- a/app/prefix.go +++ b/app/prefix.go @@ -6,17 +6,17 @@ import ( const ( // Bech32PrefixAccAddr defines the Bech32 prefix of an account's address - Bech32PrefixAccAddr = "plug" + Bech32PrefixAccAddr = "gx" // Bech32PrefixAccPub defines the Bech32 prefix of an account's public key - Bech32PrefixAccPub = "plugpub" + Bech32PrefixAccPub = "gxpub" // Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address - Bech32PrefixValAddr = "plugvaloper" + Bech32PrefixValAddr = "gxvaloper" // Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key - Bech32PrefixValPub = "plugvaloperpub" + Bech32PrefixValPub = "gxvaloperpub" // Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address - Bech32PrefixConsAddr = "plugvalcons" + Bech32PrefixConsAddr = "gxvalcons" // Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key - Bech32PrefixConsPub = "plugvalconspub" + Bech32PrefixConsPub = "gxvalconspub" ) func init() {