Skip to content

Commit

Permalink
Fixed labels (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski authored Sep 13, 2023
1 parent 1b734f9 commit bc1c8e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/contracts/native/account-factory/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ pub fn execute_create_account(
funds: funds_to_proxy.into_vec(),
// Currently set admin to self, update later when we know the contract's address.
admin: Some(env.contract.address.to_string()),
label: format!("Abstract Account: {}", account_id),
label: format!("Proxy of Account: {}", account_id),
msg: to_binary(&ProxyInstantiateMsg {
account_id,
ans_host_address: config.ans_host_contract.to_string(),
Expand Down Expand Up @@ -185,7 +185,7 @@ pub fn after_proxy_create_manager(
code_id: proxy_code_id,
funds: vec![],
admin: Some(env.contract.address.into_string()),
label: format!("Proxy of Account: {}", context.account_id),
label: format!("Abstract Account: {}", context.account_id),
msg: to_binary(&ManagerInstantiateMsg {
account_id: context.account_id,
version_control_address: config.version_control_contract.to_string(),
Expand Down

0 comments on commit bc1c8e8

Please sign in to comment.