19 lines
		
	
	
		
			578 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			578 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package ethclient
 | |
| 
 | |
| import "github.com/ethereum/go-ethereum"
 | |
| 
 | |
| // Verify that Client implements the ethereum interfaces.
 | |
| var (
 | |
| 	_ = ethereum.ChainReader(&Client{})
 | |
| 	_ = ethereum.ChainStateReader(&Client{})
 | |
| 	_ = ethereum.ChainSyncReader(&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{})
 | |
| )
 |