Skip to content

Commit

Permalink
fix func name
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 committed May 29, 2024
1 parent 53b208b commit bc40dd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/ibc/src/context/token_transfer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ where
.map_err(TokenTransferError::from)
}

fn store_ibc_denom(
fn maybe_store_ibc_denom(
&self,
owner: &Address,
coin: &PrefixedCoin,
Expand Down Expand Up @@ -305,7 +305,7 @@ where

// Store the IBC denom with the token hash to be able to retrieve it
// later
self.store_ibc_denom(account, coin)?;
self.maybe_store_ibc_denom(account, coin)?;

self.inner
.borrow_mut()
Expand Down

0 comments on commit bc40dd2

Please sign in to comment.