mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-19 13:26:47 +00:00

* Add NewFileFromMnemonics * Export InternalKeychain and ExternalKeychain * Rename NewFileFromMnemonics -> NewFileFromMnemonic * NewFileFromMnemonic: change also argument name * Use libkaspawallet.ExternalKeychain instead of externalKeychain
9 lines
213 B
Go
9 lines
213 B
Go
package libkaspawallet
|
|
|
|
const (
|
|
// ExternalKeychain is the key chain that is used to create receive addresses
|
|
ExternalKeychain = 0
|
|
// InternalKeychain is used to create change addresses
|
|
InternalKeychain = 1
|
|
)
|