]> Untitled Git - bitcoindevkit.org/commitdiff
Publish autogenerated nightly docs
authorgithub-actions <github-actions@github.com>
Fri, 28 Jun 2024 21:43:19 +0000 (21:43 +0000)
committergithub-actions <github-actions@github.com>
Fri, 28 Jun 2024 21:43:19 +0000 (21:43 +0000)
docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_tmp_plan/lib.rs.html
docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_wallet/types.rs.html
docs/.vuepress/public/docs-rs/bdk/nightly/latest/src/bdk_wallet/wallet/mod.rs.html

index 6476a8cc388ed6d569f7c4c1b0ea44e04081f1bd..c1451648b51f50ddb615717c8ddc8d4cdd9b6c3b 100644 (file)
 <span class="kw">use </span>bitcoin::{
     absolute,
     bip32::{DerivationPath, Fingerprint, KeySource},
-    blockdata::transaction::Sequence,
     ecdsa,
     hashes::{hash160, ripemd160, sha256},
     secp256k1::Secp256k1,
     taproot::{<span class="self">self</span>, LeafVersion, TapLeafHash},
+    transaction::Sequence,
     ScriptBuf, TxIn, Witness, WitnessVersion,
 };
 <span class="kw">use </span>miniscript::{
index 056b73e672a7a77a943d61021b2558cd02a3f8bf..8743d262e4c61bd81094290062bbe308b81aa697 100644 (file)
 <span class="kw">use </span>core::convert::AsRef;
 
 <span class="kw">use </span>bdk_chain::ConfirmationTime;
-<span class="kw">use </span>bitcoin::blockdata::transaction::{OutPoint, Sequence, TxOut};
+<span class="kw">use </span>bitcoin::transaction::{OutPoint, Sequence, TxOut};
 <span class="kw">use </span>bitcoin::{psbt, Weight};
 
 <span class="kw">use </span>serde::{Deserialize, Serialize};
index ec805262b2299cff7363a48b4e3f75c6625c2f96..2dc36c2edc4ffb41246303b740c0c26b36e59c1e 100644 (file)
 #[doc(hidden)]
 </span><span class="macro">macro_rules!</span> floating_rate {
     (<span class="macro-nonterminal">$rate</span>:expr) =&gt; {{
-        <span class="kw">use </span><span class="macro-nonterminal">$crate::bitcoin::blockdata::constants::WITNESS_SCALE_FACTOR</span>;
+        <span class="kw">use </span><span class="macro-nonterminal">$crate::bitcoin::constants::WITNESS_SCALE_FACTOR</span>;
         <span class="comment">// sat_kwu / 250.0 -&gt; sat_vb
         </span><span class="macro-nonterminal">$rate</span>.to_sat_per_kwu() <span class="kw">as </span>f64 / ((<span class="number">1000 </span>/ WITNESS_SCALE_FACTOR) <span class="kw">as </span>f64)
     }};