Skip to content

Commit

Permalink
Fix review notes
Browse files Browse the repository at this point in the history
  • Loading branch information
kpp committed Jun 14, 2024
1 parent acd0eec commit 4fc017d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/consensus/src/transaction/envelope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ mod tests {
) where
Signed<T>: Into<TxEnvelope>,
{
let signature = signature.unwrap_or(Signature::test_signature());
let signature = signature.unwrap_or_else(Signature::test_signature);
let tx_signed = tx.into_signed(signature);
let tx_envelope: TxEnvelope = tx_signed.into();
let encoded = tx_envelope.encoded_2718();
Expand Down

0 comments on commit 4fc017d

Please sign in to comment.