Skip to main content

dpp/errors/consensus/state/identity/
mod.rs

1pub use identity_already_exists_error::*;
2pub use identity_insufficient_balance_error::*;
3
4pub mod duplicated_identity_public_key_id_state_error;
5pub mod duplicated_identity_public_key_state_error;
6mod identity_already_exists_error;
7mod identity_insufficient_balance_error;
8pub mod identity_public_key_already_exists_for_unique_contract_bounds_error;
9pub mod identity_public_key_already_expired_error;
10pub mod identity_public_key_budget_exceeded_error;
11pub mod identity_public_key_is_disabled_error;
12pub mod identity_public_key_is_read_only_error;
13pub mod identity_public_key_limit_not_raised_error;
14pub mod identity_public_key_limit_not_set_error;
15pub mod invalid_identity_contract_nonce_error;
16pub mod invalid_identity_public_key_id_error;
17pub mod invalid_identity_revision_error;
18pub mod master_public_key_update_error;
19pub mod max_identity_public_key_limit_reached_error;
20pub mod missing_identity_public_key_ids_error;
21pub mod missing_transfer_key_error;
22pub mod no_transfer_key_for_core_withdrawal_available_error;
23
24pub mod identity_for_token_configuration_not_found_error;
25pub mod identity_to_freeze_does_not_exist_error;
26mod recipient_identity_does_not_exist_error;
27
28pub use recipient_identity_does_not_exist_error::*;