Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurensKubat committed May 27, 2024
1 parent f6f5964 commit dda7cbe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion smart-contracts/contracts/merkle-incentives/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ pub fn instantiate(
) -> Result<Response, ContractError> {
set_contract_version(deps.storage, CONTRACT_NAME, CONTRACT_VERSION)?;

INCENTIVES_ADMIN.save(deps.storage, &deps.api.addr_validate(&msg.incentives_admin)?)?;
INCENTIVES_ADMIN.save(
deps.storage,
&deps.api.addr_validate(&msg.incentives_admin)?,
)?;

Ok(Response::default().add_attribute("incentive_admin", msg.incentives_admin))
}
Expand Down

0 comments on commit dda7cbe

Please sign in to comment.