forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
537 B
18 lines
537 B
8 years ago
|
package ethclient
|
||
|
|
||
|
import "github.com/ethereum/go-ethereum"
|
||
|
|
||
|
// Verify that Client implements the ethereum interfaces.
|
||
|
var (
|
||
|
_ = ethereum.ChainReader(&Client{})
|
||
|
_ = ethereum.ChainStateReader(&Client{})
|
||
|
_ = ethereum.ChainHeadEventer(&Client{})
|
||
|
_ = ethereum.ContractCaller(&Client{})
|
||
|
_ = ethereum.GasEstimator(&Client{})
|
||
|
_ = ethereum.GasPricer(&Client{})
|
||
|
_ = ethereum.LogFilterer(&Client{})
|
||
|
_ = ethereum.PendingStateReader(&Client{})
|
||
|
// _ = ethereum.PendingStateEventer(&Client{})
|
||
|
_ = ethereum.PendingContractCaller(&Client{})
|
||
|
)
|