Skip to content

Commit

Permalink
Update one last error
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed May 3, 2024
1 parent 8026558 commit 02f840e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cmd/crates/stellar-ledger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,9 @@ where
let error_string = format!("Ledger APDU retcode: 0x{retcode:X}");
Err(LedgerError::APDUExchangeError(error_string))
}
Err(_err) => {
//FIX ME!!!!
Err(LedgerError::LedgerConnectionError("test".to_string()))
}
Err(_err) => Err(LedgerError::LedgerConnectionError(
"Error connecting to ledger device".to_string(),
)),
}
}
}
Expand Down

0 comments on commit 02f840e

Please sign in to comment.