blob: cd2af509931405af4dec1c69dee3101612a2e38b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package websocket
import "github.com/ethereum/go-ethereum/ethutil"
type Message struct {
Call string `json:"call"`
Args []interface{} `json:"args"`
Id int `json:"_id"`
Data interface{} `json:"data"`
Event string `json:"_event"`
}
func (self *Message) Arguments() *ethutil.Value {
return ethutil.NewValue(self.Args)
}
|