units: Update column width
Update column width inside the new `encapsulate` modules. No content change.
This commit is contained in:
parent
f7f1a0be8c
commit
d5c08aef32
|
@ -13,8 +13,8 @@ use arbitrary::{Arbitrary, Unstructured};
|
|||
mod encapsulate {
|
||||
/// Fee rate.
|
||||
///
|
||||
/// This is an integer newtype representing fee rate in `sat/kwu`. It provides protection against
|
||||
/// mixing up the types as well as basic formatting features.
|
||||
/// This is an integer newtype representing fee rate in `sat/kwu`. It provides protection
|
||||
/// against mixing up the types as well as basic formatting features.
|
||||
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
|
||||
pub struct FeeRate(u64);
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ mod encapsulate {
|
|||
|
||||
/// The weight of a transaction or block.
|
||||
///
|
||||
/// This is an integer newtype representing [`Weight`] in `wu`. It provides protection against mixing
|
||||
/// up types as well as basic formatting features.
|
||||
/// This is an integer newtype representing [`Weight`] in `wu`. It provides protection
|
||||
/// against mixing up types as well as basic formatting features.
|
||||
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
|
||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
||||
#[cfg_attr(feature = "serde", serde(transparent))]
|
||||
|
|
Loading…
Reference in New Issue