Add last_seen to the the ConfirmationTime::Unconfirmed variant

This allows us to skip adding an extra input to `Wallet::insert_tx`.

Also remove redundant logic.
This commit is contained in:
志宇
2023-05-11 22:56:26 +08:00
parent aba88130d9
commit 7261669c09
10 changed files with 75 additions and 80 deletions

View File

@@ -22,6 +22,6 @@ pub(crate) fn map_confirmation_time(
(Some(time), Some(height)) if height <= height_at_start => {
ConfirmationTime::Confirmed { height, time }
}
_ => ConfirmationTime::Unconfirmed,
_ => ConfirmationTime::Unconfirmed { last_seen: 0 },
}
}