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
379 B

  1. package common
  2. import (
  3. "math/big"
  4. )
  5. // Bid is a struct that represents one bid in the PoH
  6. // WARNING: this is strongly based on the previous implementation, once the new spec is done, this may change a lot.
  7. type Bid struct {
  8. SlotNum SlotNum // Slot in which the bid is done
  9. InfoCoordinator Coordinator // Operaror bidder information
  10. Amount *big.Int
  11. }