github.com/mit-dci/lit@v0.0.0-20221102210550-8c3d3b49f2ce/lncore/txs.go (about)

     1  package lncore
     2  
     3  // Txid represents a transaction on the blockchain.
     4  type Txid struct {
     5  	cointype int32
     6  	txhash   []byte
     7  }
     8  
     9  // Utxo is an unspent transaction output that we could be able to spend.
    10  type Utxo struct {
    11  	Txid
    12  }