mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 05:27:19 +00:00
8 lines
112 B
Go
8 lines
112 B
Go
|
package comms
|
||
|
|
||
|
type EthereumClient interface {
|
||
|
Close()
|
||
|
Send(interface{}) error
|
||
|
Recv() (interface{}, error)
|
||
|
}
|