Skip to content

Commit

Permalink
feat: improving error message for proscore signer task
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchand-Nicolas committed Sep 12, 2024
1 parent c5ce8e4 commit 0b1f393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/endpoints/quests/proscore/verify_signers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub async fn handler(
Ok(false) => get_error("You have not enabled 2FA in your wallet".to_string()),
Err(e) => get_error(format!("Error while parsing Braavos signers: {}", e)),
},
Err(e) => get_error(format!("Error while fetching wallet signers: {}", e)),
Err(_) => get_error("You must use a Braavos wallet to complete this task".to_string()),
}
}

Expand Down

0 comments on commit 0b1f393

Please sign in to comment.