tsegwit: use 12 bits of seed prefix - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 5bf3b26476fc41a1a41e0d2d684779f873c2f2ad DIR parent 88bbaf0950a8d4ab9c29b1849d8c55a0affc1894 HTML Author: ThomasV <thomasv@electrum.org> Date: Sun, 27 Aug 2017 14:30:01 +0200 segwit: use 12 bits of seed prefix Diffstat: M lib/version.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- DIR diff --git a/lib/version.py b/lib/version.py t@@ -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):