Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen committed Aug 16, 2024
1 parent 720dc43 commit 7ffac45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/rpc/src/method/get_transaction_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ impl From<starknet_gateway_types::error::SequencerError> for Error {
match e {
StarknetError(e) => Error::GatewayIssue(e),
ReqwestError(e) => Error::Internal(e.into()),
InvalidStarknetErrorVariant => Error::Internal(anyhow::anyhow!("Invalid error variant received from gateway")),
InvalidStarknetErrorVariant => Error::Internal(anyhow::anyhow!(
"Invalid error variant received from gateway"
)),
}
}
}
Expand Down

0 comments on commit 7ffac45

Please sign in to comment.