From 5bf3b26476fc41a1a41e0d2d684779f873c2f2ad Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 27 Aug 2017 14:30:01 +0200 Subject: [PATCH] segwit: use 12 bits of seed prefix --- lib/version.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/version.py b/lib/version.py index 47f501d46..fcfdb8ece 100644 --- a/lib/version.py +++ b/lib/version.py @@ -2,9 +2,9 @@ ELECTRUM_VERSION = '2.10.0' # version of the client package PROTOCOL_VERSION = '0.10' # protocol version requested # The hash of the mnemonic seed must begin with this -SEED_PREFIX = '01' # Electrum standard wallet -SEED_PREFIX_SW = '02' # Electrum segwit wallet -SEED_PREFIX_2FA = '101' # extended seed for two-factor authentication +SEED_PREFIX = '01' # Standard wallet +SEED_PREFIX_2FA = '101' # Two-factor authentication +SEED_PREFIX_SW = '100' # Segwit wallet def seed_prefix(seed_type):