From bc40dd25a3e09e3aa2e81f6a713085bbc79ff650 Mon Sep 17 00:00:00 2001 From: yito88 Date: Wed, 29 May 2024 17:07:29 +0200 Subject: [PATCH] fix func name --- crates/ibc/src/context/token_transfer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ibc/src/context/token_transfer.rs b/crates/ibc/src/context/token_transfer.rs index be37122e57..1fc9700f93 100644 --- a/crates/ibc/src/context/token_transfer.rs +++ b/crates/ibc/src/context/token_transfer.rs @@ -142,7 +142,7 @@ where .map_err(TokenTransferError::from) } - fn store_ibc_denom( + fn maybe_store_ibc_denom( &self, owner: &Address, coin: &PrefixedCoin, @@ -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()