Skip to content

Commit 20ddb4f

Browse files
aumetrachipshort
andauthored
Update contracts/ibc-reflect-send/src/state.rs
Co-authored-by: Christoph Otter <[email protected]>
1 parent e49fc0e commit 20ddb4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/ibc-reflect-send/src/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub fn may_load_account(storage: &dyn Storage, id: &str) -> StdResult<Option<Acc
3838
}
3939

4040
pub fn load_account(storage: &dyn Storage, id: &str) -> StdResult<AccountData> {
41-
may_load_account(storage, id)?.ok_or_else(|| StdError::msg(format!("account {id}")))
41+
may_load_account(storage, id)?.ok_or_else(|| StdError::msg(format!("account {id} not found")))
4242
}
4343

4444
pub fn save_account(storage: &mut dyn Storage, id: &str, account: &AccountData) -> StdResult<()> {

0 commit comments

Comments
 (0)