We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd88df commit 6020f66Copy full SHA for 6020f66
contracts/on_chain_id/src/contract.rs
@@ -28,7 +28,9 @@ pub fn instantiate(
28
msg: InstantiateMsg,
29
) -> Result<Response, ContractError> {
30
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}")))
+ ContractError::Std(StdError::generic_err(format!(
32
+ "Failed to set contract version: {e}"
33
+ )))
34
})?;
35
36
let owner = deps
0 commit comments