aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-27 05:27:06 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-27 05:27:06 +0800
commit7eed7e1d965ed7194ca42e4637754b63fb4502a5 (patch)
tree4cff83e774f4ccdd0c321504784c862b53288582 /rpc
parent2c5a32ebbc60f23e609c8397dad5d09ee38b69bb (diff)
parent49a912ce33274f60659ddb3af7e3fec89ee1b59e (diff)
downloaddexon-7eed7e1d965ed7194ca42e4637754b63fb4502a5.tar
dexon-7eed7e1d965ed7194ca42e4637754b63fb4502a5.tar.gz
dexon-7eed7e1d965ed7194ca42e4637754b63fb4502a5.tar.bz2
dexon-7eed7e1d965ed7194ca42e4637754b63fb4502a5.tar.lz
dexon-7eed7e1d965ed7194ca42e4637754b63fb4502a5.tar.xz
dexon-7eed7e1d965ed7194ca42e4637754b63fb4502a5.tar.zst
dexon-7eed7e1d965ed7194ca42e4637754b63fb4502a5.zip
Merge branch 'rpcargs' of github.com:tgerring/go-ethereum into rpcargs
Diffstat (limited to 'rpc')
-rw-r--r--rpc/api.go2
-rw-r--r--rpc/args.go8
-rw-r--r--rpc/args_test.go4
3 files changed, 7 insertions, 7 deletions
diff --git a/rpc/api.go b/rpc/api.go
index 339de4432..cdd95c888 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -212,7 +212,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
args := new(HashIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
}
- tx := api.xeth().EthTransactionByHash(args.Hash.Hex())
+ tx := api.xeth().EthTransactionByHash(args.Hash)
if tx != nil {
*reply = NewTransactionRes(tx)
}
diff --git a/rpc/args.go b/rpc/args.go
index 3637aff66..19258263c 100644
--- a/rpc/args.go
+++ b/rpc/args.go
@@ -61,7 +61,7 @@ func numString(raw interface{}, number *int64) error {
}
type GetBlockByHashArgs struct {
- BlockHash common.Hash
+ BlockHash string
IncludeTxs bool
}
@@ -80,7 +80,7 @@ func (args *GetBlockByHashArgs) UnmarshalJSON(b []byte) (err error) {
if !ok {
return NewInvalidTypeError("blockHash", "not a string")
}
- args.BlockHash = common.HexToHash(argstr)
+ args.BlockHash = argstr
if len(obj) > 1 {
args.IncludeTxs = obj[1].(bool)
@@ -360,7 +360,7 @@ func (args *BlockNumIndexArgs) UnmarshalJSON(b []byte) (err error) {
}
type HashIndexArgs struct {
- Hash common.Hash
+ Hash string
Index int64
}
@@ -379,7 +379,7 @@ func (args *HashIndexArgs) UnmarshalJSON(b []byte) (err error) {
if !ok {
return NewInvalidTypeError("hash", "not a string")
}
- args.Hash = common.HexToHash(arg0)
+ args.Hash = arg0
if len(obj) > 1 {
arg1, ok := obj[1].(string)
diff --git a/rpc/args_test.go b/rpc/args_test.go
index da98071e9..71f1a7058 100644
--- a/rpc/args_test.go
+++ b/rpc/args_test.go
@@ -191,7 +191,7 @@ func TestGetBalanceArgsAddressInvalid(t *testing.T) {
func TestGetBlockByHashArgs(t *testing.T) {
input := `["0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331", true]`
expected := new(GetBlockByHashArgs)
- expected.BlockHash = common.HexToHash("0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331")
+ expected.BlockHash = "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
expected.IncludeTxs = true
args := new(GetBlockByHashArgs)
@@ -1444,7 +1444,7 @@ func TestBlockNumIndexArgsIndexInvalid(t *testing.T) {
func TestHashIndexArgs(t *testing.T) {
input := `["0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b", "0x1"]`
expected := new(HashIndexArgs)
- expected.Hash = common.HexToHash("0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b")
+ expected.Hash = "0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b"
expected.Index = 1
args := new(HashIndexArgs)