Skip to content

Commit 4df12ba

Browse files
Mateusz FaltynMateusz Faltyn
Mateusz Faltyn
authored and
Mateusz Faltyn
committed
Revised lib.rs
1 parent b68ad7a commit 4df12ba

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

lightning/src/lib.rs

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,25 @@
1717
//! figure out how best to make networking happen/timers fire/things get written to disk/keys get
1818
//! generated/etc. This makes it a good candidate for tight integration into an existing wallet
1919
//! instead of having a rather-separate lightning appendage to a wallet.
20-
//!
21-
//! `default` features are:
22-
//!
20+
//!
21+
//! `default` features are:
22+
//!
2323
//! * `std` - enables functionalities which require `std`, including `std::io` trait implementations and things which utilize time
2424
//! * `grind_signatures` - enables generation of [low-r bitcoin signatures](https://bitcoin.stackexchange.com/questions/111660/what-is-signature-grinding), which saves 1 byte per signature in 50% of the cases (see [bitcoin PR #13666](https://github.com/bitcoin/bitcoin/pull/13666))
25-
//!
25+
//!
2626
//! Available features are:
27-
//!
28-
//! * `std`
27+
//!
28+
//! * `std`
2929
//! * `grind_signatures`
3030
//! * `no-std ` - exposes write trait implementations from the `core2` crate
3131
//! * Skip logging of messages at levels below the given log level:
32-
//! * `max_level_off`
32+
//! * `max_level_off`
3333
//! * `max_level_error`
3434
//! * `max_level_warn `
3535
//! * `max_level_info`
3636
//! * `max_level_debug`
3737
//! * `max_level_trace`
3838
39-
4039
#![cfg_attr(not(any(test, fuzzing, feature = "_test_utils")), deny(missing_docs))]
4140
#![cfg_attr(not(any(test, fuzzing, feature = "_test_utils")), forbid(unsafe_code))]
4241
#![deny(broken_intra_doc_links)]

0 commit comments

Comments
 (0)