Skip to content

Commit 6020f66

Browse files
author
Thales Zirbel
committed
chore: fix fmt
1 parent 6fd88df commit 6020f66

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

contracts/on_chain_id/src/contract.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ pub fn instantiate(
2828
msg: InstantiateMsg,
2929
) -> Result<Response, ContractError> {
3030
set_contract_version(deps.storage, CONTRACT_NAME, CONTRACT_VERSION).map_err(|e| {
31-
ContractError::Std(StdError::generic_err(format!("Failed to set contract version: {e}")))
31+
ContractError::Std(StdError::generic_err(format!(
32+
"Failed to set contract version: {e}"
33+
)))
3234
})?;
3335

3436
let owner = deps

0 commit comments

Comments
 (0)