const MaxLive, MaxOpen, GovLanes, MaxTitle, MaxPayload, MaxKindName, MaxBatch, Bps, MaxReason, Reserved
1const (
2 // MaxLive is how many proposals may stand at once.
3 MaxLive = maxLive
4
5 // MaxOpen is how many of those an ordinary kind may fill. The difference
6 // is kept for the governor's own kinds, so a flood of one thing cannot
7 // stop the holders changing the rules.
8 MaxOpen = maxOpen
9
10 // GovLanes is that difference.
11 GovLanes = govLanes
12
13 // The bounds on a proposal's three strings, which doc.gno publishes as a
14 // table because they decide what a proposer can say before finding out by
15 // transaction.
16 MaxTitle = maxTitle
17 MaxPayload = maxPayload
18 MaxKindName = maxKindName
19
20 // MaxBatch is how many members one govern:batch may carry.
21 MaxBatch = maxBatch
22
23 // Bps is the basis-point scale every bar here is expressed in.
24 Bps = bps
25
26 // MaxReason is the longest failure message a kind can put on the record.
27 // A kind returns the string and the governor keeps it for the life of the
28 // realm, so it is clipped rather than trusted.
29 MaxReason = maxReason
30
31 // Reserved is the prefix the governor's own kinds carry, which Offer
32 // refuses so that nothing published can render as a built-in.
33 Reserved = reserved
34)The board's dimensions, which the front page prints and a caller may want to reason about before proposing.