github.com/annchain/OG@v0.0.9/og/txmaker/tx_maker.go (about)

     1  package txmaker
     2  
     3  import (
     4  	"github.com/annchain/OG/og/types"
     5  )
     6  
     7  // TxMaker makes new Tx (or Seq) using the infomation that InfoProvider gives.
     8  type TxMaker interface {
     9  	MakeTx(txType types.TxBaseType) types.Txi
    10  }