aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/packages.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-29 01:36:41 +0800
committerobscuren <geffobscura@gmail.com>2015-01-29 01:36:41 +0800
commit1c51e12c181fb781cafaf34fc8dd2cb07fd85df7 (patch)
tree38465edc586ae8080018f37efa8657c7dfeab6af /rpc/packages.go
parent45e15f62f594d6f5191e60a54aead33602838e98 (diff)
parent872b2497114209119becf2e8a4d4a5818e2084ee (diff)
downloadgo-tangerine-1c51e12c181fb781cafaf34fc8dd2cb07fd85df7.tar
go-tangerine-1c51e12c181fb781cafaf34fc8dd2cb07fd85df7.tar.gz
go-tangerine-1c51e12c181fb781cafaf34fc8dd2cb07fd85df7.tar.bz2
go-tangerine-1c51e12c181fb781cafaf34fc8dd2cb07fd85df7.tar.lz
go-tangerine-1c51e12c181fb781cafaf34fc8dd2cb07fd85df7.tar.xz
go-tangerine-1c51e12c181fb781cafaf34fc8dd2cb07fd85df7.tar.zst
go-tangerine-1c51e12c181fb781cafaf34fc8dd2cb07fd85df7.zip
Merge branch 'jsonrpc' into qt5.4
Diffstat (limited to 'rpc/packages.go')
-rw-r--r--rpc/packages.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/rpc/packages.go b/rpc/packages.go
index e6d4859d2..700b9b2b3 100644
--- a/rpc/packages.go
+++ b/rpc/packages.go
@@ -19,8 +19,8 @@
For each request type, define the following:
1. RpcRequest "To" method [message.go], which does basic validation and conversion to "Args" type via json.Decoder()
-2. json.Decoder() calls "UnmarshalJSON" defined on each "Args" struct
-3. EthereumApi method, taking the "Args" type and replying with an interface to be marshalled to JSON
+2. json.Decoder() calls "UnmarshalON" defined on each "Args" struct
+3. EthereumApi method, taking the "Args" type and replying with an interface to be marshalled to ON
*/
package rpc
@@ -38,12 +38,12 @@ type RpcServer interface {
Stop()
}
-func NewEthereumApi(xeth *xeth.JSXEth) *EthereumApi {
+func NewEthereumApi(xeth *xeth.XEth) *EthereumApi {
return &EthereumApi{xeth: xeth}
}
type EthereumApi struct {
- xeth *xeth.JSXEth
+ xeth *xeth.XEth
}
func (p *EthereumApi) GetBlock(args *GetBlockArgs, reply *interface{}) error {
@@ -162,7 +162,7 @@ func (p *EthereumApi) GetCodeAt(args *GetCodeAtArgs, reply *interface{}) error {
}
func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error {
- // Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC
+ // Spec at https://github.com/ethereum/wiki/wiki/Generic-ON-RPC
rpclogger.DebugDetailf("%T %s", req.Params, req.Params)
switch req.Method {
case "eth_coinbase":