Skip to content

Commit

Permalink
increase register ICA fee
Browse files Browse the repository at this point in the history
  • Loading branch information
pr0n00gler committed Nov 13, 2023
1 parent 7a0c226 commit 10aeef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/neutron_interchain_txs/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pub fn instantiate(
) -> NeutronResult<Response<NeutronMsg>> {
deps.api.debug("WASMDEBUG: instantiate");
set_contract_version(deps.storage, CONTRACT_NAME, CONTRACT_VERSION)?;
REGISTER_FEE.save(deps.storage, &coins(1000, "untrn"))?;
REGISTER_FEE.save(deps.storage, &coins(1_000_000, "untrn"))?;
Ok(Response::default())
}

Expand Down

0 comments on commit 10aeef2

Please sign in to comment.