-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Common error messages module #266
Conversation
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Signed-off-by: Andrei Baltariu <[email protected]>
Coverage SummaryTotals
FilesExpand
|
Contract comparison - from 33700c5 to a081bc6
|
common/error-messages/src/lib.rs
Outdated
@@ -0,0 +1,45 @@ | |||
#![no_std] | |||
|
|||
pub const CANNOT_CREATE_TX_WHILE_PAUSE: &str = "Cannot create transaction while paused"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pub const CANNOT_CREATE_TX_WHILE_PAUSE: &str = "Cannot create transaction while paused"; | |
pub const CANNOT_CREATE_TX_WHILE_PAUSED: &str = "Cannot create transaction while paused"; |
common/error-messages/src/lib.rs
Outdated
|
||
pub const CANNOT_CREATE_TX_WHILE_PAUSE: &str = "Cannot create transaction while paused"; | ||
pub const BRIDGE_ALREADY_DEPLOYED: &str = "Bridge already deployed"; | ||
pub const INVALID_MIN_MAX_VALIDATOR_NUMBER: &str = "Invalid min/max validator numbers"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pub const INVALID_MIN_MAX_VALIDATOR_NUMBER: &str = "Invalid min/max validator numbers"; | |
pub const INVALID_MIN_MAX_VALIDATOR_NUMBERS: &str = "Invalid min/max validator numbers"; |
common/error-messages/src/lib.rs
Outdated
pub const DEPOSIT_OVER_MAX_AMOUNT: &str = "Deposit over max amount"; | ||
pub const INVALID_CALLER: &str = "Invalid caller"; | ||
pub const SETUP_PHASE_NOT_COMPLETED: &str = "The setup is not completed"; | ||
pub const ONLY_ESDT_SAFE_CALLER: &str = "Only ESDT Safe call this endpoint"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pub const ONLY_ESDT_SAFE_CALLER: &str = "Only ESDT Safe call this endpoint"; | |
pub const ONLY_ESDT_SAFE_CALLER: &str = "Only ESDT Safe can call this endpoint"; |
Signed-off-by: Andrei Baltariu <[email protected]>
No description provided.