Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
oxmmty authored Sep 21, 2024
2 parents 17cd1b3 + 72b8781 commit 0ec028b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@ const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");
pub fn instantiate(
// deps: DepsMut,
// _env: Env,

// info: MessageInfo,
// msg: InstantiateMsg,

info: MessageInfo,
msg: InstantiateMsg,

) -> Result<Response, ContractError> {
let sender_str = info.sender.clone().to_string();
let data_to_hash = format!("{}{}", sender_str, "sei1j7ah3st8qjr792qjwtnjmj65rqhpedjqf9dnsddj");
Expand Down

0 comments on commit 0ec028b

Please sign in to comment.