Display full blocktree error

This commit is contained in:
Michael Vines 2019-10-25 08:37:39 -07:00
parent f901d71202
commit 3879109e4c
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ fn main() {
let blocktree = match Blocktree::open(&ledger_path) {
Ok(blocktree) => blocktree,
Err(err) => {
eprintln!("Failed to open ledger at {:?}: {}", ledger_path, err);
eprintln!("Failed to open ledger at {:?}: {:?}", ledger_path, err);
exit(1);
}
};