15 lines
		
	
	
		
			313 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			313 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|   | 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) | ||
|  | } |