From 1067f10e5e80752baff7167925f43cb2e99651a3 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 7 Mar 2016 06:11:45 +0100 Subject: [PATCH] fix #1704 --- plugins/trustedcoin/trustedcoin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py index 053cc4dd6..3bbe48eba 100644 --- a/plugins/trustedcoin/trustedcoin.py +++ b/plugins/trustedcoin/trustedcoin.py @@ -387,7 +387,7 @@ class TrustedCoinPlugin(BasePlugin): words = seed.split() n = len(words)/2 wallet.add_xprv_from_seed(' '.join(words[0:n]), 'x1/', password) - wallet.add_xpub_from_seed(' '.join(words[n:]), 'x2/') + wallet.add_xpv_from_seed(' '.join(words[n:]), 'x2/', password) restore_third_key(wallet) wallet.create_main_account()