Skip to content

Commit 6dcf4c3

Browse files
committed
Fix comment and derive order for method
There was a blank line and then a comment after the derive. Fix it so that the comment is before the derive and there is no blank line.
1 parent e84d8e9 commit 6dcf4c3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

types/src/model/wallet.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,9 +509,8 @@ pub struct ListSinceBlock {
509509
}
510510

511511
/// Transaction list item, part of `ListSinceBlock`.
512-
#[derive(Clone, Debug, PartialEq, Eq, Deserialize, Serialize)]
513-
514512
// https://github.com/rust-bitcoin/rust-bitcoin/issues/3516
513+
#[derive(Clone, Debug, PartialEq, Eq, Deserialize, Serialize)]
515514
pub struct ListSinceBlockTransaction {
516515
/// The bitcoin address of the transaction.
517516
pub address: Option<Address<NetworkUnchecked>>,

0 commit comments

Comments
 (0)