quorum/rpc/message.go

15 lines
306 B
Go
Raw Normal View History

2014-10-21 04:24:48 -07:00
package rpc
import "github.com/ethereum/eth-go/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)
}