Skip to content

Commit c2f257f

Browse files
authored
cli: Print total steps in IDL buffer writes (otter-sec#2944)
1 parent 5efc47a commit c2f257f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2560,7 +2560,7 @@ fn idl_write(
25602560
const MAX_WRITE_SIZE: usize = 600;
25612561
let mut offset = 0;
25622562
while offset < idl_data.len() {
2563-
println!("Step {offset} ");
2563+
println!("Step {offset}/{} ", idl_data.len());
25642564
// Instruction data.
25652565
let data = {
25662566
let start = offset;

0 commit comments

Comments
 (0)