Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
5b30aa59
Commit
5b30aa59
authored
Apr 08, 2019
by
Guillaume Ballet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Can now specify the number of empty accounts to derive
parent
6f21520a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
wallet.go
accounts/scwallet/wallet.go
+10
-7
No files found.
accounts/scwallet/wallet.go
View file @
5b30aa59
...
...
@@ -390,7 +390,7 @@ func (w *Wallet) Open(passphrase string) error {
w
.
deriveReq
=
make
(
chan
chan
struct
{})
w
.
deriveQuit
=
make
(
chan
chan
error
)
go
w
.
selfDerive
()
go
w
.
selfDerive
(
0
)
// Notify anyone listening for wallet events that a new device is accessible
go
w
.
Hub
.
updateFeed
.
Send
(
accounts
.
WalletEvent
{
Wallet
:
w
,
Kind
:
accounts
.
WalletOpened
})
...
...
@@ -426,8 +426,9 @@ func (w *Wallet) Close() error {
}
// selfDerive is an account derivation loop that upon request attempts to find
// new non-zero accounts.
func
(
w
*
Wallet
)
selfDerive
()
{
// new non-zero accounts. maxEmpty specifies the number of empty accounts that
// should be derived once an initial empty account has been found.
func
(
w
*
Wallet
)
selfDerive
(
maxEmpty
int
)
{
w
.
log
.
Debug
(
"Smart card wallet self-derivation started"
)
defer
w
.
log
.
Debug
(
"Smart card wallet self-derivation stopped"
)
...
...
@@ -465,7 +466,7 @@ func (w *Wallet) selfDerive() {
context
=
context
.
Background
()
)
for
empty
:=
false
;
!
empty
;
{
for
empty
,
emptyCount
:=
false
,
maxEmpty
+
1
;
!
empty
||
emptyCount
>
0
;
{
// Retrieve the next derived Ethereum account
if
nextAddr
==
(
common
.
Address
{})
{
if
nextAcc
,
err
=
w
.
session
.
derive
(
nextPath
);
err
!=
nil
{
...
...
@@ -489,9 +490,11 @@ func (w *Wallet) selfDerive() {
w
.
log
.
Warn
(
"Smartcard wallet nonce retrieval failed"
,
"err"
,
err
)
break
}
// If the next account is empty, stop self-derivation, but add it nonetheless
// If the next account is empty and no more empty accounts are
// allowed, stop self-derivation. Add the current one nonetheless.
if
balance
.
Sign
()
==
0
&&
nonce
==
0
{
empty
=
true
emptyCount
--
}
// We've just self-derived a new account, start tracking it locally
path
:=
make
(
accounts
.
DerivationPath
,
len
(
nextPath
))
...
...
@@ -505,7 +508,7 @@ func (w *Wallet) selfDerive() {
pairing
.
Accounts
[
nextAddr
]
=
path
// Fetch the next potential account
if
!
empty
{
if
!
empty
||
emptyCount
>
0
{
nextAddr
=
common
.
Address
{}
nextPath
[
len
(
nextPath
)
-
1
]
++
}
...
...
@@ -589,7 +592,7 @@ func (w *Wallet) Contains(account accounts.Account) bool {
// Initialize installs a keypair generated from the provided key into the wallet.
func
(
w
*
Wallet
)
Initialize
(
seed
[]
byte
)
error
{
go
w
.
selfDerive
()
go
w
.
selfDerive
(
0
)
// DO NOT lock at this stage, as the initialize
// function relies on Status()
return
w
.
session
.
initialize
(
seed
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment