Skip to content

Commit

Permalink
fixup! fixup! fuzz: add txs_process_proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Jul 23, 2024
1 parent c91fe95 commit 1c88e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/txs_process_proposal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fuzz_target!(|txs: Vec<Tx>| {
let mut txs_bytes: Vec<Vec<u8>> = Vec::with_capacity(txs.len());
for tx in txs {
if let Ok(tx_bytes) = tx.try_to_bytes() {
txs_bytes.push(tx_bytes.into());
txs_bytes.push(tx_bytes);
} else {
return;
}
Expand Down

0 comments on commit 1c88e36

Please sign in to comment.