github.com/sberex/go-sberex@v1.8.2-0.20181113200658-ed96ac38f7d7/ethclient/ethclient_test.go (about)

     1  // This file is part of the go-sberex library. The go-sberex library is 
     2  // free software: you can redistribute it and/or modify it under the terms 
     3  // of the GNU Lesser General Public License as published by the Free 
     4  // Software Foundation, either version 3 of the License, or (at your option)
     5  // any later version.
     6  //
     7  // The go-sberex library is distributed in the hope that it will be useful, 
     8  // but WITHOUT ANY WARRANTY; without even the implied warranty of
     9  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser 
    10  // General Public License <http://www.gnu.org/licenses/> for more details.
    11  
    12  package ethclient
    13  
    14  import "github.com/Sberex/go-sberex"
    15  
    16  // Verify that Client implements the sberex interfaces.
    17  var (
    18  	_ = sberex.ChainReader(&Client{})
    19  	_ = sberex.TransactionReader(&Client{})
    20  	_ = sberex.ChainStateReader(&Client{})
    21  	_ = sberex.ChainSyncReader(&Client{})
    22  	_ = sberex.ContractCaller(&Client{})
    23  	_ = sberex.GasEstimator(&Client{})
    24  	_ = sberex.GasPricer(&Client{})
    25  	_ = sberex.LogFilterer(&Client{})
    26  	_ = sberex.PendingStateReader(&Client{})
    27  	// _ = sberex.PendingStateEventer(&Client{})
    28  	_ = sberex.PendingContractCaller(&Client{})
    29  )