Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
hydrobeam committed Nov 15, 2024
1 parent ca87f62 commit c07c0f2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contracts/interchain-token-service/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ impl InterchainTokenService {
}

pub fn owner(env: &Env) -> Address {
env.storage().instance().get(&DataKey::Owner).expect("owner not found")
env.storage()
.instance()
.get(&DataKey::Owner)
.expect("owner not found")
}

pub fn transfer_ownership(env: Env, new_owner: Address) {
Expand Down

0 comments on commit c07c0f2

Please sign in to comment.