1// Sorting keys, and nothing else.2//3// The clock moved to the ledger, which is what quantises history and so is the4// only thing that can answer what epoch it is. What is left here is the one5// encoding decision this realm makes for itself.6package governor78import (9 cford32 "gno.land/p/nt/cford32/v0"10)1112// enc is a fixed-width, order-preserving key for a number that has to sort.13//14// proposal ids are listed in order, so they cannot be decimal strings: "10"15// sorts before "9".16func enc(u uint64) string {17 b := cford32.PutUint64Lower(u)18 return string(b[:])19}20Signatures reconstructed verbatim from vm/qfuncs — interface params keep their inline definitions.