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
a487396b
Commit
a487396b
authored
May 08, 2015
by
Daniel A. Nagy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eth_sign added to API for signing arbitrary data.
parent
e94aa421
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
api.go
rpc/api.go
+1
-1
xeth.go
xeth/xeth.go
+7
-7
No files found.
rpc/api.go
View file @
a487396b
...
...
@@ -163,7 +163,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
if
err
:=
json
.
Unmarshal
(
req
.
Params
,
&
args
);
err
!=
nil
{
return
err
}
v
,
err
:=
api
.
xeth
.
Sign
(
args
.
From
,
args
.
Data
)
v
,
err
:=
api
.
xeth
()
.
Sign
(
args
.
From
,
args
.
Data
,
false
)
if
err
!=
nil
{
return
err
}
...
...
xeth/xeth.go
View file @
a487396b
...
...
@@ -813,25 +813,25 @@ func (self *XEth) ConfirmTransaction(tx string) bool {
return
self
.
frontend
.
ConfirmTransaction
(
tx
)
}
func
(
self
*
XEth
)
Sign
(
fromStr
,
hashStr
string
)
(
string
,
error
)
{
func
(
self
*
XEth
)
Sign
(
fromStr
,
hashStr
string
,
didUnlock
bool
)
(
string
,
error
)
{
var
(
from
=
common
.
HexToAddress
(
fromStr
)
hash
=
common
.
HexToHash
(
hashStr
)
)
sig
,
err
:=
self
.
backend
.
AccountManager
()
.
Sign
(
accounts
.
Account
{
Address
:
from
.
Bytes
()},
hash
)
sig
,
err
:=
self
.
backend
.
AccountManager
()
.
Sign
(
accounts
.
Account
{
Address
:
from
.
Bytes
()},
hash
.
Bytes
()
)
if
err
==
accounts
.
ErrLocked
{
if
didUnlock
{
return
fmt
.
Errorf
(
"signer account still locked after successful unlock"
)
return
""
,
fmt
.
Errorf
(
"signer account still locked after successful unlock"
)
}
if
!
self
.
frontend
.
UnlockAccount
(
from
.
Bytes
())
{
return
fmt
.
Errorf
(
"could not unlock signer account"
)
return
""
,
fmt
.
Errorf
(
"could not unlock signer account"
)
}
// retry signing, the account should now be unlocked.
return
self
.
Sign
(
fromStr
,
hashStr
)
return
self
.
Sign
(
fromStr
,
hashStr
,
true
)
}
else
if
err
!=
nil
{
return
err
return
""
,
err
}
return
common
.
toHex
(
sig
)
return
common
.
ToHex
(
sig
),
nil
}
func
(
self
*
XEth
)
Transact
(
fromStr
,
toStr
,
nonceStr
,
valueStr
,
gasStr
,
gasPriceStr
,
codeStr
string
)
(
string
,
error
)
{
...
...
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