Skip to content

Commit 8a52942

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/ibc-reflect/src/state.rs

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

2929
pub fn load_account(storage: &dyn Storage, id: &str) -> StdResult<Addr> {
30-
may_load_account(storage, id)?.ok_or_else(|| StdError::msg(format!("account {id}")))
30+
may_load_account(storage, id)?.ok_or_else(|| StdError::msg(format!("account {id} not found")))
3131
}
3232

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

0 commit comments

Comments
 (0)