Move rustdoc above attribute
It is customary in this repository to put the rustdoc above the attributes.
This commit is contained in:
parent
e9230019eb
commit
abc014a079
|
@ -252,9 +252,9 @@ impl Default for TxIn {
|
||||||
#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
|
#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
|
||||||
pub struct Sequence(pub u32);
|
pub struct Sequence(pub u32);
|
||||||
|
|
||||||
|
/// An error in creating relative lock-times.
|
||||||
#[derive(Clone, PartialEq, Eq, Debug)]
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
||||||
#[non_exhaustive]
|
#[non_exhaustive]
|
||||||
/// An error in creating relative lock-times.
|
|
||||||
pub enum RelativeLockTimeError {
|
pub enum RelativeLockTimeError {
|
||||||
/// The input was too large
|
/// The input was too large
|
||||||
IntegerOverflow(u32)
|
IntegerOverflow(u32)
|
||||||
|
|
Loading…
Reference in New Issue