lib.rs 194 B

1234567891011
  1. // Ensure we're `no_std` when compiling for Wasm.
  2. #![cfg_attr(not(feature = "std"), no_std)]
  3. pub mod council;
  4. pub mod election;
  5. pub mod election_params;
  6. mod sealed_vote;
  7. mod stake;
  8. mod mock;