2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-01-16 01:34:16 +00:00

15 lines
311 B
Go
Raw Normal View History

2014-10-21 13:24:48 +02:00
package rpc
import "github.com/ethereum/go-ethereum/ethutil"
2014-10-21 13:24:48 +02:00
type Message struct {
Call string `json:"call"`
Args []interface{} `json:"args"`
Id int `json:"_id"`
Data interface{} `json:"data"`
}
func (self *Message) Arguments() *ethutil.Value {
return ethutil.NewValue(self.Args)
}