Skip to content

Commit

Permalink
chore: remove debug pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Peartes committed Feb 1, 2024
1 parent b839028 commit 5aa58ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use cosmwasm_std::{

use absacc::AccountSudoMsg;

use crate::execute::{add_auth_method, remove_auth_method};
use crate::execute::{add_auth_method, assert_self, remove_auth_method};
use crate::msg::ExecuteMsg;
use crate::proto::XionCustomQuery;
use crate::{
Expand Down Expand Up @@ -55,7 +55,7 @@ pub fn execute(
info: MessageInfo,
msg: ExecuteMsg,
) -> ContractResult<Response> {
// assert_self(&info.sender, &env.contract.address)?;
assert_self(&info.sender, &env.contract.address)?;
let mut owned_msg = msg.clone();
match &mut owned_msg {
ExecuteMsg::AddAuthMethod { add_authenticator } => {
Expand Down

0 comments on commit 5aa58ef

Please sign in to comment.