Skip to content

Commit

Permalink
Merge pull request #260 from starknet-id/feat/improving-error-message…
Browse files Browse the repository at this point in the history
…-for-proscore-signer-task

feat: improving error message for proscore signer task
  • Loading branch information
Th0rgal authored Sep 12, 2024
2 parents ec6092d + 0b1f393 commit 149306a
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 149306a

Please sign in to comment.