Merge rust-bitcoin/rust-bitcoin#1581: Use ignore to stop rustdoc code from being built
6d99d3c061
Use ignore to stop rustdoc code from being built (Tobin C. Harding) Pull request description: Currently we have an attempted tag ```compile_fail that seems to be aiming at allowing code that does not build to exist in rustdoc. This is causing an error when running tests. No clue how this made it through CI. Use ```ignore to prevent rustdoc code from being built. ACKs for top commit: apoelstra: ACK6d99d3c061
Kixunil: ACK6d99d3c061
Tree-SHA512: 6c4b076000ba29377ac8cf942df66e849ff6421da6f9214664d487550cf45889e163b4de652079010bae327019163b63a1962ff8e6a04d918db63ffb0285ccd1
This commit is contained in:
commit
f3ceed91b3
|
@ -671,7 +671,7 @@ impl NetworkValidation for NetworkUnchecked { const IS_CHECKED: bool = false; }
|
|||
/// assert_eq!(address.to_string(), "132F25rTsvBdp9JzLLBHP5mvGY66i1xdiM");
|
||||
/// ```
|
||||
///
|
||||
/// ```compile_fail
|
||||
/// ```ignore
|
||||
/// # use std::str::FromStr;
|
||||
/// # use bitcoin::address::{Address, NetworkChecked};
|
||||
/// let address: Address<NetworkUnchecked> = Address::from_str("132F25rTsvBdp9JzLLBHP5mvGY66i1xdiM")
|
||||
|
|
Loading…
Reference in New Issue