aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/comms/comms.go
blob: 244f5a7a6bf610be96794e2a9312bfbfc986d466 (plain) (blame)
1
2
3
4
5
6
7
package comms

type EthereumClient interface {
    Close()
    Send(interface{}) error
    Recv() (interface{}, error)
}