| 
									
										
										
										
											2014-09-30 23:26:52 +02:00
										 |  |  | package websocket | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | import "github.com/ethereum/go-ethereum/ethutil" | 
					
						
							| 
									
										
										
										
											2014-09-30 23:26:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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) | 
					
						
							|  |  |  | } |