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 b557963
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),
Err(_) => format!("{}: Deploy", contract.diff.tag),
}
} else {
Expand Down

0 comments on commit b557963

Please sign in to comment.