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.

14 lines
361 B

  1. package common
  2. import (
  3. "math/big"
  4. )
  5. // Bid is a struct that represents one bid in the PoH
  6. type Bid struct {
  7. SlotNum SlotNum // Slot in which the bid is done
  8. Coordinator // Coordinator bidder information
  9. BidValue *big.Int
  10. EthBlockNum uint64
  11. Won bool // boolean flag that tells that this is the final winning bid of this SlotNum
  12. }