Skip to content

Commit

Permalink
Full print anyhow error (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop authored Jun 18, 2024
1 parent c6e5296 commit 50d799f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ethereum/write/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub enum TxError {
#[error("Timeout while sending transaction")]
SendTimeout,

#[error("Error sending transaction: {0}")]
#[error("Error sending transaction: {0:?}")]
Send(anyhow::Error),

#[error("Timeout while waiting for confirmations")]
Expand All @@ -34,6 +34,6 @@ pub enum TxError {
#[error("Error parsing transaction id: {0}")]
Parse(Box<dyn Error + Send + Sync + 'static>),

#[error("{0}")]
#[error("{0:?}")]
Other(anyhow::Error),
}

0 comments on commit 50d799f

Please sign in to comment.