Skip to content

Commit fb99869

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

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
@@ -265,7 +265,7 @@ fn query_verifier(deps: Deps) -> StdResult<VerifierResponse> {
265265
let data = deps
266266
.storage
267267
.get(CONFIG_KEY)
268-
.ok_or_else(|| StdError::msg("State"))?;
268+
.ok_or_else(|| StdError::msg("State not found"))?;
269269
let state: State = from_json(data)?;
270270
Ok(VerifierResponse {
271271
verifier: state.verifier.into(),

0 commit comments

Comments
 (0)