2014-09-30 21:26:52 +00:00
|
|
|
package websocket
|
|
|
|
|
2014-10-23 13:01:27 +00:00
|
|
|
import "github.com/ethereum/go-ethereum/ethutil"
|
2014-09-30 21:26:52 +00:00
|
|
|
|
|
|
|
type Message struct {
|
2015-01-09 23:51:56 +00:00
|
|
|
Call string `json:"call"`
|
|
|
|
Args []interface{} `json:"args"`
|
|
|
|
Id int `json:"_id"`
|
|
|
|
Data interface{} `json:"data"`
|
|
|
|
Event string `json:"_event"`
|
2014-09-30 21:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (self *Message) Arguments() *ethutil.Value {
|
|
|
|
return ethutil.NewValue(self.Args)
|
|
|
|
}
|