height 0 means we have 0 confirmations (cut-through output?) (#211)

This commit is contained in:
AntiochP 2017-10-26 13:41:08 -04:00 committed by Ignotus Peverell
parent d7b94a12f5
commit 68bcd79da5

View file

@ -189,9 +189,13 @@ impl OutputData {
}
/// How many confirmations has this output received?
/// If height == 0 then we are either Unconfirmed or the output was cut-through
/// so we do not actually know how many confirmations this output had (and never will).
pub fn num_confirmations(&self, current_height: u64) -> u64 {
if self.status == OutputStatus::Unconfirmed {
0
} else if self.status == OutputStatus::Spent && self.height == 0 {
0
} else {
current_height - self.height
}