Skip to content

Commit 315c9f1

Browse files
committed
Remove non_exhaustive from Conf
1 parent 2bee56d commit 315c9f1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ const LOCAL_IP: Ipv4Addr = Ipv4Addr::new(127, 0, 0, 1);
8080

8181
/// The node configuration parameters, implements a convenient [Default] for most common use.
8282
///
83-
/// `#[non_exhaustive]` allows adding new parameters without breaking downstream users
8483
///
8584
/// Default values:
8685
/// ```
@@ -92,7 +91,6 @@ const LOCAL_IP: Ipv4Addr = Ipv4Addr::new(127, 0, 0, 1);
9291
/// assert_eq!(conf, bitcoind::Conf::default());
9392
/// ```
9493
///
95-
#[non_exhaustive]
9694
#[derive(Debug, PartialEq, Eq)]
9795
pub struct Conf<'a> {
9896
/// Bitcoind command line arguments containing no spaces like `vec!["-dbcache=300", "-regtest"]`

0 commit comments

Comments
 (0)