deterministic wallet use of twelve words fixed

This commit is contained in:
warptangent 2014-11-07 14:02:39 -08:00
parent 21a3c46a1b
commit 2e11eb1504

View file

@ -255,7 +255,7 @@ namespace crypto
std::string wlist_copy = words;
if (seed.size() == seed_length/2)
{
memcpy(dst.data, dst.data + 16, 16); // if electrum 12-word seed, duplicate
memcpy(dst.data+16, dst.data, 16); // if electrum 12-word seed, duplicate
wlist_copy += ' ';
wlist_copy += words;
}