aboutsummaryrefslogtreecommitdiffstats
path: root/websocket/message.go
blob: 30e284814224d383b1d7b47e25b92468899c7c0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package websocket

import "github.com/ethereum/eth-go/ethutil"

type Message struct {
    Call string        `json:"call"`
    Args []interface{} `json:"args"`
    Seed int           `json:"seed"`
    Data interface{}   `json:"data"`
}

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