mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-18 07:48:46 +00:00
e0d11ff1d2
* Implement derived wallet recover * Fix log * Fix tests * Comments * Merge branch 'master' of github.com:prysmaticlabs/prysm into derived-recover * Remove log * Comments * Fix fatal * add comment * Merge refs/heads/master into derived-recover * Merge refs/heads/master into derived-recover * Merge refs/heads/master into derived-recover * Merge refs/heads/master into derived-recover
14 lines
524 B
Go
14 lines
524 B
Go
package v2
|
|
|
|
const (
|
|
walletDirName = "wallet"
|
|
passwordDirName = "walletpasswords"
|
|
exportDirName = "export"
|
|
importDirName = "import"
|
|
importPasswordDirName = "importpasswords"
|
|
passwordFileName = "password.txt"
|
|
password = "OhWOWthisisatest42!$"
|
|
mnemonicFileName = "mnemonic.txt"
|
|
mnemonic = "garage car helmet trade salmon embrace market giant movie wet same champion dawn chair shield drill amazing panther accident puzzle garden mosquito kind arena"
|
|
)
|