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
a900e80a
Commit
a900e80a
authored
Jun 16, 2018
by
Péter Szilágyi
Committed by
Guillaume Ballet
Apr 08, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
accounts/scwallet: fix crypto API change
parent
7d5886dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
wallet.go
accounts/scwallet/wallet.go
+5
-1
No files found.
accounts/scwallet/wallet.go
View file @
a900e80a
...
...
@@ -907,7 +907,11 @@ func (s *Session) derive(path accounts.DerivationPath) (accounts.Account, error)
return
accounts
.
Account
{},
err
}
}
return
s
.
Wallet
.
makeAccount
(
crypto
.
PubkeyToAddress
(
*
crypto
.
ToECDSAPub
(
pubkey
)),
path
),
nil
pub
,
err
:=
crypto
.
UnmarshalPubkey
(
pubkey
)
if
err
!=
nil
{
return
accounts
.
Account
{},
err
}
return
s
.
Wallet
.
makeAccount
(
crypto
.
PubkeyToAddress
(
*
pub
),
path
),
nil
}
// keyDerivationInfo contains information on the current key derivation step.
...
...
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