inline Logs
This commit is contained in:
parent
d2e7414230
commit
0bda63eb76
|
@ -98,12 +98,6 @@ func (self *EthereumApi) getStateWithNum(num int64) *xeth.State {
|
||||||
// return nil
|
// return nil
|
||||||
// }
|
// }
|
||||||
|
|
||||||
func (self *EthereumApi) Logs(id int, reply *interface{}) error {
|
|
||||||
*reply = NewLogsRes(self.xeth().Logs(id))
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (self *EthereumApi) AllLogs(args *FilterOptions, reply *interface{}) error {
|
func (self *EthereumApi) AllLogs(args *FilterOptions, reply *interface{}) error {
|
||||||
opts := toFilterOptions(args)
|
opts := toFilterOptions(args)
|
||||||
*reply = NewLogsRes(self.xeth().AllLogs(opts))
|
*reply = NewLogsRes(self.xeth().AllLogs(opts))
|
||||||
|
@ -494,7 +488,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return p.Logs(args.Id, reply)
|
*reply = NewLogsRes(p.xeth().Logs(args.Id))
|
||||||
case "eth_getLogs":
|
case "eth_getLogs":
|
||||||
args := new(FilterOptions)
|
args := new(FilterOptions)
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
|
|
Loading…
Reference in New Issue