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
862117e4
Commit
862117e4
authored
Jun 08, 2015
by
Bas van Kervel
Committed by
Bas van Kervel
Jun 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed send methods for backwards compatability in geth console
parent
a1a475fb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
2 deletions
+57
-2
js.go
cmd/geth/js.go
+1
-0
main.go
cmd/geth/main.go
+2
-2
jeth.go
rpc/jeth.go
+54
-0
No files found.
cmd/geth/js.go
View file @
862117e4
...
@@ -111,6 +111,7 @@ func (js *jsre) apiBindings(ipcpath string, f xeth.Frontend) {
...
@@ -111,6 +111,7 @@ func (js *jsre) apiBindings(ipcpath string, f xeth.Frontend) {
js
.
re
.
Set
(
"jeth"
,
struct
{}{})
js
.
re
.
Set
(
"jeth"
,
struct
{}{})
t
,
_
:=
js
.
re
.
Get
(
"jeth"
)
t
,
_
:=
js
.
re
.
Get
(
"jeth"
)
jethObj
:=
t
.
Object
()
jethObj
:=
t
.
Object
()
jethObj
.
Set
(
"send"
,
jeth
.
Send
)
jethObj
.
Set
(
"send"
,
jeth
.
Send
)
jethObj
.
Set
(
"sendAsync"
,
jeth
.
Send
)
jethObj
.
Set
(
"sendAsync"
,
jeth
.
Send
)
...
...
cmd/geth/main.go
View file @
862117e4
...
@@ -307,8 +307,8 @@ func console(ctx *cli.Context) {
...
@@ -307,8 +307,8 @@ func console(ctx *cli.Context) {
repl
:=
newJSRE
(
repl
:=
newJSRE
(
ethereum
,
ethereum
,
ctx
.
String
(
utils
.
JSpathFlag
.
Name
),
ctx
.
String
(
utils
.
JSpathFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
IPCPathFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
RPCCORSDomainFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
RPCCORSDomainFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
IPCPathFlag
.
Name
),
true
,
true
,
nil
,
nil
,
)
)
...
@@ -329,8 +329,8 @@ func execJSFiles(ctx *cli.Context) {
...
@@ -329,8 +329,8 @@ func execJSFiles(ctx *cli.Context) {
repl
:=
newJSRE
(
repl
:=
newJSRE
(
ethereum
,
ethereum
,
ctx
.
String
(
utils
.
JSpathFlag
.
Name
),
ctx
.
String
(
utils
.
JSpathFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
IPCPathFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
RPCCORSDomainFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
RPCCORSDomainFlag
.
Name
),
ctx
.
GlobalString
(
utils
.
IPCPathFlag
.
Name
),
false
,
false
,
nil
,
nil
,
)
)
...
...
rpc/jeth.go
View file @
862117e4
...
@@ -39,6 +39,60 @@ func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) {
...
@@ -39,6 +39,60 @@ func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) {
return
self
.
err
(
call
,
-
32700
,
err
.
Error
(),
nil
)
return
self
.
err
(
call
,
-
32700
,
err
.
Error
(),
nil
)
}
}
jsonreq
,
err
:=
json
.
Marshal
(
reqif
)
var
reqs
[]
RpcRequest
batch
:=
true
err
=
json
.
Unmarshal
(
jsonreq
,
&
reqs
)
if
err
!=
nil
{
reqs
=
make
([]
RpcRequest
,
1
)
err
=
json
.
Unmarshal
(
jsonreq
,
&
reqs
[
0
])
batch
=
false
}
call
.
Otto
.
Set
(
"response_len"
,
len
(
reqs
))
call
.
Otto
.
Run
(
"var ret_response = new Array(response_len);"
)
for
i
,
req
:=
range
reqs
{
var
respif
interface
{}
err
=
self
.
ethApi
.
GetRequestReply
(
&
req
,
&
respif
)
if
err
!=
nil
{
fmt
.
Println
(
"Error response:"
,
err
)
return
self
.
err
(
call
,
-
32603
,
err
.
Error
(),
req
.
Id
)
}
call
.
Otto
.
Set
(
"ret_jsonrpc"
,
jsonrpcver
)
call
.
Otto
.
Set
(
"ret_id"
,
req
.
Id
)
res
,
_
:=
json
.
Marshal
(
respif
)
call
.
Otto
.
Set
(
"ret_result"
,
string
(
res
))
call
.
Otto
.
Set
(
"response_idx"
,
i
)
response
,
err
=
call
.
Otto
.
Run
(
`
ret_response[response_idx] = { jsonrpc: ret_jsonrpc, id: ret_id, result: JSON.parse(ret_result) };
`
)
}
if
!
batch
{
call
.
Otto
.
Run
(
"ret_response = ret_response[0];"
)
}
if
call
.
Argument
(
1
)
.
IsObject
()
{
call
.
Otto
.
Set
(
"callback"
,
call
.
Argument
(
1
))
call
.
Otto
.
Run
(
`
if (Object.prototype.toString.call(callback) == '[object Function]') {
callback(null, ret_response);
}
`
)
}
return
}
func
(
self
*
Jeth
)
SendIpc
(
call
otto
.
FunctionCall
)
(
response
otto
.
Value
)
{
reqif
,
err
:=
call
.
Argument
(
0
)
.
Export
()
if
err
!=
nil
{
return
self
.
err
(
call
,
-
32700
,
err
.
Error
(),
nil
)
}
client
,
err
:=
comms
.
NewIpcClient
(
comms
.
IpcConfig
{
self
.
ipcpath
},
codec
.
JSON
)
client
,
err
:=
comms
.
NewIpcClient
(
comms
.
IpcConfig
{
self
.
ipcpath
},
codec
.
JSON
)
if
err
!=
nil
{
if
err
!=
nil
{
fmt
.
Println
(
"Unable to connect to geth."
)
fmt
.
Println
(
"Unable to connect to geth."
)
...
...
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