Browse Source

cli: Print total steps in IDL buffer writes (#2944)

chalda 1 year ago
parent
commit
da3b251f38
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cli/src/lib.rs

+ 1 - 1
cli/src/lib.rs

@@ -2560,7 +2560,7 @@ fn idl_write(
     const MAX_WRITE_SIZE: usize = 600;
     let mut offset = 0;
     while offset < idl_data.len() {
-        println!("Step {offset} ");
+        println!("Step {offset}/{} ", idl_data.len());
         // Instruction data.
         let data = {
             let start = offset;