Skip to content

Commit

Permalink
remove forgotten dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Avital committed Dec 14, 2023
1 parent dd35540 commit 81f62fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/examples/z_pub_thr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fn main() {

let payload_size = args.payload_size;

let data: Value = (0usize..dbg!(payload_size))
let data: Value = (0..payload_size)
.map(|i| (i % 10) as u8)
.collect::<Vec<u8>>()
.into();
Expand Down

0 comments on commit 81f62fd

Please sign in to comment.