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.
|
|
package common
import ( "math/big" )
// Bid is a struct that represents one bid in the PoH
type Bid struct { SlotNum SlotNum // Slot in which the bid is done
Coordinator // Coordinator bidder information
BidValue *big.Int EthBlockNum uint64 Won bool // boolean flag that tells that this is the final winning bid of this SlotNum
}
|