Skip to content

Commit

Permalink
add missing contract tag in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Oct 17, 2024
1 parent 70ecca7 commit 560c5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sozo/ops/src/migration/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ where
Err(ProviderError::StarknetError(StarknetError::ContractNotFound)) => {
format!("{}: Deploy", contract.diff.tag)
}
Ok(_) => "Already Deployed".to_string(),
Ok(_) => format!("{}: Already Deployed", contract.diff.tag),

Check warning on line 1060 in crates/sozo/ops/src/migration/migrate.rs

View check run for this annotation

Codecov / codecov/patch

crates/sozo/ops/src/migration/migrate.rs#L1060

Added line #L1060 was not covered by tests
Err(_) => format!("{}: Deploy", contract.diff.tag),
}
} else {
Expand Down

0 comments on commit 560c5d3

Please sign in to comment.