diff options
author | Daniel A. Nagy <nagy.da@gmail.com> | 2015-05-08 23:52:44 +0800 |
---|---|---|
committer | Daniel A. Nagy <nagy.da@gmail.com> | 2015-05-08 23:52:44 +0800 |
commit | 3a01e3e39b9ce83ecb7444319407ee8bb00e3bf6 (patch) | |
tree | cf7379f422284b4a0e6b6c8bd0b1ca621c8c9a91 /rpc | |
parent | a487396b764c8dac409f9ee1ef32c29c4cefb7d9 (diff) | |
download | dexon-3a01e3e39b9ce83ecb7444319407ee8bb00e3bf6.tar.gz dexon-3a01e3e39b9ce83ecb7444319407ee8bb00e3bf6.tar.zst dexon-3a01e3e39b9ce83ecb7444319407ee8bb00e3bf6.zip |
Signing (almost) works.
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/args.go | 35 | ||||
-rw-r--r-- | rpc/jeth.go | 2 |
2 files changed, 35 insertions, 2 deletions
diff --git a/rpc/args.go b/rpc/args.go index 6c98d1267..686872a59 100644 --- a/rpc/args.go +++ b/rpc/args.go @@ -171,6 +171,41 @@ type NewSigArgs struct { Data string } +func (args *NewSigArgs) UnmarshalJSON(b []byte) (err error) { + var obj []json.RawMessage + var ext struct { + From string + Data string + } + + // Decode byte slice to array of RawMessages + 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) + } + + // Decode 0th RawMessage to temporary struct + if err := json.Unmarshal(obj[0], &ext); err != nil { + return NewDecodeParamError(err.Error()) + } + + if len(ext.From) == 0 { + return NewValidationError("from", "is required") + } + + if len(ext.Data) == 0 { + return NewValidationError("data", "is required") + } + + args.From = ext.From + args.Data = ext.Data + return nil +} + func (args *NewTxArgs) UnmarshalJSON(b []byte) (err error) { var obj []json.RawMessage var ext struct { diff --git a/rpc/jeth.go b/rpc/jeth.go index 4739316b2..ad52b72d7 100644 --- a/rpc/jeth.go +++ b/rpc/jeth.go @@ -2,7 +2,6 @@ package rpc import ( "encoding/json" - "github.com/ethereum/go-ethereum/jsre" "github.com/robertkrimen/otto" ) @@ -35,7 +34,6 @@ func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) { } jsonreq, err := json.Marshal(reqif) - var reqs []RpcRequest batch := true err = json.Unmarshal(jsonreq, &reqs) |