Skip to content

Commit 9e17b23

Browse files
authored
chore(bip0032): adjust result type alias (#145)
1 parent 82f91d4 commit 9e17b23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bip0032/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use core::{error, fmt};
1111
use std::borrow::Cow;
1212

1313
/// Result type for bip0032 operations.
14-
pub type Result<T> = core::result::Result<T, Error>;
14+
pub type Result<T, E = Error> = core::result::Result<T, E>;
1515

1616
/// Error categories for bip0032 operations.
1717
#[non_exhaustive]

0 commit comments

Comments
 (0)