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
e4f9ec88
Commit
e4f9ec88
authored
Jun 18, 2015
by
Jeffrey Wilcke
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1267 from SilentCicero/develop
eth_sendRawTransaction JSON RPC
parents
8eaaf24b
1f34dacc
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
89 additions
and
0 deletions
+89
-0
api.go
rpc/api.go
+11
-0
eth.go
rpc/api/eth.go
+15
-0
eth_args.go
rpc/api/eth_args.go
+29
-0
utils.go
rpc/api/utils.go
+1
-0
args.go
rpc/args.go
+29
-0
xeth.go
xeth/xeth.go
+4
-0
No files found.
rpc/api.go
View file @
e4f9ec88
...
...
@@ -170,6 +170,17 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
}
*
reply
=
v
case
"eth_sendRawTransaction"
:
args
:=
new
(
NewDataArgs
)
if
err
:=
json
.
Unmarshal
(
req
.
Params
,
&
args
);
err
!=
nil
{
return
err
}
v
,
err
:=
api
.
xeth
()
.
PushTx
(
args
.
Data
)
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 @
e4f9ec88
...
...
@@ -46,6 +46,7 @@ var (
"eth_getData"
:
(
*
ethApi
)
.
GetData
,
"eth_getCode"
:
(
*
ethApi
)
.
GetData
,
"eth_sign"
:
(
*
ethApi
)
.
Sign
,
"eth_sendRawTransaction"
:
(
*
ethApi
)
.
PushTx
,
"eth_sendTransaction"
:
(
*
ethApi
)
.
SendTransaction
,
"eth_transact"
:
(
*
ethApi
)
.
SendTransaction
,
"eth_estimateGas"
:
(
*
ethApi
)
.
EstimateGas
,
...
...
@@ -247,6 +248,20 @@ func (self *ethApi) Sign(req *shared.Request) (interface{}, error) {
return
v
,
nil
}
func
(
self
*
ethApi
)
PushTx
(
req
*
shared
.
Request
)
(
interface
{},
error
)
{
args
:=
new
(
NewDataArgs
)
if
err
:=
self
.
codec
.
Decode
(
req
.
Params
,
&
args
);
err
!=
nil
{
return
nil
,
shared
.
NewDecodeParamError
(
err
.
Error
())
}
v
,
err
:=
self
.
xeth
.
PushTx
(
args
.
Data
)
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/eth_args.go
View file @
e4f9ec88
...
...
@@ -226,6 +226,35 @@ func (args *GetDataArgs) UnmarshalJSON(b []byte) (err error) {
return
nil
}
type
NewDataArgs
struct
{
Data
string
}
func
(
args
*
NewDataArgs
)
UnmarshalJSON
(
b
[]
byte
)
(
err
error
)
{
var
obj
[]
interface
{}
if
err
:=
json
.
Unmarshal
(
b
,
&
obj
);
err
!=
nil
{
return
shared
.
NewDecodeParamError
(
err
.
Error
())
}
// Check for sufficient params
if
len
(
obj
)
<
1
{
return
shared
.
NewInsufficientParamsError
(
len
(
obj
),
1
)
}
data
,
ok
:=
obj
[
0
]
.
(
string
)
if
!
ok
{
return
shared
.
NewInvalidTypeError
(
"data"
,
"not a string"
)
}
args
.
Data
=
data
if
len
(
args
.
Data
)
==
0
{
return
shared
.
NewValidationError
(
"data"
,
"is required"
)
}
return
nil
}
type
NewSigArgs
struct
{
From
string
Data
string
...
...
rpc/api/utils.go
View file @
e4f9ec88
...
...
@@ -51,6 +51,7 @@ var (
"getData"
,
"getCode"
,
"sign"
,
"sendRawTransaction"
,
"sendTransaction"
,
"transact"
,
"estimateGas"
,
...
...
rpc/args.go
View file @
e4f9ec88
...
...
@@ -154,6 +154,35 @@ func (args *GetBlockByNumberArgs) UnmarshalJSON(b []byte) (err error) {
return
nil
}
type
NewDataArgs
struct
{
Data
string
}
func
(
args
*
NewDataArgs
)
UnmarshalJSON
(
b
[]
byte
)
(
err
error
)
{
var
obj
[]
interface
{}
if
err
:=
json
.
Unmarshal
(
b
,
&
obj
);
err
!=
nil
{
return
NewDecodeParamError
(
err
.
Error
())
}
// Check for sufficient params
if
len
(
obj
)
<
1
{
return
NewInsufficientParamsError
(
len
(
obj
),
1
)
}
data
,
ok
:=
obj
[
0
]
.
(
string
)
if
!
ok
{
return
NewInvalidTypeError
(
"data"
,
"not a string"
)
}
args
.
Data
=
data
if
len
(
args
.
Data
)
==
0
{
return
NewValidationError
(
"data"
,
"is required"
)
}
return
nil
}
type
NewTxArgs
struct
{
From
string
To
string
...
...
xeth/xeth.go
View file @
e4f9ec88
...
...
@@ -803,8 +803,12 @@ func (self *XEth) PushTx(encodedTx string) (string, error) {
if
tx
.
To
()
==
nil
{
addr
:=
core
.
AddressFromMessage
(
tx
)
glog
.
V
(
logger
.
Info
)
.
Infof
(
"Tx(%x) created: %x
\n
"
,
tx
.
Hash
(),
addr
)
return
addr
.
Hex
(),
nil
}
else
{
glog
.
V
(
logger
.
Info
)
.
Infof
(
"Tx(%x) to: %x
\n
"
,
tx
.
Hash
(),
tx
.
To
())
}
return
tx
.
Hash
()
.
Hex
(),
nil
}
...
...
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