Skip to content

Commit 7700f65

Browse files
author
ChallengeDev210
committed
Merge rust-bitcoin/rust-bitcoin#965: Remove unnecessary Write as _fmtWrite
033a12d Remove unused Write as _fmtWrite (Tobin C. Harding) Pull request description: We can bring the `Write` trait into scope, no need to underscore it. Done as part of the MSRV checklist. ACKs for top commit: Kixunil: ACK 033a12d elichai: ACK 033a12d apoelstra: ACK 033a12d sanket1729: utACK 033a12d Tree-SHA512: ce1c7ec2376d4838066a6d87f2cc9fe4c911090a58c397d2f4080c4d40c913cff4999e2620054a32b72aa197254ffed74633ddb75ece175813d867c3d53892d2
2 parents f344fb3 + c25ae06 commit 7700f65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub use secp256k1::{XOnlyPublicKey, KeyPair};
2121
use prelude::*;
2222

2323
use core::{ops, str::FromStr};
24-
use core::fmt::{self, Write as _fmtWrite};
24+
use core::fmt::{self, Write};
2525
use io;
2626
#[cfg(feature = "std")] use std::error;
2727

0 commit comments

Comments
 (0)