Skip to content

Commit

Permalink
TrezorHDPath -> HDPath (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosnacks authored Mar 21, 2024
1 parent 4be7cd6 commit f9c90de
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/signer-trezor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ mod signer;
pub use signer::TrezorSigner;

mod types;
pub use types::{DerivationType as TrezorHDPath, TrezorError};
pub use types::{DerivationType as HDPath, TrezorError};

#[doc(hidden)]
#[deprecated(note = "use `TrezorSigner` instead")]
pub type Trezor = TrezorSigner;

#[doc(hidden)]
#[deprecated(note = "use `HDPath` instead")]
pub type TrezorHDPath = HDPath;

0 comments on commit f9c90de

Please sign in to comment.