-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from starkbamse/eip1559-and-other-enums
Eip1559 and other enums
- Loading branch information
Showing
17 changed files
with
622 additions
and
1,322 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
use thiserror::Error; | ||
|
||
#[derive(Error, Debug)] | ||
pub enum GatewayError { | ||
#[error("No matches found")] | ||
NotFound, | ||
#[error("Could not get from database")] | ||
Get, | ||
#[error("Could not set to database")] | ||
Set, | ||
#[error("Could not communicate with database")] | ||
Communicate, | ||
#[error("Could not deserialize binary data")] | ||
Deserialize, | ||
#[error("Could not serialize binary data")] | ||
Serialize, | ||
#[error("Could not delete from database")] | ||
NoDelete, | ||
} |
Oops, something went wrong.