Only add 1 zaddr to a new wallet

This commit is contained in:
Cryptoforge 2020-09-13 11:09:48 -07:00
parent 7136a5cf5c
commit 2b2567b239

View File

@ -243,8 +243,8 @@ impl LightWallet {
// If restoring from seed, make sure we are creating 5 addresses for users
if seed_phrase.is_some() {
for _i in 0..5 {
lw.add_taddr();
for _i in 0..1 {
// lw.add_taddr();
lw.add_zaddr();
}
}