aboutsummaryrefslogblamecommitdiffstats
path: root/websocket/message.go
blob: 73b47456f64b643283e5997943fb27ae425b9313 (plain) (tree)
1
2
3
4
5
6
7
8

                 
                                                



                                        
                                       





                                                 
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"`
}

func (self *Message) Arguments() *ethutil.Value {
    return ethutil.NewValue(self.Args)
}