From 89eb1572e955548886bf0c00c5e64b69f9f8cb32 Mon Sep 17 00:00:00 2001 From: jp1ac4 <121959000+jp1ac4@users.noreply.github.com> Date: Tue, 4 Apr 2023 09:38:58 +0100 Subject: [PATCH] lib: reorder struct fields for consistency --- src/commands/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 7a0664f6..844f628e 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -1292,7 +1292,7 @@ mod tests { vout: 0, }, block_info: Some(BlockInfo { height: 1, time: 1 }), - spend_block: Some(BlockInfo { time: 3, height: 3 }), + spend_block: Some(BlockInfo { height: 3, time: 3 }), derivation_index: ChildNumber::from(0), amount: bitcoin::Amount::from_sat(100_000_000), spend_txid: Some(spend_tx.txid()),