mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-14 22:38:20 +00:00
15 lines
306 B
Go
15 lines
306 B
Go
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)
|
|
}
|