Skip to content

Commit 7794689

Browse files
fixup! feat!: modify Wallet struct to hold KeyRing
1 parent d4a203b commit 7794689

4 files changed

Lines changed: 307 additions & 1018 deletions

File tree

src/keyring/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
//! of descriptors. It ensures descriptors are usable together, consistent with a given network,
1414
//! and will work with a BDK `Wallet`.
1515
16-
#![allow(dead_code)]
17-
1816
/// Contains `Changeset` corresponding to `KeyRing`.
1917
pub mod changeset;
2018
/// Contains error types corresponding to `KeyRing`.

src/wallet/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ pub enum MiniscriptPsbtError {
195195
OutputUpdate(miniscript::psbt::OutputUpdateError),
196196
}
197197

198-
impl fmt::Display for MiniscriptPsbtError {
198+
impl Display for MiniscriptPsbtError {
199199
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
200200
match self {
201201
Self::Conversion(err) => write!(f, "Conversion error: {err}"),

0 commit comments

Comments
 (0)