Print the outcome of a single insert operation.
(
applied: &[Hash],
new_state: atomic_core::types::Merkle,
has_conflicts: bool,
)
| 512 | |
| 513 | /// Print the outcome of a single insert operation. |
| 514 | fn print_insert_outcome( |
| 515 | applied: &[Hash], |
| 516 | new_state: atomic_core::types::Merkle, |
| 517 | has_conflicts: bool, |
| 518 | ) { |
| 519 | println!(); |
| 520 | |
| 521 | if applied.is_empty() { |
| 522 | output::print_warning("No changes inserted."); |
| 523 | return; |
| 524 | } |
| 525 | |
| 526 | output::print_success(&format!("Inserted {} change(s)", applied.len())); |
| 527 | |
| 528 | println!(" New state: {}", new_state.to_base32()); |
| 529 | |
| 530 | if has_conflicts { |
| 531 | println!(); |
| 532 | output::print_warning("Conflicts detected. Run 'atomic status' to see details."); |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | /// Print the outcome of a cross-view insert operation. |
| 537 | fn print_cross_view_outcome(outcome: &CrossViewInsertOutcome, dry_run: bool) { |
no test coverage detected