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
f9a0a13f
Commit
f9a0a13f
authored
Jun 14, 2015
by
SilentCicero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eth_pushTx send raw signed encoded TX data to the chain through RPC
parent
6f5c6150
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
0 deletions
+33
-0
api.go
rpc/api.go
+11
-0
eth.go
rpc/api/eth.go
+21
-0
utils.go
rpc/api/utils.go
+1
-0
No files found.
rpc/api.go
View file @
f9a0a13f
...
...
@@ -170,6 +170,17 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
}
*
reply
=
v
case
"eth_pushTx"
:
args
:=
new
(
NewSigArgs
)
if
err
:=
json
.
Unmarshal
(
req
.
Params
,
&
args
);
err
!=
nil
{
return
err
}
v
,
err
:=
api
.
xeth
()
.
PushTx
(
args
.
encodedTx
)
if
err
!=
nil
{
return
err
}
*
reply
=
v
case
"eth_sendTransaction"
,
"eth_transact"
:
args
:=
new
(
NewTxArgs
)
if
err
:=
json
.
Unmarshal
(
req
.
Params
,
&
args
);
err
!=
nil
{
...
...
rpc/api/eth.go
View file @
f9a0a13f
...
...
@@ -46,6 +46,7 @@ var (
"eth_getData"
:
(
*
ethApi
)
.
GetData
,
"eth_getCode"
:
(
*
ethApi
)
.
GetData
,
"eth_sign"
:
(
*
ethApi
)
.
Sign
,
"eth_pushTx"
:
(
*
ethApi
)
.
PushTx
,
"eth_sendTransaction"
:
(
*
ethApi
)
.
SendTransaction
,
"eth_transact"
:
(
*
ethApi
)
.
SendTransaction
,
"eth_estimateGas"
:
(
*
ethApi
)
.
EstimateGas
,
...
...
@@ -247,6 +248,26 @@ func (self *ethApi) Sign(req *shared.Request) (interface{}, error) {
return
v
,
nil
}
func
(
self
*
ethApi
)
PushTx
(
req
*
shared
.
Request
)
(
interface
{},
error
)
{
args
:=
new
(
NewTxArgs
)
if
err
:=
self
.
codec
.
Decode
(
req
.
Params
,
&
args
);
err
!=
nil
{
return
nil
,
shared
.
NewDecodeParamError
(
err
.
Error
())
}
// nonce may be nil ("guess" mode)
var
nonce
string
if
args
.
Nonce
!=
nil
{
nonce
=
args
.
Nonce
.
String
()
}
v
,
err
:=
self
.
xeth
.
PushTx
(
args
.
encodedTx
)
if
err
!=
nil
{
return
nil
,
err
}
return
v
,
nil
}
func
(
self
*
ethApi
)
SendTransaction
(
req
*
shared
.
Request
)
(
interface
{},
error
)
{
args
:=
new
(
NewTxArgs
)
if
err
:=
self
.
codec
.
Decode
(
req
.
Params
,
&
args
);
err
!=
nil
{
...
...
rpc/api/utils.go
View file @
f9a0a13f
...
...
@@ -51,6 +51,7 @@ var (
"getData"
,
"getCode"
,
"sign"
,
"pushTx"
,
"sendTransaction"
,
"transact"
,
"estimateGas"
,
...
...
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