Skip to content

Commit

Permalink
updated error
Browse files Browse the repository at this point in the history
  • Loading branch information
ksrichard committed Oct 24, 2024
1 parent 44a9fb1 commit f63d725
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ impl ProcessManager {
/// Loads all already registered templates.
async fn registered_templates(&self) -> anyhow::Result<Vec<TemplateData>> {
let process = self.instance_manager.validator_nodes().next().ok_or_else(|| {
anyhow!("No MinoTariConsoleWallet instances found. Please start a wallet before uploading a template")
anyhow!(
"No MinoTariConsoleWallet instances found. Please start a wallet before trying to get active templates"
)
})?;

let mut client = process.connect_client()?;
Expand Down

0 comments on commit f63d725

Please sign in to comment.