Move BIP44 coin type to net constants.
This commit is contained in:
@@ -716,7 +716,7 @@ is_bip32_key = lambda x: is_xprv(x) or is_xpub(x)
|
||||
|
||||
|
||||
def bip44_derivation(account_id, bip43_purpose=44):
|
||||
coin = 1 if constants.net.TESTNET else 0
|
||||
coin = constants.net.BIP44_COIN_TYPE
|
||||
return "m/%d'/%d'/%d'" % (bip43_purpose, coin, int(account_id))
|
||||
|
||||
def from_seed(seed, passphrase, is_p2sh):
|
||||
|
||||
Reference in New Issue
Block a user