5ce087dafe
* Disallowing the use of unwraps and expects in vesting and mixnet contracts * Removed dodgy unwraps from the mixnet contract * Removed dodgy unwraps from the vesting contract * Removed unwraps/expects from common contracts crate * ...but adding the unwraps in tests
14 lines
305 B
Rust
14 lines
305 B
Rust
#![allow(rustdoc::private_intra_doc_links)]
|
|
//! Nym vesting contract, providing vesting accounts with ability to stake unvested tokens
|
|
|
|
#![warn(clippy::expect_used)]
|
|
#![warn(clippy::unwrap_used)]
|
|
|
|
pub mod contract;
|
|
mod errors;
|
|
mod queued_migrations;
|
|
mod storage;
|
|
mod support;
|
|
mod traits;
|
|
pub mod vesting;
|