good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Erigon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
a
Erigon
Commits
437ceaa9
Unverified
Commit
437ceaa9
authored
7 years ago
by
Bas van Kervel
Browse files
Options
Downloads
Patches
Plain Diff
cmd/geth: reintroduce wallet import subcommand
parent
35569620
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmd/geth/accountcmd.go
+30
-15
30 additions, 15 deletions
cmd/geth/accountcmd.go
with
30 additions
and
15 deletions
cmd/geth/accountcmd.go
+
30
−
15
View file @
437ceaa9
...
...
@@ -31,25 +31,40 @@ import (
var
(
walletCommand
=
cli
.
Command
{
Name
:
"wallet"
,
Usage
:
"Import Ethereum presale wallets"
,
Action
:
utils
.
MigrateFlags
(
importWallet
),
Category
:
"ACCOUNT COMMANDS"
,
Flags
:
[]
cli
.
Flag
{
utils
.
DataDirFlag
,
utils
.
KeyStoreDirFlag
,
utils
.
PasswordFileFlag
,
utils
.
LightKDFFlag
,
},
Name
:
"wallet"
,
Usage
:
"Manage Ethereum presale wallets"
,
ArgsUsage
:
""
,
Category
:
"ACCOUNT COMMANDS"
,
Description
:
`
geth wallet [options] /path/to/my/presale.wallet
geth wallet import /path/to/my/presale.wallet
will prompt for your password and imports your ether presale account.
It can be used non-interactively with the --password option taking a
passwordfile as argument containing the wallet password in plaintext.`
,
Subcommands
:
[]
cli
.
Command
{
{
will prompt for your password and imports your ether presale account.
It can be used non-interactively with the --password option taking a
passwordfile as argument containing the wallet password in plaintext.
Name
:
"import"
,
Usage
:
"Import Ethereum presale wallet"
,
ArgsUsage
:
"<keyFile>"
,
Action
:
utils
.
MigrateFlags
(
importWallet
),
Category
:
"ACCOUNT COMMANDS"
,
Flags
:
[]
cli
.
Flag
{
utils
.
DataDirFlag
,
utils
.
KeyStoreDirFlag
,
utils
.
PasswordFileFlag
,
utils
.
LightKDFFlag
,
},
Description
:
`
geth wallet [options] /path/to/my/presale.wallet
`
,
will prompt for your password and imports your ether presale account.
It can be used non-interactively with the --password option taking a
passwordfile as argument containing the wallet password in plaintext.`
,
},
},
}
accountCommand
=
cli
.
Command
{
Name
:
"account"
,
Usage
:
"Manage accounts"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment