We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 558a33a commit ad865bbCopy full SHA for ad865bb
crates/chain/src/keychain.rs
@@ -49,9 +49,9 @@ impl Balance {
49
}
50
51
52
-/// A tuple of keychain index and corresponding [`ScriptBuf`].
+/// A tuple of keychain index and `T` representing the indexed value.
53
pub type Indexed<T> = (u32, T);
54
-/// A tuple of keychain, index and the [`ScriptBuf`] derived at that location.
+/// A tuple of keychain `K`, derivation index (`u32`) and a `T` associated with them.
55
pub type KeychainIndexed<K, T> = ((K, u32), T);
56
57
impl core::fmt::Display for Balance {
0 commit comments