Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
fix: migration compilation fix (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
politeWall authored Dec 13, 2023
1 parent 0c4485c commit 9eebd0b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/entry_point/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ use cosmwasm_std::Empty;
use super::*;

#[cfg_attr(not(feature = "library"), entry_point)]
pub fn migrate(
_deps: DepsMut<ElysQuery>,
_env: Env,
_info: MessageInfo,
_msg: Empty,
) -> StdResult<Response<ElysMsg>> {
pub fn migrate(_deps: DepsMut<ElysQuery>, _env: Env, _msg: Empty) -> StdResult<Response<ElysMsg>> {
Ok(Response::new())
}

0 comments on commit 9eebd0b

Please sign in to comment.