remove duplicate words
This commit is contained in:
parent
34cf6d286a
commit
2244e0ff77
|
@ -409,7 +409,7 @@ pub trait Encoding: private::SealedContainer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Trait for for Unified containers, that exposes the items within them.
|
/// Trait for Unified containers, that exposes the items within them.
|
||||||
pub trait Container {
|
pub trait Container {
|
||||||
/// The type of item in this unified container.
|
/// The type of item in this unified container.
|
||||||
type Item: SealedItem;
|
type Item: SealedItem;
|
||||||
|
|
|
@ -1644,7 +1644,7 @@ impl BlockSource for BlockDb {
|
||||||
///
|
///
|
||||||
/// This block source is intended to be used with the following data flow:
|
/// This block source is intended to be used with the following data flow:
|
||||||
/// * When the cache is being filled:
|
/// * When the cache is being filled:
|
||||||
/// * The caller requests the current maximum height height at which cached data is available
|
/// * The caller requests the current maximum height at which cached data is available
|
||||||
/// using [`FsBlockDb::get_max_cached_height`]. If no cached data is available, the caller
|
/// using [`FsBlockDb::get_max_cached_height`]. If no cached data is available, the caller
|
||||||
/// can use the wallet's synced-to height for the following operations instead.
|
/// can use the wallet's synced-to height for the following operations instead.
|
||||||
/// * (recommended for privacy) the caller should round the returned height down to some 100- /
|
/// * (recommended for privacy) the caller should round the returned height down to some 100- /
|
||||||
|
|
|
@ -1134,7 +1134,7 @@ pub(crate) mod tests {
|
||||||
&[FakeCompactOutput::new(
|
&[FakeCompactOutput::new(
|
||||||
&dfvk,
|
&dfvk,
|
||||||
AddressType::DefaultExternal,
|
AddressType::DefaultExternal,
|
||||||
// 1235 notes into into the second shard
|
// 1235 notes into the second shard
|
||||||
NonNegativeAmount::const_from_u64(10000),
|
NonNegativeAmount::const_from_u64(10000),
|
||||||
)],
|
)],
|
||||||
frontier_tree_size + 10,
|
frontier_tree_size + 10,
|
||||||
|
|
|
@ -14,7 +14,7 @@ pub struct AuthData(pub Vec<u8>);
|
||||||
/// Binary parsing capability for TZE preconditions & witnesses.
|
/// Binary parsing capability for TZE preconditions & witnesses.
|
||||||
///
|
///
|
||||||
/// Serialization formats interpreted by implementations of this trait become consensus-critical
|
/// Serialization formats interpreted by implementations of this trait become consensus-critical
|
||||||
/// upon activation of of the extension that uses them.
|
/// upon activation of the extension that uses them.
|
||||||
pub trait FromPayload: Sized {
|
pub trait FromPayload: Sized {
|
||||||
type Error;
|
type Error;
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ pub trait FromPayload: Sized {
|
||||||
/// Binary serialization capability for TZE preconditions & witnesses.
|
/// Binary serialization capability for TZE preconditions & witnesses.
|
||||||
///
|
///
|
||||||
/// Serialization formats used by implementations of this trait become consensus-critical upon
|
/// Serialization formats used by implementations of this trait become consensus-critical upon
|
||||||
/// activation of of the extension that uses them.
|
/// activation of the extension that uses them.
|
||||||
pub trait ToPayload {
|
pub trait ToPayload {
|
||||||
/// Returns a serialized payload and its corresponding mode.
|
/// Returns a serialized payload and its corresponding mode.
|
||||||
fn to_payload(&self) -> (u32, Vec<u8>);
|
fn to_payload(&self) -> (u32, Vec<u8>);
|
||||||
|
|
|
@ -112,7 +112,7 @@ impl AccountPrivKey {
|
||||||
/// `m/44'/<coin_type>'/<account>'`.
|
/// `m/44'/<coin_type>'/<account>'`.
|
||||||
///
|
///
|
||||||
/// This produces the root of the derivation tree for transparent
|
/// This produces the root of the derivation tree for transparent
|
||||||
/// viewing keys and addresses for the for the provided account.
|
/// viewing keys and addresses for the provided account.
|
||||||
pub fn from_seed<P: consensus::Parameters>(
|
pub fn from_seed<P: consensus::Parameters>(
|
||||||
params: &P,
|
params: &P,
|
||||||
seed: &[u8],
|
seed: &[u8],
|
||||||
|
|
|
@ -39,7 +39,7 @@ impl FeeRule {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the fixed fee amount which which this rule was configured.
|
/// Returns the fixed fee amount which this rule was configured.
|
||||||
pub fn fixed_fee(&self) -> NonNegativeAmount {
|
pub fn fixed_fee(&self) -> NonNegativeAmount {
|
||||||
self.fixed_fee
|
self.fixed_fee
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue