You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
300 B

  1. package common
  2. import (
  3. "time"
  4. )
  5. // L2Tx is a struct that represents an already forged L2 tx
  6. type L2Tx struct {
  7. Tx
  8. Forged time.Time // time when received by the tx pool
  9. BatchNum BatchNum // Batch in which the tx was forged
  10. Position int // Position among all the L1Txs in that batch
  11. }