Skip to content

Commit

Permalink
fix: use human address for voucher contract
Browse files Browse the repository at this point in the history
  • Loading branch information
ratik committed Dec 18, 2023
1 parent a83cd52 commit a1687d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/factory/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ fn execute_init(
code_id: config.token_code_id,
label: get_contract_label("token"),
msg: to_json_binary(&TokenInstantiateMsg {
core_address: core_contract,
core_address: core_contract.to_string(),
subdenom: config.subdenom,
})?,
funds: vec![],
Expand All @@ -139,7 +139,7 @@ fn execute_init(
msg: to_json_binary(&VoucherInstantiateMsg {
name: "Lido Voucher".to_string(),
symbol: "LDOV".to_string(),
minter: core_address.to_string(),
minter: core_contract,
})?,
funds: vec![],
salt: Binary::from(salt),
Expand Down

0 comments on commit a1687d8

Please sign in to comment.