Skip to content

Commit 21368f3

Browse files
aumetrachipshort
andauthored
Update contracts/hackatom/src/contract.rs
Co-authored-by: Christoph Otter <[email protected]>
1 parent c68a5ce commit 21368f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/hackatom/src/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub fn migrate(
5353
let data = deps
5454
.storage
5555
.get(CONFIG_KEY)
56-
.ok_or_else(|| StdError::msg("State"))?;
56+
.ok_or_else(|| StdError::msg("State not found"))?;
5757
let mut config: State = from_json(data)?;
5858
config.verifier = deps.api.addr_validate(&msg.verifier)?;
5959
deps.storage.set(CONFIG_KEY, &to_json_vec(&config)?);

0 commit comments

Comments
 (0)