github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/evm/txs/check/check.go (about)

     1  package check
     2  
     3  import (
     4  	"github.com/fibonacci-chain/fbc/x/evm/txs/base"
     5  )
     6  
     7  type Tx struct {
     8  	*base.Tx
     9  }
    10  
    11  func NewTx(config base.Config) *Tx {
    12  	return &Tx{
    13  		Tx: base.NewTx(config),
    14  	}
    15  }
    16  
    17  // AnalyzeStart check Tx do not analyze start
    18  func (t *Tx) AnalyzeStart(tag string) {}
    19  
    20  // AnalyzeStop check Tx do not analyze stop
    21  func (t *Tx) AnalyzeStop(tag string) {}