Skip to content

Commit

Permalink
style: Update array concatenation in logging for better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
S0c5 committed May 1, 2024
1 parent 155fa03 commit ccf63d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sube/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ where
log::info!("tip_hex: {}", hex::encode(Compact(tip.clone()).encode()));

let extra_params_hex =
hex::encode([vec![era], Compact(nonce).encode(), Compact(tip).encode()].concat());
hex::encode([Compact(era).encode(), Compact(nonce).encode(), Compact(tip).encode()].concat());

log::info!("extra_params_hex: {}", extra_params_hex);

Expand Down

0 comments on commit ccf63d7

Please sign in to comment.