Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc committed Jul 29, 2024
1 parent 90e2dbc commit 22f15cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub type LogEvents = fn(
pub type LogResources = fn(resources: &SorobanResources) -> ();

#[derive(thiserror::Error, Debug)]
#[allow(deprecated)]
#[allow(deprecated)] // Can be removed once Error enum doesn't have any code marked deprecated inside
pub enum Error {
#[error(transparent)]
InvalidAddress(#[from] stellar_strkey::DecodeError),
Expand Down Expand Up @@ -635,7 +635,7 @@ pub struct Client {
http_client: Arc<HttpClient>,
}

#[allow(deprecated)]
#[allow(deprecated)] // Can be removed once Client doesn't have any code marked deprecated inside
impl Client {
///
/// # Errors
Expand Down

0 comments on commit 22f15cf

Please sign in to comment.