Post
Topic
Board Electrum
Merits 7 from 4 users
Re: How to use a 24 words seed phrase in Electrum Android Version?
by
hosseinimr93
on 03/01/2025, 15:01:00 UTC
⭐ Merited by hugeblack (4) ,khaled0111 (1) ,nc50lc (1) ,BitMaxz (1)
whats the difference between make_seed(nbits=256) and make_seed(256)
There is no difference.
In make_seed(nbits=x), you specify the number of bits using a keyword argumant and in make_seed(256), you specify the number of bits using a positional argument.


should we do seed = make_seed(nbits=128, language='english', type='segwit')
nbits, language and type are all optional arguments and you don't have to pass them to the make_seed function.