Add some better logging for get_outputs_by_id failure states (#2705)

This commit is contained in:
Mark Renten
2019-03-25 10:17:47 -04:00
committed by hashmap
parent 3566da2434
commit c3cd98cae7
4 changed files with 20 additions and 12 deletions
+4 -1
View File
@@ -857,7 +857,10 @@ where
let parent_key_id = w.parent_key_id();
match updater::refresh_outputs(&mut *w, &parent_key_id, update_all) {
Ok(_) => true,
Err(_) => false,
Err(e) => {
error!("failed to refresh outputs for wallet with error : {:?}", e);
false
}
}
}
}