use markdown autolink syntax for urls with no text

This commit is contained in:
Riccardo Casatta 2021-05-03 13:46:10 +02:00
parent c58446f9c1
commit c96f7ec71c
No known key found for this signature in database
GPG Key ID: FD986A969E450397
5 changed files with 8 additions and 8 deletions

View File

@ -385,9 +385,9 @@ pub mod all {
pub const OP_HASH256: All = All {code: 0xaa};
/// Ignore this and everything preceding when deciding what to sign when signature-checking
pub const OP_CODESEPARATOR: All = All {code: 0xab};
/// https://en.bitcoin.it/wiki/OP_CHECKSIG pushing 1/0 for success/failure
/// <https://en.bitcoin.it/wiki/OP_CHECKSIG> pushing 1/0 for success/failure
pub const OP_CHECKSIG: All = All {code: 0xac};
/// https://en.bitcoin.it/wiki/OP_CHECKSIG returning success/failure
/// <https://en.bitcoin.it/wiki/OP_CHECKSIG> returning success/failure
pub const OP_CHECKSIGVERIFY: All = All {code: 0xad};
/// Pop N, N pubkeys, M, M signatures, a dummy (due to bug in reference code), and verify that all M signatures are valid.
/// Push 1 for "all valid", 0 otherwise
@ -396,9 +396,9 @@ pub mod all {
pub const OP_CHECKMULTISIGVERIFY: All = All {code: 0xaf};
/// Does nothing
pub const OP_NOP1: All = All {code: 0xb0};
/// https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki
/// <https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki>
pub const OP_CLTV: All = All {code: 0xb1};
/// https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki
/// <https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki>
pub const OP_CSV: All = All {code: 0xb2};
/// Does nothing
pub const OP_NOP4: All = All {code: 0xb3};

View File

@ -14,7 +14,7 @@
//! BIP32 Implementation
//!
//! Implementation of BIP32 hierarchical deterministic wallets, as defined
//! at https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
//! at <https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki>
use std::default::Default;
use std::{error, fmt};

View File

@ -15,7 +15,7 @@
//! Pay-to-contract-hash support
//!
//! See Appendix A of the Blockstream sidechains whitepaper
//! at http://blockstream.com/sidechains.pdf for details of
//! at <http://blockstream.com/sidechains.pdf> for details of
//! what this does.
#![cfg_attr(not(test), deprecated)]

View File

@ -15,7 +15,7 @@
//! # Partially Signed Transactions
//!
//! Implementation of BIP174 Partially Signed Bitcoin Transaction Format as
//! defined at https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki
//! defined at <https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki>
//! except we define PSBTs containing non-standard SigHash types as invalid.
use blockdata::script::Script;

View File

@ -15,7 +15,7 @@
//! # Raw PSBT Key-Value Pairs
//!
//! Raw PSBT key-value pairs as defined at
//! https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki.
//! <https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki>.
use std::{fmt, io};