Skip to content

Commit 1d03db9

Browse files
committed
ci(clippy): fix new default warn empty_line_after_doc_comments for rust 1.83
https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments rust-lang/rust-clippy#13091
1 parent 941bca0 commit 1d03db9

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

crates/wallet/examples/compiler.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ use bdk_wallet::{KeychainKind, Wallet};
3030
/// can be derived from the policy.
3131
///
3232
/// This example demonstrates the interaction between a bdk wallet and miniscript policy.
33-
3433
#[allow(clippy::print_stdout)]
3534
fn main() -> Result<(), Box<dyn Error>> {
3635
// We start with a miniscript policy string

crates/wallet/examples/policy.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ use bdk_wallet::signer::SignersContainer;
2525
///
2626
/// This example demos a Policy output for a 2of2 multisig between between 2 parties, where the wallet holds
2727
/// one of the Extend Private key.
28-
2928
#[allow(clippy::print_stdout)]
3029
fn main() -> Result<(), Box<dyn Error>> {
3130
let secp = bitcoin::secp256k1::Secp256k1::new();

crates/wallet/src/keys/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ impl fmt::Display for KeyError {
982982
impl std::error::Error for KeyError {}
983983

984984
#[cfg(test)]
985-
pub mod test {
985+
mod test {
986986
use bitcoin::bip32;
987987

988988
use super::*;

0 commit comments

Comments
 (0)