Merge rust-bitcoin/rust-bitcoin#1653: Show cache construction in rustdoc
438ee45691
Show cache construction in rustdoc (Tobin C. Harding) Pull request description: To make it more clear what the cache is show the cache construction line in rustdoc. ACKs for top commit: apoelstra: ACK438ee45691
Kixunil: ACK438ee45691
Tree-SHA512: d6da6bad57fddf9e2f4bcfb7c9b87df38bf4b2bb914e92e52d5ae8afa3405a9793536d7164223021ab6d183ddde732cf6889370834e36f37bae470127b0271fa
This commit is contained in:
commit
3a53e7e12e
|
@ -599,7 +599,7 @@ impl<E> EncodeSigningDataResult<E> {
|
|||
/// # const SOME_TX: &'static str = "0100000001a15d57094aa7a21a28cb20b59aab8fc7d1149a3bdbcddba9c622e4f5f6a99ece010000006c493046022100f93bb0e7d8db7bd46e40132d1f8242026e045f03a0efe71bbb8e3f475e970d790221009337cd7f1f929f00cc6ff01f03729b069a7c21b59b1736ddfee5db5946c5da8c0121033b9b137ee87d5a812d6f506efdd37f0affa7ffc310711c06c7f3e097c9447c52ffffffff0100e1f505000000001976a9140389035a9225b3839e2bbf32d826a1e222031fd888ac00000000";
|
||||
/// # let raw_tx = Vec::from_hex(SOME_TX).unwrap();
|
||||
/// # let tx: Transaction = deserialize(&raw_tx).unwrap();
|
||||
/// # let cache = SighashCache::new(&tx);
|
||||
/// let cache = SighashCache::new(&tx);
|
||||
/// if cache.legacy_encode_signing_data_to(&mut writer, input_index, &script_pubkey, sighash_u32)
|
||||
/// .is_sighash_single_bug()
|
||||
/// .expect("writer can't fail") {
|
||||
|
|
Loading…
Reference in New Issue